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

:root {
    --heading-font: 'Cairo', sans-serif;
    --body-font: 'Cairo', sans-serif;
    --mm-accent: #b3de4f;
    --mm-accent-dark: #9cc42f;
    --mm-dark: #0c0f0a;
    --mm-dark-2: #13170f;
    --mm-muted: #5b6155;
    --mm-border: #e8ece2;
    --mm-surface: #ffffff;
    --mm-bg-soft: #f6f8f2;
}

* {
    font-family: 'Cairo', sans-serif !important;
}

body, html {
    font-family: 'Cairo', sans-serif !important;
    background-color: #0c0f0a !important;
}

body, h1, h2, h3, h4, h5, h6, p, span, a, input, button, select, textarea, div, label, nav, .font-heading, .font-body {
    font-family: 'Cairo', sans-serif !important;
}

/* ---------- Navbar refinements ---------- */
.header .nav-menu__link {
    position: relative;
    transition: color 0.3s ease;
}
@media (min-width: 992px) {
    .header .nav-menu__link::after {
        content: "";
        position: absolute;
        inset-inline-start: 0;
        inset-block-end: 4px;
        width: 100%;
        height: 2px;
        background: var(--mm-accent);
        border-radius: 2px;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .header .nav-menu__link:hover::after,
    .header .nav-menu__item.activePage .nav-menu__link::after {
        transform: scaleX(1);
        transform-origin: left;
    }
}
.header .header-button a {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.header .header-button a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--mm-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.header .header-button a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.header .header-search button {
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}
.header .header-search button:hover {
    transform: translateY(-3px);
}

/* ---------- Page Hero (breadcrumb banner) ---------- */
.mm-hero {
    position: relative;
    padding: 220px 0 120px;
    background-color: var(--mm-dark);
    overflow: hidden;
    isolation: isolate;
}
.mm-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(100deg, rgba(12, 15, 10, 0.92) 0%, rgba(12, 15, 10, 0.55) 45%, rgba(12, 15, 10, 0.35) 100%),
        url("../images/thumbs/banner-bg.jpg") center/cover no-repeat;
}
.mm-hero::after {
    content: "";
    position: absolute;
    inset-inline-end: -120px;
    inset-block-start: -120px;
    width: 460px;
    height: 460px;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(179, 222, 79, 0.28) 0%, transparent 70%);
    animation: mm-pulse 6s ease-in-out infinite;
}
@keyframes mm-pulse {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.15); opacity: 1; }
}
.mm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(179, 222, 79, 0.14);
    border: 1px solid rgba(179, 222, 79, 0.35);
    color: var(--mm-accent) !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.mm-hero-title {
    color: #ffffff !important;
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.02;
    margin: 18px 0 14px;
}
.mm-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 15px;
    font-weight: 500;
}
.mm-breadcrumb a {
    color: var(--mm-accent) !important;
    text-decoration: none;
    transition: color 0.25s ease;
}
.mm-breadcrumb a:hover {
    color: #ffffff !important;
}
.mm-breadcrumb .mm-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* ---------- Section heading ---------- */
.mm-section-head {
    max-width: 720px;
    margin: 0 auto 56px;
}
.mm-section-head .mm-eyebrow {
    color: var(--mm-accent-dark);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.mm-section-head .mm-eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--mm-accent);
    display: inline-block;
}
.mm-section-head h2 {
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.05;
    margin: 12px 0 0;
}

/* ---------- Modern Blog Card ---------- */
.mm-blog-card {
    position: relative;
    background: var(--mm-surface);
    border: 1px solid var(--mm-border);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.mm-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px -20px rgba(12, 15, 10, 0.22);
    border-color: rgba(179, 222, 79, 0.5);
}
.mm-blog-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--mm-bg-soft);
}
.mm-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}
.mm-blog-card:hover .mm-blog-thumb img {
    transform: scale(1.08);
    filter: brightness(1.05);
}
.mm-blog-cat {
    position: absolute;
    inset-inline-start: 16px;
    inset-block-start: 16px;
    z-index: 2;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--mm-accent);
    color: #0c0f0a !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
}
.mm-blog-body {
    padding: 24px 24px 28px;
}
.mm-blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    color: var(--mm-muted);
    font-size: 14px;
}
.mm-blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.mm-blog-meta i {
    color: var(--mm-accent-dark);
}
.mm-blog-title {
    margin: 0 0 10px;
    line-height: 1.3;
}
.mm-blog-title a {
    color: #0c0f0a !important;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s ease;
}
.mm-blog-card:hover .mm-blog-title a {
    color: var(--mm-accent-dark) !important;
}
.mm-blog-excerpt {
    color: var(--mm-muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mm-blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #0c0f0a !important;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}
.mm-blog-link i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--mm-accent);
    color: #0c0f0a;
    transition: transform 0.3s ease;
}
.mm-blog-card:hover .mm-blog-link {
    gap: 12px;
    color: var(--mm-accent-dark) !important;
}

/* ---------- Modern Project Card ---------- */
.mm-project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: block;
    text-decoration: none;
    background: var(--mm-dark);
}
.mm-project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.mm-project-card:hover img {
    transform: scale(1.1);
}
.mm-project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 15, 10, 0) 35%, rgba(12, 15, 10, 0.92) 100%);
    transition: background 0.4s ease;
}
.mm-project-card:hover .mm-project-overlay {
    background: linear-gradient(180deg, rgba(12, 15, 10, 0.15) 0%, rgba(12, 15, 10, 0.95) 100%);
}
.mm-project-content {
    position: absolute;
    inset-inline: 0;
    inset-block-end: 0;
    padding: 26px 28px;
}
.mm-project-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(179, 222, 79, 0.16);
    border: 1px solid rgba(179, 222, 79, 0.45);
    color: var(--mm-accent) !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.mm-project-title {
    color: #ffffff !important;
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 8px;
    transition: color 0.3s ease;
}
.mm-project-desc {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mm-project-arrow {
    position: absolute;
    inset-inline-end: 24px;
    inset-block-start: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--mm-accent);
    color: #0c0f0a;
    opacity: 0;
    transform: translateY(10px) rotate(-45deg);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.mm-project-card:hover .mm-project-arrow {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

/* ---------- CTA strip ---------- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #080b06 !important;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    animation: force-hide-preloader 2.5s forwards ease-in-out;
}

@keyframes force-hide-preloader {
    0%, 85% {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        display: none !important;
    }
}

.mm-preloader-logo-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(179, 222, 79, 0.15) !important;
    border: 2px solid var(--mm-accent) !important;
    color: var(--mm-accent) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px auto !important;
    box-shadow: 0 0 30px rgba(179, 222, 79, 0.5) !important;
}

.mm-preloader-logo-icon i {
    font-size: 38px !important;
    color: var(--mm-accent) !important;
    display: inline-block !important;
}

.mm-cta {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--mm-dark);
    padding: 56px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.mm-cta::before {
    content: "";
    position: absolute;
    inset-inline-end: -80px;
    inset-block-start: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(179, 222, 79, 0.35) 0%, transparent 70%);
}
.mm-cta h3 {
    color: #ffffff !important;
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.05;
    margin: 0;
}
.mm-cta p {
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 8px 0 0;
}
.mm-btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 999px;
    background: var(--mm-accent);
    color: #0c0f0a !important;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 24px -8px rgba(179, 222, 79, 0.5);
}
.mm-btn-accent:hover {
    background: #c5ea6a;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -8px rgba(179, 222, 79, 0.6);
}
.mm-btn-accent i {
    transition: transform 0.3s ease;
}
.mm-btn-accent:hover i {
    transform: translateX(4px);
}

/* ---------- Empty state ---------- */
.mm-empty {
    text-align: center;
    padding: 60px 24px;
    border: 1px dashed var(--mm-border);
    border-radius: 20px;
    background: var(--mm-bg-soft);
}
.mm-empty i {
    font-size: 44px;
    color: var(--mm-accent-dark);
    display: block;
    margin-bottom: 16px;
}
.mm-empty p {
    color: var(--mm-muted) !important;
    font-size: 16px;
    margin: 0;
}

/* ---------- Responsive ---------- */
@media screen and (max-width: 767px) {
    .mm-hero {
        padding: 160px 0 80px;
    }
    .mm-cta {
        padding: 36px 24px;
    }
}

/* ---------- RTL & LTR Fixes ---------- */
.ltr-text {
    direction: ltr !important;
    unicode-bidi: embed !important;
    display: inline-block !important;
}

[dir="rtl"] input[type="email"],
[dir="rtl"] input[type="text"],
[dir="rtl"] input[type="tel"],
[dir="rtl"] textarea {
    text-align: right !important;
    direction: rtl !important;
}

[dir="rtl"] input::placeholder,
[dir="rtl"] textarea::placeholder {
    text-align: right !important;
    direction: rtl !important;
}

/* ---------- Hero Section V2 — Premium Redesign ---------- */
.mm-hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0a0d08;
    overflow: hidden;
    padding: 160px 0 100px;
    isolation: isolate;
}
.mm-page-hero-v2 {
    min-height: auto;
    padding: 180px 0 110px;
}
.mm-hero-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(179, 222, 79, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 80% 30%, rgba(179, 222, 79, 0.04) 0%, transparent 70%),
        linear-gradient(180deg, #0a0d08 0%, #0e120b 100%);
}

/* Animated orbs */
.mm-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
    z-index: 1;
    pointer-events: none;
}
.mm-hero-orb--1 {
    width: 600px;
    height: 600px;
    background: rgba(179, 222, 79, 0.18);
    top: -200px;
    left: -150px;
    animation: mm-orb-float 12s ease-in-out infinite;
}
.mm-hero-orb--2 {
    width: 400px;
    height: 400px;
    background: rgba(179, 222, 79, 0.12);
    bottom: -100px;
    right: -80px;
    animation: mm-orb-float 16s ease-in-out infinite reverse;
}
.mm-hero-orb--3 {
    width: 250px;
    height: 250px;
    background: rgba(179, 222, 79, 0.1);
    top: 40%;
    left: 50%;
    animation: mm-orb-float 20s ease-in-out infinite 3s;
}
@keyframes mm-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(15px, 15px) scale(1.03); }
}

/* Subtle grid overlay */
.mm-hero-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(179, 222, 79, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(179, 222, 79, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Row */
.mm-hero-row {
    min-height: calc(100vh - 260px);
}

/* Badge */
.mm-hero-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 999px;
    background: rgba(179, 222, 79, 0.08);
    border: 1px solid rgba(179, 222, 79, 0.2);
    color: var(--mm-accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}
.mm-hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mm-accent);
    animation: mm-dot-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes mm-dot-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(179, 222, 79, 0.6); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(179, 222, 79, 0); }
}

/* Heading */
.mm-hero-heading {
    font-size: clamp(2.6rem, 5vw, 4.5rem) !important;
    line-height: 1.15 !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    letter-spacing: -1px;
    margin: 0 0 24px !important;
    text-transform: uppercase;
}
.mm-hero-heading br {
    display: block;
}

/* Description */
.mm-hero-desc {
    font-size: 1.15rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.65) !important;
    max-width: 560px;
    margin: 0 0 36px !important;
}

/* CTA Buttons */
.mm-hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.mm-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 999px;
    background: var(--mm-accent);
    color: #0a0d08 !important;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 12px 32px -8px rgba(179, 222, 79, 0.45);
    position: relative;
    overflow: hidden;
}
.mm-hero-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.mm-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px -8px rgba(179, 222, 79, 0.55);
    color: #0a0d08 !important;
}
.mm-hero-cta:hover::before {
    opacity: 1;
}
.mm-hero-cta-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(10, 13, 8, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.mm-hero-cta:hover .mm-hero-cta-icon {
    transform: translateX(4px);
}
.mm-hero-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.35s ease;
    backdrop-filter: blur(4px);
}
.mm-hero-cta-outline:hover {
    border-color: var(--mm-accent);
    color: var(--mm-accent) !important;
    background: rgba(179, 222, 79, 0.06);
}
.mm-hero-cta-outline-icon {
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
}

/* Stats */
.mm-hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.mm-hero-stat {
    display: flex;
    flex-direction: column;
}
.mm-hero-stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--mm-accent) !important;
    line-height: 1;
    letter-spacing: -1px;
}
.mm-hero-stat-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mm-hero-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

/* Visual column */
.mm-hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mm-hero-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(179, 222, 79, 0.08);
}
.mm-hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}
.mm-hero-img-glow {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(179, 222, 79, 0.08) 0%, transparent 50%, rgba(179, 222, 79, 0.05) 100%);
    pointer-events: none;
}

/* Floating glass cards */
.mm-hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    border-radius: 18px;
    background: rgba(12, 15, 10, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 48px -12px rgba(0, 0, 0, 0.5);
    z-index: 10;
    animation: mm-float-card 5s ease-in-out infinite;
}
.mm-hero-float-card--roi {
    top: 8%;
    right: -20px;
    animation-delay: 0s;
}
.mm-hero-float-card--growth {
    bottom: 15%;
    left: -30px;
    animation-delay: 1.5s;
}
.mm-hero-float-card--clients {
    bottom: -5%;
    right: 10%;
    animation-delay: 3s;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
@keyframes mm-float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.mm-hero-float-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(179, 222, 79, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mm-accent);
    font-size: 22px;
    flex-shrink: 0;
}
.mm-hero-float-icon--green {
    background: rgba(46, 204, 113, 0.12);
    color: #2ecc71;
}
.mm-hero-float-value {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.1;
}
.mm-hero-float-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Avatars in float card */
.mm-hero-avatars {
    display: flex;
    align-items: center;
}
.mm-hero-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(12, 15, 10, 0.8);
    margin-inline-start: -10px;
}
.mm-hero-avatar:first-child {
    margin-inline-start: 0;
}
.mm-hero-avatar--count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--mm-accent);
    color: #0a0d08 !important;
    font-size: 12px;
    font-weight: 800;
    border: 2px solid rgba(12, 15, 10, 0.8);
}

/* Scroll indicator */
.mm-hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 5;
}
.mm-hero-scroll span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}
.mm-hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, var(--mm-accent), transparent);
    animation: mm-scroll-line 2s ease-in-out infinite;
}
@keyframes mm-scroll-line {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* RTL Support for Hero V2 */
[dir="rtl"] .mm-hero-heading {
    text-align: right !important;
}
[dir="rtl"] .mm-hero-desc {
    text-align: right !important;
}
[dir="rtl"] .mm-hero-cta-icon {
    transform: rotate(180deg);
}
[dir="rtl"] .mm-hero-cta:hover .mm-hero-cta-icon {
    transform: rotate(180deg) translateX(4px);
}
[dir="rtl"] .mm-hero-float-card--roi {
    right: auto;
    left: -20px;
}
[dir="rtl"] .mm-hero-float-card--growth {
    left: auto;
    right: -30px;
}
[dir="rtl"] .mm-hero-float-card--clients {
    right: auto;
    left: 10%;
}

/* ---------- About Section V2 Redesign ---------- */
.mm-about-v2 {
    background-color: #0c0f0a;
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
}

.mm-about-visual {
    position: relative;
    border-radius: 24px;
}

.mm-about-img-box {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mm-about-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.mm-about-visual:hover .mm-about-main-img {
    transform: scale(1.03);
}

.mm-about-img-overlay {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, transparent 40%, rgba(12, 15, 10, 0.85) 100%);
    pointer-events: none;
}

.mm-about-exp-badge {
    bottom: 24px;
    inset-inline-end: 24px;
    background: rgba(15, 20, 12, 0.88) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(179, 222, 79, 0.3) !important;
    z-index: 5;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5) !important;
}

.mm-about-exp-num {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--mm-accent) !important;
}

.mm-about-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(179, 222, 79, 0.12) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.mm-about-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem) !important;
    line-height: 1.25 !important;
    letter-spacing: -0.5px;
    color: #ffffff !important;
}

.mm-about-description {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.mm-about-feature-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
}

.mm-about-feature-card:hover {
    background: rgba(179, 222, 79, 0.08) !important;
    border-color: rgba(179, 222, 79, 0.35) !important;
    transform: translateY(-3px);
}

.mm-about-feature-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: var(--mm-accent) !important;
    color: #0c0f0a !important;
}

/* Brand Section Redesign */
.mm-brand-section {
    background-color: #0c0f0a !important;
    padding-top: 50px;
    padding-bottom: 90px;
    position: relative;
    z-index: 1;
}

.mm-brand-section-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    display: inline-block;
}


.mm-brand-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 18px !important;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.mm-brand-card:hover {
    background: rgba(179, 222, 79, 0.08) !important;
    border-color: rgba(179, 222, 79, 0.35) !important;
    transform: translateY(-4px);
    box-shadow: 0 16px 32px -10px rgba(179, 222, 79, 0.2) !important;
}

.mm-brand-card img {
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.75) !important;
    transition: filter 0.35s ease, transform 0.35s ease !important;
}

.mm-brand-card:hover img {
    filter: brightness(0) invert(1) opacity(1) !important;
    transform: scale(1.06);
}

/* ---------- Preloader Redesign — Multaqa Market ---------- */
.preloader {
    background-color: #0a0d08 !important;
}

.preloader svg {
    fill: #0a0d08 !important;
}

.preloader-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 30;
}

.mm-preloader-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mm-preloader-logo-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(179, 222, 79, 0.12);
    border: 2px solid var(--mm-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mm-accent);
    font-size: 28px;
    box-shadow: 0 0 30px rgba(179, 222, 79, 0.4);
    animation: mm-pulse-glow 2s infinite ease-in-out;
}

.mm-preloader-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.mm-preloader-title span {
    color: var(--mm-accent) !important;
}

.preloader .preloader-heading .load-text {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--mm-accent) !important;
    letter-spacing: 8px !important;
    text-transform: uppercase;
    text-shadow: 0 0 16px rgba(179, 222, 79, 0.5);
    margin-top: 4px;
}

.load-text span {
    color: var(--mm-accent) !important;
    display: inline-block;
    animation: loading-neon 1.2s infinite alternate ease-in-out;
}

/* Futuristic Loader Bar */
.mm-preloader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 12px rgba(179, 222, 79, 0.2);
    margin-top: 8px;
}

.mm-preloader-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, transparent, var(--mm-accent), transparent);
    border-radius: 999px;
    animation: mm-bar-slide 1.4s infinite ease-in-out;
}

@keyframes mm-pulse-glow {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(179, 222, 79, 0.3); }
    50% { transform: scale(1.08); box-shadow: 0 0 40px rgba(179, 222, 79, 0.6); }
}

@keyframes mm-bar-slide {
    0% { left: -60%; }
    100% { left: 100%; }
}

/* ---------- Video Section V2 Redesign ---------- */
.mm-video-v2 {
    background-color: #0c0f0a !important;
    padding-top: 80px !important;
    padding-bottom: 90px !important;
    position: relative;
    z-index: 1;
}

.mm-video-card-inner {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(179, 222, 79, 0.15) !important;
    border-radius: 32px !important;
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.7);
}

.mm-video-bg-glow {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(179, 222, 79, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.mm-video-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
    line-height: 1.3 !important;
    letter-spacing: -0.5px;
    color: #ffffff !important;
}

.mm-video-desc {
    line-height: 1.85 !important;
    color: rgba(255, 255, 255, 0.65) !important;
}

.mm-video-thumb-wrapper {
    position: relative;
}

.mm-video-thumb-card {
    border-radius: 24px !important;
    height: 340px;
    box-shadow: 0 24px 50px -12px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s ease;
}

.mm-video-thumb-card:hover {
    transform: scale(1.02);
    border-color: rgba(179, 222, 79, 0.45) !important;
}

.mm-video-thumb-img {
    filter: brightness(0.7) contrast(1.1);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.mm-video-thumb-card:hover .mm-video-thumb-img {
    filter: brightness(0.85) contrast(1.1);
    transform: scale(1.05);
}

.mm-video-thumb-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(12, 15, 10, 0.35) 0%, rgba(12, 15, 10, 0.8) 100%);
}

.mm-video-thumb-badge {
    background: rgba(12, 15, 10, 0.75) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--mm-accent) !important;
    border: 1px solid rgba(179, 222, 79, 0.3) !important;
    letter-spacing: 1px;
}

/* ---------- Services Section V2 — Wow Redesign ---------- */
.mm-services-v2 {
    background-color: #0c0f0a !important;
    padding-top: 100px !important;
    padding-bottom: 110px !important;
    position: relative;
    z-index: 1;
}

.mm-services-glow-1 {
    position: absolute;
    top: 10%;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(179, 222, 79, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.mm-services-glow-2 {
    position: absolute;
    bottom: 5%;
    right: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(179, 222, 79, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.mm-services-heading {
    font-size: clamp(1.9rem, 3.8vw, 2.7rem) !important;
    line-height: 1.25 !important;
    letter-spacing: -0.5px;
    color: #ffffff !important;
}

.mm-services-subtext {
    font-size: 1.05rem !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.65) !important;
}


.mm-service-card-v2 {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(14px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
    overflow: hidden;
    position: relative;
}

.mm-service-card-v2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--mm-accent), #d2f870);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mm-service-card-v2:hover {
    background: rgba(179, 222, 79, 0.06) !important;
    border-color: rgba(179, 222, 79, 0.35) !important;
    transform: translateY(-8px);
    box-shadow: 0 24px 50px -15px rgba(179, 222, 79, 0.18) !important;
}

.mm-service-card-v2:hover::before {
    transform: scaleX(1);
}

.mm-service-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(179, 222, 79, 0.12) !important;
    border: 1px solid rgba(179, 222, 79, 0.3) !important;
    color: var(--mm-accent) !important;
    transition: all 0.4s ease;
}

.mm-service-card-v2:hover .mm-service-icon-box {
    background: var(--mm-accent) !important;
    color: #0c0f0a !important;
    transform: rotate(6deg) scale(1.05);
    box-shadow: 0 0 25px rgba(179, 222, 79, 0.5);
}

.mm-service-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2) !important;
    letter-spacing: 1px;
    transition: color 0.4s ease;
}

.mm-service-card-v2:hover .mm-service-number {
    color: var(--mm-accent) !important;
}

.mm-service-title {
    font-size: 1.3rem !important;
    line-height: 1.35 !important;
}

.mm-service-title a {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.mm-service-card-v2:hover .mm-service-title a {
    color: var(--mm-accent) !important;
}

.mm-service-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6) !important;
}

.mm-service-link span {
    transition: color 0.3s ease;
}

.mm-service-card-v2:hover .mm-service-link span {
    color: var(--mm-accent) !important;
}

.mm-service-arrow-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    font-size: 18px;
    text-decoration: none !important;
    transition: all 0.35s ease;
}

.mm-service-card-v2:hover .mm-service-arrow-btn {
    background: var(--mm-accent) !important;
    border-color: var(--mm-accent) !important;
    color: #0c0f0a !important;
    transform: rotate(45deg);
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.08) !important;
}

@media (min-width: 1200px) {
    .mm-service-card-wide .mm-service-desc {
        max-width: 800px;
    }
}

/* ---------- Marquee Section Fixes ---------- */
.maquee-area {
    background-color: #0c0f0a !important;
    padding: 36px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.maquee-title {
    color: #ffffff !important;
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 800 !important;
    letter-spacing: 3px !important;
}

.maquee-title.border-text {
    color: transparent !important;
    -webkit-text-stroke-width: 1.5px !important;
    -webkit-text-stroke-color: var(--mm-accent) !important;
}

.maquee-icon img {
    filter: brightness(0) invert(1) opacity(0.8) !important;
}

/* ---------- Projects / Portfolio Section Redesign ---------- */
.portfolio-area {
    background-color: #0c0f0a !important;
    padding-top: 100px !important;
    padding-bottom: 110px !important;
}

.mm-project-card {
    min-height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1) !important;
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.8);
}

.mm-project-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: brightness(0.7) contrast(1.1);
}

.mm-project-card:hover .mm-project-card-bg {
    transform: scale(1.06);
    filter: brightness(0.85) contrast(1.1);
}

.mm-project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 15, 10, 0.3) 0%, rgba(12, 15, 10, 0.92) 100%);
    transition: background 0.4s ease;
}

.mm-project-card:hover {
    border-color: rgba(179, 222, 79, 0.45) !important;
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -15px rgba(179, 222, 79, 0.2) !important;
}

.mm-project-title a {
    transition: color 0.3s ease;
}

.mm-project-card:hover .mm-project-title a {
    color: var(--mm-accent) !important;
}

.bg-white-10 {
    background: rgba(255, 255, 255, 0.1) !important;
}

.border-white-20 {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.bg-main-600-20 {
    background: rgba(179, 222, 79, 0.15) !important;
}

/* ---------- Testimonials Section V2 Redesign ---------- */
.mm-testimonials-v2 {
    background-color: #0c0f0a !important;
    padding-top: 100px !important;
    padding-bottom: 110px !important;
    position: relative;
    z-index: 1;
}

.mm-testimonials-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(179, 222, 79, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.mm-testi-card-v2 {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(14px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.7);
}

.mm-testi-card-v2:hover {
    background: rgba(179, 222, 79, 0.05) !important;
    border-color: rgba(179, 222, 79, 0.35) !important;
    transform: translateY(-6px);
    box-shadow: 0 25px 60px -15px rgba(179, 222, 79, 0.18) !important;
}

.mm-testi-quote-text {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
}

.mm-testi-avatar {
    width: 56px;
    height: 56px;
    border: 2px solid var(--mm-accent) !important;
    box-shadow: 0 0 15px rgba(179, 222, 79, 0.3);
}

.mm-testi-name {
    color: #ffffff !important;
    font-size: 1.1rem !important;
}

.mm-testi-position {
    color: var(--mm-accent) !important;
}

.bg-white-5 {
    background: rgba(255, 255, 255, 0.05) !important;
}

/* Global Dark Theme Text Color Overrides */
.text-white-60,
.text-white-60 * {
    color: rgba(255, 255, 255, 0.65) !important;
}

.text-white-75,
.text-white-75 * {
    color: rgba(255, 255, 255, 0.78) !important;
}

.text-white-50,
.text-white-50 * {
    color: rgba(255, 255, 255, 0.55) !important;
}

.text-white-85,
.text-white-85 * {
    color: rgba(255, 255, 255, 0.88) !important;
}

.text-white-20 {
    color: rgba(255, 255, 255, 0.25) !important;
}

.mm-contact-v2 p,
.mm-contact-v2 label,
.mm-cta-v2 p,
.mm-team-v2 p,
.mm-blog-v2 p,
.mm-services-v2 p,
.mm-testimonials-v2 p,
.mm-footer-v2 p,
.mm-about-v2 p,
.mm-hero-v2 p {
    color: rgba(255, 255, 255, 0.75) !important;
}


/* ---------- Team & Counters Section V2 ---------- */
.mm-team-v2 {
    background-color: #0c0f0a !important;
    padding-top: 100px !important;
    padding-bottom: 110px !important;
}

.mm-counter-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.mm-counter-card:hover {
    background: rgba(179, 222, 79, 0.06) !important;
    border-color: rgba(179, 222, 79, 0.35) !important;
    transform: translateY(-6px);
}

.mm-counter-num {
    font-size: 3rem !important;
    letter-spacing: -1px;
}

.mm-counter-label {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.9rem !important;
    letter-spacing: 1px;
}

.mm-team-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.mm-team-card:hover {
    background: rgba(179, 222, 79, 0.05) !important;
    border-color: rgba(179, 222, 79, 0.3) !important;
    transform: translateY(-6px);
}

.mm-team-img-box {
    height: 280px;
}

.mm-team-img-box img {
    transition: transform 0.5s ease;
}

.mm-team-card:hover .mm-team-img-box img {
    transform: scale(1.06);
}

.mm-team-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.mm-team-social:hover {
    background: var(--mm-accent) !important;
    color: #0c0f0a !important;
}

/* ---------- Contact Section V2 — Dark Glass Fix ---------- */
.mm-contact-v2 {
    background-color: #0c0f0a !important;
    padding-top: 100px !important;
    padding-bottom: 110px !important;
}

.mm-contact-info-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.mm-contact-info-card:hover {
    background: rgba(179, 222, 79, 0.06) !important;
    border-color: rgba(179, 222, 79, 0.3) !important;
}

.mm-contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(179, 222, 79, 0.12) !important;
    border: 1px solid rgba(179, 222, 79, 0.3) !important;
    color: var(--mm-accent) !important;
}

.mm-contact-form-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
}

.mm-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    padding: 12px 18px !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.mm-input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.mm-input:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--mm-accent) !important;
    box-shadow: 0 0 15px rgba(179, 222, 79, 0.25) !important;
    outline: none !important;
}

/* ---------- Blog Section V2 ---------- */
.mm-blog-v2 {
    background-color: #0c0f0a !important;
    padding-top: 100px !important;
    padding-bottom: 110px !important;
}

.mm-blog-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(14px);
    transition: all 0.4s ease !important;
}

.mm-blog-card:hover {
    background: rgba(179, 222, 79, 0.05) !important;
    border-color: rgba(179, 222, 79, 0.35) !important;
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -15px rgba(179, 222, 79, 0.18) !important;
}

.mm-blog-img-box {
    height: 230px;
}

.mm-blog-img-box img {
    transition: transform 0.5s ease;
}

.mm-blog-card:hover .mm-blog-img-box img {
    transform: scale(1.07);
}

.mm-blog-title a {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

.mm-blog-card:hover .mm-blog-title a {
    color: var(--mm-accent) !important;
}

/* ---------- Call to Action Banner V2 ---------- */
.mm-cta-v2 {
    background-color: #0c0f0a !important;
    padding-bottom: 120px !important;
}

.mm-cta-card {
    background: linear-gradient(135deg, rgba(179, 222, 79, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%) !important;
    border: 1px solid rgba(179, 222, 79, 0.3) !important;
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 70px -20px rgba(179, 222, 79, 0.25) !important;
}

.mm-cta-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(179, 222, 79, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.max-w-700 {
    max-width: 700px;
}

/* ---------- Global Overflow Fix & Footer V2 Full-Width ---------- */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

#smooth-wrapper,
#smooth-content {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* ---------- Clean 100% Full-Width Footer & Fixed WhatsApp Widget ---------- */
footer.mm-footer-v2,
.mm-footer-v2 {
    width: calc(100% - 32px) !important;
    max-width: 100% !important;
    background-color: #060905 !important;
    padding-top: 70px !important;
    padding-bottom: 30px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    margin: 0 16px 16px !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    box-sizing: border-box !important;
}

.mm-footer-v2 .container {
    max-width: 1320px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
}

.whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    left: 30px !important;
    z-index: 99999 !important;
    text-decoration: none !important;
}

.whatsapp-float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366 !important;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover .whatsapp-float-btn {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}





/* ---------- High Contrast Buttons (.mm-hero-cta) ---------- */
.mm-hero-cta,
button.mm-hero-cta,
a.mm-hero-cta,
#footer-newsletter-form button.mm-hero-cta {
    background: var(--mm-accent) !important;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    border-radius: 50px !important;
    padding: 12px 28px !important;
    font-weight: 800 !important;
    font-size: 1rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    box-shadow: 0 0 25px rgba(179, 222, 79, 0.45) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.mm-hero-cta *,
.mm-hero-cta-label,
.mm-hero-cta-icon i,
#footer-newsletter-form .mm-hero-cta-label,
.mm-footer-newsletter-card .mm-hero-cta-label {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    font-weight: 800 !important;
}

.mm-hero-cta-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15) !important;
    color: #000000 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.mm-hero-cta-icon i {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
}

.mm-hero-cta:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 0 35px rgba(179, 222, 79, 0.75) !important;
    background: #c7f265 !important;
    color: #000000 !important;
}


.mm-footer-v2 p,
.mm-footer-v2 span,

.mm-footer-v2 small,
.mm-footer-v2 div,
.mm-footer-v2 label {
    color: rgba(255, 255, 255, 0.75) !important;
}

.mm-footer-v2 h3,
.mm-footer-v2 h4,
.mm-footer-v2 h5 {
    color: #ffffff !important;
}

.mm-footer-newsletter-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(14px);
}

.mm-newsletter-input {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
}

.mm-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.mm-newsletter-input:focus {
    background: rgba(255, 255, 255, 0.09) !important;
    border-color: var(--mm-accent) !important;
    box-shadow: 0 0 15px rgba(179, 222, 79, 0.25) !important;
}

.mm-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.mm-social-link:hover {
    background: var(--mm-accent) !important;
    color: #0c0f0a !important;
}

.mm-footer-link {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    transition: color 0.3s ease, transform 0.3s ease;
}

.mm-footer-link:hover {
    color: var(--mm-accent) !important;
    transform: translateX(4px);
}

.mm-footer-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(179, 222, 79, 0.12) !important;
    border: 1px solid rgba(179, 222, 79, 0.3) !important;
    color: var(--mm-accent) !important;
    font-size: 18px;
}








.mm-video-play-btn {
    width: 110px;
    height: 110px;
    background: var(--mm-accent) !important;
    color: #0c0f0a !important;
    box-shadow: 0 0 50px rgba(179, 222, 79, 0.55);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    z-index: 2;
    text-decoration: none;
}

.mm-video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 70px rgba(179, 222, 79, 0.75);
    color: #0c0f0a !important;
}

.mm-video-ripple {
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 2px solid rgba(179, 222, 79, 0.45);
    animation: mm-video-pulse 2.5s infinite linear;
    z-index: 1;
    pointer-events: none;
}

.mm-video-ripple--delay {
    animation-delay: 1.25s;
}

@keyframes mm-video-pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}






