

.sample-carousel-section {
    width: 100%;
    max-width: 900px;
    margin: 25px auto 20px;
    padding: 15px 0;
    /* Use a solid semi-transparent color instead of blur for performance */
    background: rgba(0, 0, 0, 0.6); 
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    /* Only apply blur on powerful screens (Desktops) */
    @media (min-width: 992px) {
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
}


        .sample-carousel-outer-container {
            position: relative;
            padding: 0 40px; /* Space for the navigation buttons */
        }

        .sample-carousel-container {
            width: 100%;
            overflow-x: auto; /* Enable horizontal scrolling */
            scroll-behavior: smooth; /* Smooth scrolling for JS clicks */
            position: relative;
            /* Hide the ugly scrollbar but keep functionality */
            -ms-overflow-style: none;  /* IE and Edge */
            scrollbar-width: none;  /* Firefox */
        }
        .sample-carousel-container::-webkit-scrollbar {
            display: none; /* Chrome, Safari, and Opera */
        }

        .sample-carousel-wrapper {
            display: flex;
            width: fit-content;
            padding-bottom: 5px; /* Prevent items from being cut off if they have a shadow */
            /* REMOVED: animation property is gone */
        }

        .sample-carousel-item {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 110px;
            height: 110px;
            margin: 0 10px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        /* All other .sample-carousel-item styles remain the same */
        .sample-carousel-item:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-5px); }
        .sample-icon-wrapper { font-size: 2.2rem; color: #fff; opacity: 0.8; margin-bottom: 5px; }
        .sample-icon-wrapper .fi { border-radius: 50%; }
        .sample-label { font-size: 0.8rem; color: #eee; font-weight: 500; }
        .sample-play-btn { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 123, 255, 0.7); color: white; border: none; border-radius: 12px; font-size: 2rem; cursor: pointer; opacity: 0; display: flex; align-items: center; justify-content: center; transition: opacity 0.3s ease; backdrop-filter: blur(2px); }
        .sample-carousel-item:hover .sample-play-btn, .sample-carousel-item.playing .sample-play-btn { opacity: 1; }
        .sample-carousel-item.playing .sample-play-btn { background: rgba(40, 167, 69, 0.7); }
        .cta-carousel-try-btn { margin-top: 20px; font-weight: bold; border-radius: 50px; padding: 10px 25px; box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4); }

        /* New Navigation Button Styles */
        .carousel-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            border-radius: 50%;
            z-index: 10;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            opacity: 0; /* Initially hidden */
        }
        .sample-carousel-outer-container:hover .carousel-nav-btn {
            opacity: 1; /* Show on hover */
        }
        .carousel-nav-btn.prev { right: 0; } /* Since it's RTL */
        .carousel-nav-btn.next { left: 0; } /* Since it's RTL */
        .carousel-nav-btn:hover { background: rgba(255, 255, 255, 0.3); }
        .carousel-nav-btn:disabled {
            opacity: 0.2 !important;
            cursor: not-allowed;
        }

        @media (max-width: 767px) {
            .sample-carousel-outer-container { padding: 0 5px; } /* Less padding on mobile */
            .carousel-nav-btn { display: none; } /* Hide buttons on mobile, rely on swipe */
            .sample-carousel-item { width: 90px; height: 90px; }
            .sample-icon-wrapper { font-size: 1.8rem; }
            .sample-play-btn { font-size: 1.8rem; }
            .sample-label { font-size: 0.7rem; }
            .sample-carousel-section { margin: 15px auto 15px; }
        }

        .cta-container-flex {
            display: flex;
            align-items: center;
            justify-content: center; /* Center by default for mobile */
            flex-wrap: wrap;
            gap: 20px;
            width: 100%;
            margin-top: 25px;
        }

        /* Main Circular CTA Button */
        .cta-button-main {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background-color: #ffc107; /* Yellow color from image */
            color: #212529; /* Dark text */
            border: none;
            font-size: 1.25rem;
            font-weight: 700;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .cta-button-main:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 30px rgba(255, 193, 7, 0.5);
            color: #000;
        }
        .cta-button-main i {
            font-size: 1rem;
            margin-bottom: 8px;
            transform: rotate(90deg); /* Make play icon point right */
        }

        /* Group for secondary buttons */
        .cta-secondary-group {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }

        /* "Frosted Glass" CTA Buttons */
        .cta-button-glass {
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: background 0.3s ease;
        }
        .cta-button-glass:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
        }
        .cta-button-glass i {
            font-size: 1.1em;
        }
        
        /* Layout for larger screens */
        @media (min-width: 992px) {
            .cta-container-flex {
                justify-content: space-between; /* Space out on desktop */
                flex-wrap: nowrap;
            }
            .cta-main-wrapper {
                flex-shrink: 0;
            }
            .cta-secondary-group-auth {
                justify-content: center;
                width: 100%;
            }
        }
        
        /* Adjustments for smaller screens */
        @media (max-width: 767px) {
            .cta-container-flex {
                flex-direction: column;
            }
            .cta-button-main {
                width: 140px;
                height: 140px;
                font-size: 1.1rem;
                order: -1; /* Move circle to top on mobile */
                margin-bottom: 10px;
            }
            .cta-secondary-group {
                gap: 10px;
            }
            .cta-button-glass {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }


        .sample-carousel-container {
            width: 100%;
            overflow-x: auto; /* Enable horizontal scrolling */
            scroll-behavior: smooth; /* Smooth scrolling for JS clicks */
            position: relative;
            padding-bottom: 15px; /* Add space for the scrollbar */
        }

        /* --- STYLES FOR THE VISIBLE SCROLLBAR --- */
        /* Works on Webkit browsers (Chrome, Safari, Edge) */
        .sample-carousel-container::-webkit-scrollbar {
            height: 8px; /* Height of the scrollbar */
        }
        .sample-carousel-container::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.2); /* The track (the bar) */
            border-radius: 10px;
        }
        .sample-carousel-container::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.4); /* The draggable scrolling handle */
            border-radius: 10px;
        }
        .sample-carousel-container::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.6); /* Handle on hover */
        }
        
        /* Works on Firefox */
        .sample-carousel-container {
            scrollbar-width: thin; /* Or "auto" */
            scrollbar-color: rgba(255, 255, 255, 0.4) rgba(0, 0, 0, 0.2);
        }

.whatsapp-dialect-selector-container {
    padding: 8px 12px;
    background-color: #f0f2f5;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}
.whatsapp-dialect-selector-container label {
    margin-bottom: 0;
    font-weight: 500;
    white-space: nowrap;
}

#pro-announcement-bar {
    position: sticky;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6); /* Professional blue gradient */
    color: white;
    padding: 12px 50px;
    z-index: 9998; /* Below session alerts, but above everything else */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}
.announcement-text {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
}
.announcement-cta {
    display: inline-block;
    margin-right: 10px; /* margin-right for RTL */
    padding: 5px 15px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #1e3a8a; /* Dark blue text */
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.announcement-cta:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.announcement-cta .fab {
    margin-right: 5px; /* Spacing for icon in RTL */
}
#close-pro-announcement {
    position: absolute;
    top: 50%;
    right: 15px; /* On the right for RTL */
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    padding: 5px;
}
#close-pro-announcement:hover {
    opacity: 1;
}

/* Responsive styles for mobile */
@media (max-width: 991px) {
    #pro-announcement-bar {
        padding: 12px 50px 12px 15px; /* More padding on the right for close button */
    }
    .announcement-text {
        font-size: 0.88rem;
    }
    .announcement-text > strong {
        display: block; /* Make the title appear on its own line */
        margin-bottom: 5px;
    }
    .announcement-cta {
        margin-top: 8px;
    }
}


    #ai-avatar-showcase {
        background: linear-gradient(145deg, rgba(18, 16, 38, 0.9), rgba(36, 31, 71, 0.8));
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    #ai-avatar-showcase .section-title {
        color: #fff;
        font-weight: 800;
    }

    #ai-avatar-showcase .section-subtitle {
        color: #adb5bd;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-avatar-cta {
        background: linear-gradient(135deg, #8a2be2, #c048f0);
        color: white;
        border: none;
        font-weight: 700;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3);
    }

    .btn-avatar-cta:hover {
        color: white;
        transform: scale(1.05) translateY(-2px);
        box-shadow: 0 12px 30px rgba(138, 43, 226, 0.4);
    }

    .avatar-card-link {
        text-decoration: none;
        display: block;
        height: 100%;
    }
    
    .avatar-card {
        background: rgba(26, 29, 36, 0.6);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 1rem;
        overflow: hidden;
        transition: all 0.3s ease;
        text-align: center;
        display: flex;
        flex-direction: column;
        height: 100%;
        cursor: pointer;
    }

    .avatar-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        border-color: #8a2be2; /* Premium Purple */
    }

    .avatar-video-wrapper {
        position: relative;
        /* Aspect ratio for video container */
        padding-top: 125%; /* 4:5 Aspect Ratio, good for portraits */
        background-color: rgba(0,0,0,0.2);
        overflow: hidden;
    }

    .avatar-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-overlay {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .avatar-card:hover .video-overlay {
        opacity: 1;
    }

    .video-overlay .play-pause-btn {
        font-size: 3.5rem;
        color: white;
        text-shadow: 0 2px 10px rgba(0,0,0,0.6);
        pointer-events: none; /* Let clicks pass through to the video wrapper */
    }

    .avatar-card-content {
        padding: 1rem 1.25rem 1.25rem;
        margin-top: auto; /* Pushes content to the bottom */
    }

    .avatar-card-content .avatar-name {
        font-weight: 700;
        margin: 0;
        color: #fff;
        font-size: 1.1rem;
    }

    .user-email-display {
        display: flex;
        align-items: center;
        gap: 8px; /* Space between icon and text */
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px; /* Pill shape */
        color: #fff;
        font-size: 0.85rem;
        font-weight: 500;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        white-space: nowrap; /* Prevents text wrapping */
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 250px; /* Adjust if needed */
    }

    .user-email-display .email-icon {
        font-size: 1.1em;
        opacity: 0.8;
        flex-shrink: 0; /* Prevents icon from shrinking */
    }

    /* On smaller screens, hide the email text to save space */
    @media (max-width: 767px) {
        .user-email-display .email-text {
            display: none;
        }
        .user-email-display {
            padding: 8px 10px; /* Adjust padding for the icon */
            max-width: fit-content;
        }
    }


.sample-results-grid {
    display: grid;
    grid-template-columns: 1fr; /* One column layout */
    gap: 1rem;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    max-height: 350px; /* Limit height and make it scrollable */
    overflow-y: auto;
}
.sample-grid-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border-radius: 6px;
    padding: 0.75rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}
.sample-grid-item-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #495057;
    flex-shrink: 0; /* Prevent label from shrinking */
}
.sample-grid-item audio {
    width: 100%;
    height: 40px;
    flex-grow: 1; /* Allow audio player to take remaining space */
}


.sample-grid-item .btn-download-sample {
    flex-shrink: 0; /* Prevents the button from shrinking on smaller screens */
    padding: 0.5rem 0.75rem; /* Adjust padding for a nice size */
    line-height: 1; /* Helps vertically align the icon */
}



/* --- V4 Launch Special Styles --- */
:root {
    --v4-bg: #020617;
    --v4-surface: #0f172a;
    --v4-accent: #eab308; /* Gold */
    --v4-accent-hover: #ca8a04;
}

/* 1. Top Sticky Bar */
#v4-top-bar {
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border-bottom: 1px solid rgba(234, 179, 8, 0.3);
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    overflow: hidden;
}

#v4-top-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(234, 179, 8, 0.1) 50%, transparent 60%);
    animation: shine 3s infinite;
    pointer-events: none;
}

.v4-top-btn {
    background-color: var(--v4-accent);
    color: black;
    font-weight: 800;
    border-radius: 50px;
    padding: 5px 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(234, 179, 8, 0.4);
}
.v4-top-btn:hover {
    background-color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.6);
}

/* 2. Main Showcase Section */
#v4-showcase-section {
    background-color: var(--v4-bg);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    color: white;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Aurora Blobs Background */
.v4-aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 1;
}
.aurora-1 { top: -10%; right: -10%; width: 400px; height: 400px; background: var(--v4-accent); }
.aurora-2 { bottom: -10%; left: -10%; width: 300px; height: 300px; background: #9333ea; /* Purple */ }

.v4-content-wrapper {
    position: relative;
    z-index: 2;
}

.v4-badge {
    background: rgba(234, 179, 8, 0.15);
    border: 1px solid rgba(234, 179, 8, 0.4);
    color: var(--v4-accent);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.v4-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.v4-title span {
    color: var(--v4-accent);
    -webkit-text-fill-color: var(--v4-accent);
}

.v4-desc {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.v4-cta-btn {
    background: linear-gradient(90deg, var(--v4-accent), #f59e0b);
    color: black;
    font-weight: 800;
    padding: 16px 40px;
    border-radius: 16px;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -10px rgba(234, 179, 8, 0.5);
}
.v4-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(234, 179, 8, 0.6);
    color: black;
}

/* Glass Card Visual */
.v4-glass-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}
.v4-glass-card:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.feature-pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #e2e8f0;
}
.feature-pill i { color: var(--v4-accent); }

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@media (max-width: 991px) {
    .v4-title { font-size: 2.5rem; }
    .v4-glass-card { margin-top: 40px; transform: none; }
    .v4-glass-card:hover { transform: none; }
}


    .survey-glass-card {
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }
    
    .survey-input {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .survey-input:focus {
        background: rgba(255, 255, 255, 0.1);
        border-color: #f59e0b; /* Warning/Gold color */
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
        color: #fff;
    }
    
    .survey-input::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }
    
    .btn-survey-submit {
        background: linear-gradient(90deg, #f59e0b, #d97706);
        color: white;
        font-weight: bold;
        border: none;
        padding: 12px;
        border-radius: 12px;
        transition: transform 0.2s;
    }
    
    .btn-survey-submit:hover {
        transform: translateY(-2px);
        color: white;
        box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
    }



    /* Add this CSS to your <head> or your main stylesheet */
    .btn-subscribe-premium {
        padding: 14px 30px;
        font-size: 1.1rem;
        font-weight: 700;
        color: #fff;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        border: none;
        border-radius: 50px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
        /* Vibrant, attractive gradient */
        background: linear-gradient(45deg, #FFC837, #FF8008);
        box-shadow: 0 5px 20px rgba(255, 128, 8, 0.4);
        /* Overriding old styles */
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        /* A custom, more noticeable pulse animation */
        animation: premium-pulse 2s infinite;
    }

    .btn-subscribe-premium:hover,
    .btn-subscribe-premium:focus {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 128, 8, 0.5);
        color: #fff;
        outline: none;
    }

    .btn-subscribe-premium:active {
        transform: translateY(-1px) scale(1.02);
        box-shadow: 0 4px 15px rgba(255, 128, 8, 0.3);
    }

    .btn-subscribe-premium .fa-crown {
        color: #ffd700; /* Gold color for the crown */
        font-size: 1.2em;
        animation: sparkle 1.5s infinite ease-in-out;
    }

    @keyframes premium-pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.03); }
        100% { transform: scale(1); }
    }

    @keyframes sparkle {
        0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
        50% { transform: scale(1.2) rotate(10deg); opacity: 0.8; }
    }
    
    
    
    #text-to-video-launch-banner {
    position: relative;
    padding: 100px 0;
    color: #fff;
    overflow: hidden; /* To contain the animated elements */
    border-bottom: 2px solid rgba(138, 43, 226, 0.5); /* A subtle purple border */
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures video covers the area without distortion */
}

.video-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(18, 16, 38, 0.7) 0%, rgba(18, 16, 38, 0.95) 100%);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
}

.banner-title {
    font-size: 3.2rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.banner-subtitle {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 20px auto 35px auto;
    color: #e0e0e0;
    font-weight: 400;
}

.product-name {
    font-weight: 700;
    /* A bright, eye-catching gradient for the product name */
    background: linear-gradient(90deg, #10eaf1, #00ff7f, #faff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: text-gradient-animation 5s ease infinite;
    background-size: 200% auto;
}

.btn-video-cta {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* The main attractive gradient */
    background: linear-gradient(135deg, #00ffa3, #03d5ff, #ad00ff);
    background-size: 200% 200%;
    box-shadow: 0 10px 30px rgba(3, 213, 255, 0.3);
    animation: gradient-flow 4s ease infinite, pulse-glow 2s infinite;
}

.btn-video-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(3, 213, 255, 0.5);
    color: #fff;
}

.cta-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #bbb;
    opacity: 0.9;
}

/* Keyframe animations for dynamic effects */
@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 10px 30px rgba(3, 213, 255, 0.3); }
    50% { box-shadow: 0 10px 45px rgba(173, 0, 255, 0.4); }
    100% { box-shadow: 0 10px 30px rgba(3, 213, 255, 0.3); }
}

@keyframes text-gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    #text-to-video-launch-banner {
        padding: 80px 0;
    }
    .banner-title {
        font-size: 2.2rem;
    }
    .banner-subtitle {
        font-size: 1rem;
    }
    .btn-video-cta {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

    
    /* START: CSS for Review Showcase Section */
#review-showcase-section {
    background: #f0f2f5; /* A slightly different light background to make it stand out */
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.review-card {
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 1rem; /* Consistent with other cards */
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.review-card::before {
    content: "\f4ad"; /* Font Awesome comments-dollar icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: -20px;
    left: -20px; /* Adjusted for RTL */
    font-size: 6rem;
    color: #0d6efd; /* Bootstrap primary color */
    opacity: 0.05;
    transform: rotate(-15deg);
}

.review-card blockquote {
    margin: 0;
    font-size: 1.05rem;
    color: #495057;
    border-right: 3px solid #0d6efd; /* Adjusted for RTL */
    padding-right: 1rem; /* Adjusted for RTL */
    flex-grow: 1; /* Makes sure it takes available space */
}

.review-card blockquote footer {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.review-card .author-name {
    font-weight: 700;
    display: block;
}

.review-card .store-name {
    opacity: 0.8;
}

.review-card .rating-stars {
    color: #ffc107; /* Bootstrap warning color for stars */
    margin-bottom: 0.5rem;
}

.review-card audio {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
}



/* Enhanced Announcement Bar CSS */
.announcement-bar {
  /* Richer, deeper gradient for a premium tech feel */
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  color: #f8fafc;
  padding: 16px 20px;
  font-family: 'Tajawal', 'Inter', sans-serif; /* Ensuring your main fonts are used */
  border-bottom: 1px solid rgba(99, 102, 241, 0.3);
  box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 9999;
  overflow: hidden;
}

/* Optional: Subtle background glow effect */
.announcement-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.announcement-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative; /* To sit above the glow */
}

.announcement-content {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
}

.announcement-title {
  font-weight: 800;
  /* Greenish-Blue gradient text for "Success" vibe */
  background: linear-gradient(90deg, #4ade80, #2dd4bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 6px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.announcement-text {
  margin: 0;
  color: #e2e8f0;
  font-weight: 400;
}

.announcement-highlight {
  color: #ffffff;
  font-weight: 700;
  text-decoration-color: #6366f1;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-line: underline;
}

.announcement-btn {
  /* Vibrant Gradient Button */
  background: linear-gradient(90deg, #4f46e5 0%, #6366f1 100%);
  color: white;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px; /* Pill shape */
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4); /* Glow shadow */
}

.announcement-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.6);
  background: linear-gradient(90deg, #4338ca 0%, #4f46e5 100%);
  color: #fff;
}

.announcement-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(79, 70, 229, 0.3);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .announcement-bar {
    padding: 20px;
  }
  
  .announcement-container {
    flex-direction: column;
    align-items: stretch; /* Stretch items to full width */
    gap: 15px;
    text-align: center;
  }

  .announcement-content {
    text-align: center;
  }
  
  .announcement-title {
    display: block; /* Force title to own line on mobile */
    margin-bottom: 8px;
    font-size: 16px;
  }

  .announcement-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px; /* Larger touch area */
  }
}


.pro-command-section label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #334155;
    font-size: 0.95rem;
}

/* Textarea Styling */
.pro-command-textarea {
    width: 100%;
    height: 110px; /* Fixed larger height */
    padding: 15px; /* Good padding for top/left */
    font-size: 1rem;
    line-height: 1.6;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background-color: #f8fafc;
    color: #1e293b;
    transition: all 0.2s ease-in-out;
    outline: none;
    resize: none; /* Prevents user from breaking layout */
}

/* Focus State */
.pro-command-textarea:focus {
    border-color: #6366f1; /* Indigo */
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
}

/* Placeholder */
.pro-command-textarea::placeholder {
    color: #94a3b8;
    font-weight: 400;
}


    /* --- Premium Pricing Modal Variables --- */
    :root {
        --price-primary: #4f46e5;
        --price-dark: #0f172a;
        --price-gold: #f59e0b;
        --price-gray: #64748b;
        --price-bg: #f8fafc;
    }

    #pricing-v3-container {
        font-family: 'Tajawal', sans-serif;
        padding: 10px 5px;
    }

    /* Grid Layout Tweaks */
    .pricing-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        align-items: stretch; /* Makes all cards same height */
    }

    /* --- Common Card Styles --- */
    .pricing-card {
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 20px;
        padding: 25px 20px;
        position: relative;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    }

    /* --- Typography --- */
    .pc-header { text-align: center; margin-bottom: 20px; }
    .pc-title { font-size: 1.1rem; font-weight: 700; color: var(--price-dark); margin-bottom: 5px; }
    .pc-desc { font-size: 0.85rem; color: var(--price-gray); margin-bottom: 15px; min-height: 20px; }
    
    .pc-price-box { margin-bottom: 10px; }
    .pc-currency { font-size: 1rem; font-weight: 600; vertical-align: top; }
    .pc-amount { font-size: 2.5rem; font-weight: 800; color: var(--price-dark); line-height: 1; }
    .pc-period { font-size: 0.8rem; color: var(--price-gray); font-weight: 500; }
    
    .pc-old-price { 
        text-decoration: line-through; 
        color: #ef4444; 
        font-size: 0.9rem; 
        font-weight: 600; 
        display: block;
        margin-bottom: 2px;
    }

    /* --- Features List --- */
    .pc-features {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
        flex-grow: 1; /* Pushes button to bottom */
        text-align: right;
    }

    .pc-features li {
        font-size: 0.9rem;
        color: #334155;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .pc-features li i { flex-shrink: 0; }
    .icon-check { color: #10b981; }
    .icon-cross { color: #cbd5e1; }
    .icon-star { color: var(--price-gold); }

    /* --- Buttons --- */
    .pc-btn {
        display: block;
        width: 100%;
        padding: 12px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
        text-align: center;
        transition: all 0.2s;
        border: 2px solid transparent;
    }

    /* Button Variants */
    .btn-basic { 
        background: white; 
        border-color: #e2e8f0; 
        color: var(--price-dark); 
    }
    .btn-basic:hover { background: #f1f5f9; border-color: #cbd5e1; }

    .btn-premium {
        background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
        color: #fff;
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
        border: none;
    }
    .btn-premium:hover {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
        color: #fff;
    }

    /* --- THE HERO CARD (Lifetime) --- */
    .pricing-card.hero {
        border: 2px solid var(--price-gold);
        background: linear-gradient(to bottom, #fff, #fffbeb);
        transform: scale(1.05);
        z-index: 2;
        box-shadow: 0 20px 40px rgba(245, 158, 11, 0.15);
    }

    .hero-badge {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--price-dark);
        color: var(--price-gold);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        display: flex;
        align-items: center;
        gap: 5px;
        width: max-content;
    }

    /* --- The "Decoy" Card (Monthly) --- */
    .pricing-card.decoy {
        background-color: #f8fafc;
        border: 1px dashed #cbd5e1;
        opacity: 0.9;
    }
    .pricing-card.decoy .pc-amount { color: #64748b; }

    /* --- Responsive --- */
    @media (max-width: 991px) {
        .pricing-card.hero { transform: scale(1); margin: 15px 0; }
        .pricing-row { gap: 15px; }
        .col-lg-3 { width: 100%; max-width: 380px; margin: 0 auto; }
    }
    
    /* Animation for Countdown */
    @keyframes pulse-red {
        0% { color: #ef4444; }
        50% { color: #b91c1c; }
        100% { color: #ef4444; }
    }
    .timer-text { animation: pulse-red 2s infinite; font-weight: 700; font-size: 0.85rem; }
    
    /* Fix Sample Modal Input Area */
#sampleTtsForm .position-relative {
    display: flex;
    flex-direction: column;
}

#sampleTextArea {
    padding-top: 15px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    min-height: 120px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    background: #fdfdfd;
}

#sampleTextArea:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}

/* Fix the paste button position */
#pasteSampleTextBtn {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important; /* Move to left since it's RTL */
    right: auto !important;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ced4da;
    color: #495057;
    z-index: 10;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Toggle Switch Style */
.long-text-toggle-wrapper {
    background-color: #f0f8ff;
    border: 1px solid #cce5ff;
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}



  /* --- PRO PRICING MAGNET DESIGN --- */
    .pro-pricing-container {
        font-family: 'Tajawal', sans-serif;
        text-align: center;
        direction: rtl;
    }

    .pro-pricing-header {
        margin-bottom: 40px;
    }

    .pro-pricing-header h3 {
        font-weight: 800;
        font-size: 2rem;
        background: linear-gradient(to right, #1e3a8a, #000);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .pro-pricing-header p {
        color: #64748b;
        font-size: 1.1rem;
    }

    /* Timer */
    .offer-timer {
        background: #fee2e2;
        color: #ef4444;
        display: inline-block;
        padding: 5px 15px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.9rem;
        margin-top: 10px;
        animation: pulse-red 2s infinite;
    }

    /* Cards Layout */
    .pro-cards-row {
        display: flex;
        justify-content: center;
        align-items: stretch; /* Equal height */
        gap: 20px;
        flex-wrap: wrap;
    }

    /* Base Card */
    .pro-card {
        background: #fff;
        border-radius: 24px;
        padding: 30px 20px;
        position: relative;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        flex: 1;
        min-width: 280px;
        max-width: 350px;
    }

    .pro-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    }

    /* --- THE MAGNET CARD (Lifetime/Golden) --- */
    .pro-card.magnet {
        background: linear-gradient(145deg, #1e1b4b, #0f172a); /* Dark Luxurious Blue */
        border: 2px solid #fbbf24;
        color: #fff;
        transform: scale(1.05);
        z-index: 10;
        box-shadow: 0 25px 50px rgba(30, 27, 75, 0.25);
    }

    .pro-card.magnet:hover {
        transform: scale(1.08);
        box-shadow: 0 30px 60px rgba(251, 191, 36, 0.3);
    }

    /* Badges */
    .magnet-badge {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(90deg, #f59e0b, #fbbf24);
        color: #000;
        padding: 8px 20px;
        border-radius: 20px;
        font-weight: 800;
        font-size: 0.85rem;
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
        white-space: nowrap;
    }

    /* Pricing Typography */
    .plan-name {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 10px;
    }
    
    .pro-card.magnet .plan-name { color: #fbbf24; }

    .price-container {
        margin: 20px 0;
        position: relative;
    }

    .old-price {
        text-decoration: line-through;
        color: #94a3b8;
        font-size: 1rem;
        display: block;
    }

    .current-price {
        font-size: 3rem;
        font-weight: 800;
        line-height: 1;
    }
    
    .currency { font-size: 1.5rem; vertical-align: top; }
    .period { font-size: 0.9rem; font-weight: 500; opacity: 0.8; }

    /* Features List */
    .features-list {
        list-style: none;
        padding: 0;
        margin: 20px 0;
        text-align: right;
        flex-grow: 1;
    }

    .features-list li {
        margin-bottom: 12px;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .pro-card.magnet .features-list li { color: #e2e8f0; }
    .pro-card.magnet .features-list li i { color: #fbbf24; } /* Gold icons */
    .pro-card:not(.magnet) .features-list li i { color: #10b981; } /* Green icons */

    /* Buttons */
    .cta-btn {
        width: 100%;
        padding: 15px;
        border-radius: 15px;
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: none;
        transition: all 0.3s;
        border: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .cta-btn.magnet-btn {
        background: linear-gradient(90deg, #f59e0b, #d97706);
        color: #fff;
        box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
        animation: glowing 2s infinite;
    }

    .cta-btn.basic-btn {
        background: #f1f5f9;
        color: #1e293b;
        border: 1px solid #cbd5e1;
    }
    
    .cta-btn.basic-btn:hover { background: #e2e8f0; }

    /* Trust Signals */
    .trust-badges {
        margin-top: 30px;
        display: flex;
        justify-content: center;
        gap: 20px;
        opacity: 0.7;
        font-size: 0.85rem;
        color: #64748b;
    }

    @keyframes glowing {
        0% { box-shadow: 0 0 5px #ffb300; }
        50% { box-shadow: 0 0 20px #ffb300, 0 0 10px #ffb300 inset; }
        100% { box-shadow: 0 0 5px #ffb300; }
    }

    /* Mobile Responsive */
    @media (max-width: 991px) {
        .pro-card.magnet { transform: scale(1); margin: 20px 0; }
        .pro-cards-row { flex-direction: column; align-items: center; }
        .pro-card { width: 100%; }
    }
    
    
/* Pro Modal Styles */
.pro-voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.pro-voice-card {
    display: flex;
    flex-direction: column; /* Stack vertically on small screens */
    align-items: center;
    justify-content: center;
    text-align: center;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    height: 100%;
}

@media (min-width: 500px) {
    .pro-voice-card {
        flex-direction: row; /* Horizontal on larger */
        text-align: right;
        justify-content: flex-start;
        gap: 12px;
        padding: 12px;
    }
}

.pro-voice-card:hover {
    border-color: #cbd5e1;
    background-color: #f8fafc;
    transform: translateY(-2px);
}

.btn-check:checked + .pro-voice-card {
    border-color: #3b82f6;
    background-color: #eff6ff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.pro-voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
}
.pro-voice-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    height: 100%;
}
.pro-voice-card:hover { border-color: #cbd5e1; background-color: #f8fafc; transform: translateY(-2px); }
.btn-check:checked + .pro-voice-card { border-color: #4f46e5; background-color: #eef2ff; box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15); }
.pro-voice-card .icon-box { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.pro-voice-card .check-icon { position: absolute; top: 8px; left: 8px; color: #4f46e5; opacity: 0; transform: scale(0.5); transition: 0.2s; }
.btn-check:checked + .pro-voice-card .check-icon { opacity: 1; transform: scale(1); }

@keyframes shine {
    0% { transform: skewX(-20deg) translateX(-150%); }
    20% { transform: skewX(-20deg) translateX(150%); }
    100% { transform: skewX(-20deg) translateX(150%); }
}




/* --- NEW YEAR 2026 THEME --- */
:root {
    --ny-gold: #FFD700;
    --ny-dark: #0a0a0a;
    --ny-red: #ff3b30;
}

.ny-modal-body {
    background: radial-gradient(circle at center, #1a1a2e 0%, #000000 100%);
    color: #fff;
    border-radius: 20px;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

/* Festive Background Effect */
.ny-confetti {
    position: absolute;
    width: 10px; height: 10px;
    background-color: var(--ny-gold);
    animation: confetti-fall 3s infinite linear;
    opacity: 0.3;
}
@keyframes confetti-fall {
    0% { transform: translateY(-100px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(600px) rotate(360deg); opacity: 0; }
}

.ny-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.ny-year {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(to bottom, #fff 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    display: block;
    margin-bottom: 10px;
}

.ny-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    font-weight: 300;
}

/* The $29 Deal Card */
.ny-deal-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid var(--ny-gold);
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.15);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.ny-deal-card:hover {
    transform: scale(1.02);
}

.ny-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ny-red);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(255, 59, 48, 0.4);
    white-space: nowrap;
    animation: pulse-red 1.5s infinite;
}

.ny-price-box {
    margin: 20px 0;
}

.ny-old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #888;
    display: block;
}

.ny-new-price {
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 20px var(--ny-gold);
}

.ny-currency {
    font-size: 2rem;
    vertical-align: super;
    color: var(--ny-gold);
}

.ny-period {
    display: block;
    font-size: 1.2rem;
    color: var(--ny-gold);
    margin-top: 5px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Countdown Timer */
.ny-timer {
    background: rgba(0,0,0,0.5);
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    color: #ff3b30;
    font-weight: bold;
    font-family: monospace;
    font-size: 1.2rem;
}

/* Features List */
.ny-features {
    list-style: none;
    padding: 0;
    text-align: right; /* RTL */
    margin: 25px 0;
    color: #ddd;
}

.ny-features li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 8px;
}

.ny-features i {
    color: var(--ny-gold);
    margin-left: 10px;
}

/* CTA Button */
.ny-cta-btn {
    background: linear-gradient(90deg, #FFD700, #FDB931);
    color: #000;
    font-weight: 900;
    font-size: 1.5rem;
    padding: 18px 40px;
    border-radius: 50px;
    width: 100%;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.ny-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    color: #000;
}

.ny-footer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
}


.ny-badge {
    color: #ffffff !important; /* Force text to be white */
    animation: badge-pulse-scale 2s infinite !important; /* Use scale animation instead of color pulse */
    width: auto;
    min-width: 200px;
    max-width: 90%;
}

/* New animation that pulses size/shadow but keeps text white */
@keyframes badge-pulse-scale {
    0% { transform: translateX(-50%) scale(1); box-shadow: 0 5px 15px rgba(255, 59, 48, 0.4); }
    50% { transform: translateX(-50%) scale(1.05); box-shadow: 0 5px 25px rgba(255, 59, 48, 0.6); }
    100% { transform: translateX(-50%) scale(1); box-shadow: 0 5px 15px rgba(255, 59, 48, 0.4); }
}

/* 2. Desktop: Make modal smaller (Compact Card) */
@media (min-width: 992px) {
    #subscribeModal .modal-dialog {
        max-width: 550px; /* Much smaller than previous full width */
    }
    .ny-deal-card {
        padding: 25px 20px;
    }
    .ny-new-price { font-size: 4rem; }
}

/* 3. Mobile: Friendly Adjustments */
@media (max-width: 767px) {
    #subscribeModal .modal-dialog {
        margin: 0.5rem; /* Small margin on sides */
    }
    .ny-modal-body {
        padding: 25px 15px !important;
    }
    .ny-year { font-size: 2.5rem !important; margin-bottom: 5px; }
    .ny-header h3 { font-size: 1.3rem !important; }
    .ny-subtitle { font-size: 0.9rem !important; }
    
    .ny-deal-card {
        padding: 25px 15px !important;
        margin-top: 25px; /* Space for the badge */
    }
    .ny-badge {
        font-size: 0.85rem !important;
        padding: 6px 15px !important;
        width: 85%; /* Prevent overflow */
    }
    .ny-new-price { font-size: 3.5rem !important; }
    .ny-old-price { font-size: 1.1rem !important; }
    
    .ny-features li { 
        font-size: 0.9rem !important; 
        padding-bottom: 6px;
        margin-bottom: 8px;
    }
    .ny-cta-btn {
        font-size: 1.1rem !important;
        padding: 12px 20px !important;
    }
}

.special-offer-card {
    border: 2px solid #ffd700; /* Gold border */
    background: linear-gradient(145deg, #fffbeb, #ffffff);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.special-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.special-badge-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #ff3b30; /* Red */
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.85rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
}

.feature-list-special {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.feature-list-special li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-gold { color: #ffd700; }
.text-strike { text-decoration: line-through; opacity: 0.6; font-size: 0.9rem; }



@media (min-width: 992px) {
    #subscribeModal .modal-dialog {
        max-width: 1000px; /* Adjust this number as needed */
    }
}



/* TikTok Section Styles */
#tiktok-voices-section {
    background: #000000; /* Pure Black Background */
    position: relative;
    overflow: hidden;
    color: #fff;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

/* Background Glow Effects */
.tt-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    z-index: 1;
}
.tt-glow-cyan { background: #00f2ea; top: -50px; left: -50px; }
.tt-glow-magenta { background: #ff0050; bottom: -50px; right: -50px; }

.tt-content { position: relative; z-index: 2; }

/* Typography */
.tt-title {
    font-weight: 800;
    letter-spacing: -1px;
}
.tt-highlight {
    background: linear-gradient(90deg, #00f2ea, #ff0050);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

/* Feature Badges */
.tt-feature-badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}
.tt-feature-badge:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.15);
    border-color: #00f2ea;
}

/* CTA Button */
.btn-tiktok-cta {
    background: #fff;
    color: #000;
    font-weight: 800;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(0, 242, 234, 0.4); /* Cyan Glow */
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}
.btn-tiktok-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 0, 80, 0.5); /* Magenta Glow on Hover */
    color: #000;
}

/* Phone Mockup Styling */
.tt-phone-mockup {
    background: #1a1a1a;
    border-radius: 30px;
    border: 4px solid #333;
    padding: 15px;
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: rotate(-3deg);
    transition: transform 0.5s ease;
}
.tt-phone-mockup:hover { transform: rotate(0deg) scale(1.02); }

.tt-comment {
    background: #2a2a2a;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tt-avatar {
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #00f2ea, #ff0050);
    border-radius: 50%;
}



/* --- Enterprise Section Styles --- */
#enterprise-solutions {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); /* Deep Navy/Slate */
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Background Tech Pattern */
#enterprise-solutions::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 1;
}

.ent-content { position: relative; z-index: 2; }

.ent-badge {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #60a5fa;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.ent-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ent-desc {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
}

/* Feature Cards */
.ent-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 25px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ent-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.8);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.ent-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.ent-card:hover .ent-icon-wrapper {
    background: #3b82f6;
    color: #fff;
}

.ent-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.ent-card p {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 0;
}

/* CTA Button */
.btn-whatsapp-ent {
    background: #25D366;
    color: #fff;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-whatsapp-ent:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .ent-title { font-size: 2rem; }
    .ent-card { padding: 20px; }
}

/* Voice Changer Light Theme Styles */
.vc-upload-box {
    border: 2px dashed #cbd5e1; /* Light gray border */
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f8fafc; /* Very light gray background */
}

.vc-upload-box:hover {
    background-color: #f1f5f9;
    border-color: #3b82f6; /* Primary blue on hover */
    transform: translateY(-2px);
}

.vc-upload-box.file-selected {
    border-style: solid;
    border-color: #10b981; /* Green border */
    background-color: #ecfdf5; /* Light green background */
}

.vc-upload-box .icon-area {
    transition: transform 0.3s ease;
}

.vc-upload-box:hover .icon-area {
    transform: scale(1.1);
}

/* Hover Scale Effect for Button */
.hover-scale {
    transition: transform 0.2s ease;
}
.hover-scale:hover {
    transform: scale(1.02);
}

/* Ensure audio player looks standard on light background */
#vc-audio-player {
    filter: none; /* Reset any previous invert filters */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 30px;
}


 #lipsyncModal .modal-content {
        border-radius: 20px;
        border: none;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }
    #lipsyncModal .modal-header {
        background-color: #ffffff;
        border-bottom: 1px solid #f0f0f0;
        padding: 1.5rem;
    }
    #lipsyncModal .modal-title {
        font-weight: 800;
        color: #1e293b;
        font-size: 1.25rem;
    }
    /* Tabs Styling */
    .custom-nav-pills {
        background: #f1f5f9;
        padding: 5px;
        border-radius: 12px;
    }
    .custom-nav-pills .nav-link {
        border-radius: 10px;
        color: #64748b;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    .custom-nav-pills .nav-link.active {
        background-color: #ffffff;
        color: #4f46e5;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    /* Avatar Card Styling */
    .avatar-option-card {
        border: 2px solid #e2e8f0;
        border-radius: 16px;
        padding: 0;
        cursor: pointer;
        transition: all 0.2s ease;
        background: #fff;
        position: relative;
        overflow: hidden;
        height: 100%;
    }
    .avatar-option-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    /* Force consistent image size */
    .avatar-img-container {
        height: 140px; /* Fixed height for consistency */
        width: 100%;
        background-color: #f8fafc;
        display: flex;
        align-items: flex-end; /* Align bottom for portraits */
        justify-content: center;
    }
    .avatar-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center; /* Focus on faces */
    }
    /* Selected State */
    .btn-check:checked + .avatar-option-card {
        border-color: #4f46e5;
        background-color: #eef2ff;
        box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
    }
    .btn-check:checked + .avatar-option-card::after {
        content: '\f00c'; /* FontAwesome Check */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        top: 8px;
        right: 8px;
        background: #4f46e5;
        color: white;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
    }
    .avatar-label {
        padding: 8px;
        text-align: center;
        font-weight: 700;
        font-size: 0.9rem;
        color: #334155;
    }
    /* File Upload Area */
    .custom-upload-box {
        border: 2px dashed #cbd5e1;
        border-radius: 16px;
        padding: 30px;
        text-align: center;
        background: #f8fafc;
        transition: all 0.3s;
        cursor: pointer;
    }
    .custom-upload-box:hover {
        border-color: #4f46e5;
        background: #fff;
    }
    
    
    
    
    
    :root {
    --ramadan-gold: #FFD700;
    --ramadan-dark: #0f172a;
    --ramadan-accent: #10b981; /* Emerald Green */
}

/* Modal Background */
.ramadan-modal-body {
    background: linear-gradient(135deg, #0a0e17 0%, #1e293b 100%);
    color: #fff;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Islamic Geometric Pattern Overlay */
.ramadan-modal-body::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255, 215, 0, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

/* Hanging Lanterns (Fanoos) Decoration - CSS Drawing */
.lantern-decor {
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 4rem;
    color: var(--ramadan-gold);
    opacity: 0.2;
    transform: rotate(15deg);
    z-index: 0;
}

/* Crescent Moon */
.moon-decor {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: var(--ramadan-gold);
    opacity: 0.15;
    z-index: 0;
}

/* Header Styling */
.ramadan-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.ramadan-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(to bottom, #fff 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    display: block;
    font-family: 'Tajawal', sans-serif;
}

/* Tabs Styling */
.ramadan-tabs .nav-link {
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 5px;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.ramadan-tabs .nav-link.active {
    background: linear-gradient(45deg, #FFD700, #FDB931);
    color: #000;
    border-color: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

/* Deal Cards */
.ramadan-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    transition: transform 0.3s ease;
    position: relative;
}

.ramadan-card:hover {
    transform: translateY(-5px);
    border-color: var(--ramadan-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.ramadan-cta-btn {
    background: linear-gradient(90deg, #10b981, #059669); /* Green for Ramadan */
    color: #fff;
    font-weight: 800;
    padding: 12px 0;
    border-radius: 12px;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s;
}
.ramadan-cta-btn:hover {
    transform: scale(1.02);
    color: #fff;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}


.ramadan-bar {
    background: linear-gradient(90deg, #022c22 0%, #059669 50%, #022c22 100%); /* Deep Emerald Gradient */
    color: #fff;
    padding: 10px 0;
    position: relative;
    width: 100%;
    z-index: 9990; /* Above header, below modals */
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.3);
    border-bottom: 1px solid rgba(255, 215, 0, 0.3); /* Subtle Gold Border */
    overflow: hidden;
}

/* Shine Animation Effect */
.ramadan-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-20deg);
    animation: ramadanShine 6s infinite linear;
    pointer-events: none;
}

@keyframes ramadanShine {
    0% { left: -50%; }
    100% { left: 150%; }
}

.ramadan-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.ramadan-text-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ramadan-icon {
    font-size: 1.5rem;
    animation: swing 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes swing {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

.ramadan-badge {
    background-color: #FFD700; /* Gold */
    color: #000;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.ramadan-message {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.ramadan-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* CTA Button */
.btn-ramadan-cta {
    background-color: #fff;
    color: #065f46; /* Dark Green Text */
    border: none;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-ramadan-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: #f0fdf4;
}

/* Close Button */
.btn-close-bar {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.btn-close-bar:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .ramadan-bar-content {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
    .ramadan-text-group {
        justify-content: center;
    }
    .ramadan-actions {
        width: 100%;
        justify-content: center;
    }
    .btn-close-bar {
        position: absolute;
        top: 10px;
        left: 10px; /* Left because RTL */
    }
}

    

