/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: hidden;
    width: 100%;
}

:root {
    --bg-color: #0b071a;
    --text-primary: #ffffff;
    --text-muted: #94a3b8;
    --primary-color: #f43f5e;
    --primary-gradient: linear-gradient(135deg, #f43f5e 0%, #d946ef 50%, #8b5cf6 100%);
    --card-bg: rgba(30, 41, 59, 0.5);
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body.dark-theme {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Background Blobs for vibe */
.blob-bg {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.15) 0%, rgba(139, 92, 246, 0) 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(80px);
}

.blob-2 {
    top: 50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(217, 70, 239, 0) 70%);
}

/* Navigation */
.navbar {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 4px;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* Buttons */
.btn {
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 63, 94, 0.6);
}

.btn-secondary {
    background: var(--glass-bg);
    color: white;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Typography Utilities */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - 90px);
    gap: 4rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* App Illustration / Main Screen Structure */
.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.app-ui-illustration {
    width: 680px;
    height: 400px;
    display: flex;
    flex-direction: column;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    background: #020202;
    /* Deep dark background */
    font-size: 10px;
    font-family: inherit;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-ui-illustration:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.jm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 2px solid #1a1a2e;
    background: linear-gradient(90deg, #180927 0%, #0c081e 100%);
}

.jm-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.jm-logo {
    height: 16px;
    object-fit: contain;
}

.jm-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
}

.jm-badge-blue {
    background: #60a5fa;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: bold;
}

.jm-sep {
    color: #4b5563;
}

.jm-header-right {
    display: flex;
    gap: 15px;
}

.jm-info-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.jm-info-title {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 9px;
    font-weight: 600;
}

.jm-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.jm-dot.pk {
    background: radial-gradient(circle, #e879f9 0%, #d946ef 100%);
}

.jm-dot.pu {
    background: radial-gradient(circle, #c084fc 0%, #a855f7 100%);
}

.jm-info-sub {
    color: #94a3b8;
    font-size: 8px;
    padding-left: 15px;
}

.jm-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.jm-sidebar {
    width: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 8px;
    background: #09090e;
    border-right: 1px solid #1a1a2e;
}

.jm-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #94a3b8;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
}

.jm-icon:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.jm-icon.active-pink {
    background: rgba(236, 72, 153, 0.2);
    color: #ec4899;
}

.jm-panel {
    background: #11111c;
    border-right: 1px solid #1a1a2e;
    display: flex;
    flex-direction: column;
}

.menu-cats {
    width: 140px;
}

.menu-chans {
    width: 180px;
    background: #0c081e;
}

.jm-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.jm-list {
    display: flex;
    flex-direction: column;
    padding: 5px;
    gap: 2px;
}

.jm-list-item {
    padding: 5px 8px;
    color: #cbd5e1;
    font-size: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    border-radius: 4px;
}

.jm-list-item.active-blue {
    background: #3b82f6;
    color: #fff;
}

.jm-list-item.active-purple {
    background: #8b5cf6;
    color: #fff;
}

.jm-list-item.active-outline {
    border: 1px solid #8b5cf6;
    background: rgba(139, 92, 246, 0.2);
    color: #fff;
}

.ch-num {
    color: #94a3b8;
    font-size: 8px;
    margin-right: 6px;
}

.ch-star {
    margin-right: 6px;
    font-size: 7px;
}

.text-red {
    color: #ef4444;
}

.text-yellow {
    color: #eab308;
}

.text-white {
    color: #fff;
}

.text-blue {
    color: #3b82f6;
}

.ch-diamond {
    margin-right: 4px;
    font-size: 7px;
}

.jm-player-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #000;
    position: relative;
}

.jm-video {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 15px;
    background: radial-gradient(ellipse at 40% 50%, rgba(200, 120, 100, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(100, 60, 50, 0.1) 0%, transparent 60%), #111;
}

.jm-video-watermark {
    position: absolute;
    top: 15px;
    right: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
    font-weight: bold;
    display: flex;
    gap: 4px;
    align-items: center;
}

.jm-video-subs {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
}

.subs-badge {
    background: #eab308;
    color: #000;
    padding: 2px 6px;
    font-weight: bold;
    font-size: 8px;
    border-radius: 2px;
    margin-bottom: 5px;
}

.subs-text {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.jm-epg-panel {
    height: 80px;
    background: #020202;
    border-top: 1px solid #1a1a2e;
    padding: 6px 15px;
}

.jm-epg-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 10px;
    font-weight: bold;
    margin-bottom: 4px;
}

.jm-epg-box {
    background: #0f111a;
    border-radius: 6px;
    padding: 6px 10px;
    border: 1px solid #1f2937;
}

.epg-tag {
    color: #94a3b8;
    font-size: 6px;
    text-transform: uppercase;
}

.epg-main {
    color: #e2e8f0;
    font-size: 9px;
    font-weight: 500;
    margin: 2px 0;
}

.epg-subtext {
    color: #64748b;
    font-size: 7px;
}

/* Skeleton Loaders (Abstract info placeholders) */
.jm-skeleton {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: inline-block;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

.jm-skeleton.w20 {
    width: 20px;
}

.jm-skeleton.w40 {
    width: 40px;
}

.jm-skeleton.w60 {
    width: 60px;
}

.jm-skeleton.w80 {
    width: 80px;
}

.jm-skeleton.w100 {
    width: 100px;
}

.jm-skeleton.w140 {
    width: 140px;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-badge.badge-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.floating-badge.badge-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 2s;
}

.badge-1 i {
    color: #10b981;
}

.badge-2 i {
    color: #f59e0b;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Page Headers */
.page-header {
    text-align: center;
    padding: 6rem 0 3rem 0;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

/* Contact Page Layout */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 2rem 0 6rem 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(244, 63, 94, 0.1);
    padding: 1rem;
    border-radius: 12px;
}

.info-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.info-details p {
    color: var(--text-muted);
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 3rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Blog Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding-bottom: 6rem;
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: var(--glass-bg);
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.category-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-gradient);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 0.75rem;
}

/* ========================================
   DOWNLOAD MODAL (Install Card)
   ======================================== */
.download-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.download-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.download-card {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.3s ease;
    color: #1e293b;
}

.download-overlay.active .download-card {
    transform: translateY(0) scale(1);
}

.download-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.download-card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.download-card-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.download-card-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.download-card-body {
    padding: 0.5rem 0;
}

.download-section-label {
    padding: 0.75rem 1.5rem 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
}

.download-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
}

.download-method:hover {
    background: #f8fafc;
}

.download-method.highlighted {
    background: #d1fae5;
    margin: 0 0.75rem;
    border-radius: 12px;
    padding: 0.85rem 1rem;
}

.download-method.highlighted:hover {
    background: #a7f3d0;
}

.download-method-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.download-method-icon.icon-playstore {
    background: linear-gradient(135deg, #34a853 0%, #4285f4 50%, #ea4335 75%, #fbbc04 100%);
    color: white;
}

.download-method-icon.icon-direct {
    background: #fbbf24;
    color: #78350f;
}

.download-method-icon.icon-downloader {
    background: #f97316;
    color: white;
}

.download-method-icon.icon-apkpure {
    background: #cddc39;
    color: #33691e;
}

.download-method-icon.icon-aptoide {
    background: #f97316;
    color: white;
}

.download-method-icon.icon-huawei {
    background: #ff3b3b;
    color: white;
}

.download-method-icon.icon-samsung {
    background: #1428a0;
    color: white;
}

.download-method-icon.icon-lg {
    background: #a50034;
    color: white;
}

.download-method-icon.icon-amazon {
    background: #ff9900;
    color: #111;
}

.download-method-icon.icon-roku {
    background: #662d91;
    color: white;
}

.download-method-icon.icon-apple {
    background: #000;
    color: white;
}

.download-method-icon.icon-default {
    background: #6366f1;
    color: white;
}

.download-method-info {
    flex: 1;
    min-width: 0;
}

.download-method-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.15rem 0;
}

.download-method-info p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.download-method.highlighted .download-method-info h4 {
    color: #064e3b;
}

.download-method.highlighted .download-method-info p {
    color: #047857;
}

/* Platforms grid with icons */
.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    min-width: 120px;
}

.platform-item:hover {
    color: var(--primary-color);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(var(--primary-rgb, 168, 85, 247), 0.3);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.15);
}

.platform-item i {
    font-size: 2.2rem;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.platform-item:hover i {
    opacity: 1;
}

.platform-item span {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .stats {
        justify-content: center;
    }

    .app-ui-illustration {
        width: 100%;
        max-width: 500px;
        height: 380px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-color);
        flex-direction: column;
        padding: 2rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }
}

/* RTL Support for Arabic Language */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .hero-content {
    text-align: right;
}

[dir="rtl"] .hero-buttons,
[dir="rtl"] .stats {
    flex-direction: row-reverse;
}

[dir="rtl"] .jm-header-left,
[dir="rtl"] .jm-header-right {
    flex-direction: row-reverse;
}

[dir="rtl"] .jm-breadcrumb {
    flex-direction: row-reverse;
}

[dir="rtl"] .lang-selector {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .form-group input,
[dir="rtl"] .form-group textarea {
    text-align: right;
}

[dir="rtl"] .feature-card i,
[dir="rtl"] .info-card i {
    margin-right: 0;
    margin-left: 1rem;
}

[dir="rtl"] .btn i {
    margin-right: 0.5rem;
    margin-left: 0;
}

[dir="rtl"] .faq-question::after {
    margin-left: 0;
    margin-right: auto;
}

[dir="rtl"] .category-tag {
    right: 1rem;
    left: auto;
}