

body{
    /*font-family:"Instrument Sans", sans-serif;*/
    font-family:"inter", sans-serif;
    
}
/* ==== COLOR THEME (dark blue + black + accent) ==== */
:root {
    --mv-accent: #ffffff;      /* bluish-purple like reference */
    --mv-accent-soft: #0b1736;
    --mv-accent-border: #445785;
    --mv-text-dark: #020617;
    --mv-body-bg: #020617;     /* dark background for page */
}

/* Body background (site overall dark) */
body.bg-main {
    background-color: var(--mv-body-bg);
    color: #e5e7eb;
}

.container{
    max-width: 960px;
}

@media (max-width: 767px) {
    #mainNav {
        background: var(--mv-body-bg);
    }
}




/* ==== HEADER ==== */
.mv-header .navbar {
    height: 52px;;
    /* padding-top: 0.75rem;
    padding-bottom: 0.75rem; */
    background-color: #020617 !important;   /* white bar like example */
}

.mv-header-spacer {
    height: 54px; /* match navbar height so content starts below */
}

/* Logo */

.mv-logo-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background-color: #ffffff;
}
.mv-logo-text {
    color: #020617;
    font-size: 19px;
}

/* Menu links */
.mv-main-menu .nav-link {
    font-size: 12px;
    /* font-weight: 500; */
    color: #e6e6e9; /* gray */
    padding-inline: 1rem;
}

.mv-main-menu .nav-link:hover,
.mv-main-menu .nav-link:focus {
    color: var(--mv-accent);
}

.mv-main-menu .nav-link.active {
    color: var(--mv-accent);
}

/* ==== CTA BUTTONS (Log in / Start) ==== */
.mv-btn-outline {
    border-radius: 999px;
    border: 1.5px solid var(--mv-accent-border);
    color: var(--mv-accent);
    background: #ffffff;
    font-weight: 500;
    padding: 0.45rem 1.2rem;
}

.mv-btn-outline:hover {
    background: #eef2ff;
    color: var(--mv-accent-soft);
}

.mv-btn-primary {
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--mv-accent), var(--mv-accent-soft));
    color: #ffffff;
    font-weight: 600;
    padding: 0.48rem 1.35rem;
    box-shadow: 0 12px 25px rgba(79, 70, 229, 0.35);
}

.mv-btn-primary:hover {
    filter: brightness(1.03);
    box-shadow: 0 16px 40px rgba(79, 70, 229, 0.45);
}

/* Make buttons full width on mobile menu if you want */
@media (max-width: 991.98px) {
    .mv-cta-wrap {
        width: 100%;
        justify-content: flex-start;
    }
    .mv-cta-wrap .btn {
        flex: 1 1 auto;
        text-align: center;
    }
}

.trusted-badge {
        display: inline-flex;
    align-items: center;
    /* gap: 8px; */
    padding: 0px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #D0B7FF;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    cursor: default;
}

.trusted-icon {
    font-size: 20px;
}

/* FOOTER FULL BACKGROUND */
/* .mv-footer {
    background-color: #ffffff;
} */

/* ROUNDED BOX */
.mv-footer-box {
    background: #1d1141; /* dark blue box */
    border-radius: 25px;
}

/* Logo in footer */
.mv-logo-footer {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 12px;
}

.mv-footer-dot {
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
}

/* Footer Links */
.footer-links li {
    margin-bottom: 6px;
}
.footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: #60a5fa;
}

/* Social Icons */
.social-icons a {
    font-size: 1.4rem;
    color: #e5e7eb;
}

.social-icons a:hover {
    color: #60a5fa;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .mv-footer-box {
        padding: 2rem;
        text-align: left !important;
    }
}

/* ---------- HERO SECTION (WHITE BACKGROUND) ---------- */
/* 1. Main Container - Deep Purple Vignette Background */

.mv-hero {
    /* Creates the dark center-out glow effect */
    background: radial-gradient(circle at center, #2e104a 0%, #150526 40%, #080112 100%);
    color: #ffffff;
    padding-top: 6rem; /* Space for fixed header */
    padding-bottom: 4rem;
    min-height: 90vh; /* Ensures it covers most of the screen */
    display: flex;
    align-items: center;
}


/* 2. The "Top Pill" Badge */
.mv-hero-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 50px;
    /* Dark transparent background with thin purple border */
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(168, 126, 255, 0.3);
    color: #d0c2ff; /* Light purple text */
    font-weight: 500;
    font-size: 0.9rem;
}

/* 3. Main Title Typography */
.mv-hero-title {
    font-size: clamp(2.5rem, 5vw, 6rem); /* Responsive large text */
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

/* 4. The Glowing Gradient Text */
.mv-gradient-text {
    /* Matches the reference purple-to-pink gradient */
    background: linear-gradient(90deg, #a68bf0 0%, #f067b4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block; /* Fixes some clipping issues */
    font-weight: 800 !important;
}

/* 5. Subtext Description */
.mv-hero-sublead {
    max-width: 650px;
    color: #aeb0b8; /* Light grey-blue for readability on dark bg */
    font-size: 1.0rem;
    font-weight: 400;
}

/* 6. Feature Chips (Videos, Reels, Songs) */
/* Styled as "Outline Buttons" to fit the dark theme */

.mv-hero-chip {
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
    color: #e0e0e0;
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mv-hero-chip:hover {
    border-color: #d0c2ff;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateY(-2px);
}

/* 7. Main CTA Button (Get Started) */

/* Styled as the "Gradient Fill" button */
.mv-hero-cta {
    border-radius: 50px;
    /* padding: 12px 35px; */
    /* Purple to Pink Gradient */
    background: linear-gradient(90deg, #7f45ff 0%, #d93eda 100%);
    color: #ffffff;
    /* font-weight: 600; */
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 4px 20px rgba(217, 62, 218, 0.4); /* Glow effect */
    transition: transform 0.2s ease;
}

.mv-hero-cta:hover {
    background: linear-gradient(90deg, #6b3add 0%, #c235c3 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(217, 62, 218, 0.6);
}

.mv-hero-cta-button {
    background: linear-gradient(90deg, #a855f7,#ff4dd2);
    padding: 10px 22px;
    border-radius: 30px;
    color: #fff !important;
    display: inline-block;
    margin: 10px auto !important;
    text-align: center;
    width: 85%;   /* balanced width for mobile */
}

@media(min-width: 992px){
    .mv-hero-cta-button{
        width: auto; /* normal size on desktop */
        margin-left: 10px !important;
        margin-right: 0 !important;
    }
}

/* Helper text under CTA */
.mv-hero .text-muted {
    color: #e8e8e8 !important; /* Overrides bootstrap muted default */
}

/* 8. Client Logos */
/* Makes sure logos are visible on dark background */
.mv-client-logo {
    /* Makes logos white/light grey to pop against dark purple */
    filter: grayscale(100%) brightness(200%) contrast(0%);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.mv-client-logo:hover {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .mv-hero-chip {
        width: 100%; /* Stack chips on mobile */
        margin-bottom: 5px;
    }

    .mv-hero-title {
        font-size: 1.2rem;
    }
}

/* ---------- FEATURE SECTION ---------- */

/* Main box */
.mv-feature-box {
    /* background: linear-gradient(180deg, #f8f5ff, #f2efff); */
    background: radial-gradient(circle at center, #2e104a 0%, #150526 40%, #080112 100%);
    border-radius: 26px;
    border: 1px solid rgba(209, 213, 219, 0.4);
    /* box-shadow:
        0 10px 35px rgba(149, 142, 255, 0.12),
        0 2px 10px rgba(0,0,0,0.04); */
}

/* Feature label pill */
.mv-feature-pill {
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    /* background-color: #6d28d9;
    color: #ffffff; */
    font-size: 0.9rem;
    font-weight: 500;
}


/* Image screenshot card */
.mv-feature-image-wrapper {
    /* background: #ffffff; */
    /* padding: 10px; */
    border-radius: 22px;
    /* box-shadow:
        0 20px 40px rgba(149, 142, 255, 0.18),
        0 12px 18px rgba(149, 142, 255, 0.10); */
    max-width: 100%;
}

.mv-feature-image {
    border-radius: 18px;
   width: 528px;
}


/* Responsive */
@media (max-width: 767.98px) {
    .mv-section-title {
        font-size: 1.6rem;
    }

    .mv-feature-box {
        padding: 1.5rem;
    }
}


/* ---------- TESTIMONIALS ---------- */
/* .mv-testimonials {
    background-color: #f3f4f6;
} */


.mv-testimonial-card {
    /* background-color: #ffffff; */
    background: radial-gradient(circle at center, #2e104a 0%, #150526 40%, #080112 100%);

    border-radius: 18px;
    padding: 1.25rem 1.4rem;
    border: 1px solid rgba(209, 213, 219, 0.7);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.mv-testimonial-card:hover {
    transform: translateY(-3px);
    border-color: rgba(129, 140, 248, 0.6);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.09);
}

/* Avatar circle */
.mv-avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Text colors */
.text-slate-700 { color: #ffffff; }
.text-slate-900 { color: #ffffff; }
.text-slate-600 { color: #ffffff; }

/* Stars */
.mv-stars i {
    color: #16a34a;  /* green stars */
    font-size: 0.85rem;
}

/* ---------- VALUE SECTION ---------- */

/* .mv-value-section {
    background-color: #ffffff;
} */

.mv-value-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #111827;
}

/* Shared pill style */
.mv-pill {
    padding: 0.65rem 2rem;
    border-radius: 999px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    display: inline-block;
    white-space: nowrap;
}

/* LinkedIn pill */
.mv-pill-linkedin {
    background: linear-gradient(90deg, #0077b5, #0ea5e9);
    box-shadow: 0 10px 25px rgba(0, 119, 181, 0.25);
}

/* Instagram gradient pill */
.mv-pill-instagram {
    background: linear-gradient(90deg, #f58529, #dd2a7b, #8134af, #515bd4);
    box-shadow: 0 10px 25px rgba(221, 42, 123, 0.25);
}

/* Icons */
.mv-pill i {
    font-size: 1.4rem;
    vertical-align: middle;
}

/* Responsive */
@media (max-width: 768px) {
    .mv-pill {
        font-size: 1.1rem;
        padding: 0.55rem 1.5rem;
    }

    .mv-value-title {
        font-size: 1.3rem;
    }
}


/* ---------- FAQ SECTION ---------- */

/* .mv-faq-section {
    background-color: #ffffff;
} */

.mv-faq-list {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid #e5e7eb;
}

.mv-faq-item {
    border-bottom: 1px solid #e5e7eb;
}


/* FAQ button row */
.mv-faq-toggle {
    width: 100%;
    padding: 0.9rem 0;
    background: transparent;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}


/* Question text */
.mv-faq-question {
    font-size: 0.98rem;
    color: #ffffff;
    font-weight: 500;
}

.mv-faq-question.active,
.mv-faq-toggle[aria-expanded="true"] .mv-faq-question {
    color: #ffffff; /* purple like reference */
}

/* Plus / minus icon using pseudo-element */
.mv-faq-icon {
    width: 18px;
    height: 18px;
    position: relative;
}

.mv-faq-icon::before,
.mv-faq-icon::after {
    content: "";
    position: absolute;
    background-color: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* vertical line */
.mv-faq-icon::before {
    width: 2px;
    height: 12px;
}

/* horizontal line */
.mv-faq-icon::after {
    width: 12px;
    height: 2px;
}

/* when open → show only minus (hide vertical bar) */
.mv-faq-toggle[aria-expanded="true"] .mv-faq-icon::before {
    opacity: 0;
}

/* Answer body */
.mv-faq-body {
    padding: 0 0 0.9rem 0;
    font-size: 0.92rem;
    color: #ffffff;
}

/* Mobile tweaks */
@media (max-width: 576px) {
    .mv-faq-question {
        font-size: 0.95rem;
    }
}


/* ---------- VIRAL YOUR VIDEOS HERO ---------- */

/* .vv-hero {
    background-color: #ffffff;
} */

.vv-hero-title {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    font-weight: 700;
    color: #ffffff; /* dark heading */
}

.vv-hero-text {
    font-size: 0.98rem;
    color: #dddedf; /* muted gray */
    max-width: 460px;
}

/* CTA button */
.vv-hero-btn {
    background-color: #1d4ed8;   /* dark blue */
    color: #ffffff;
    padding: 0.7rem 1.7rem;
    border-radius: 0.55rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}
.vv-hero-btn:hover {
    background-color: #1e40af;
    color: #ffffff;
}

/* Right image box */
.vv-hero-image-wrapper {
    max-width: 520px;
    border-radius: 1.1rem;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
    background-color: #f9fafb;
}

.vv-hero-image {
    width: 100%;
    display: block;
}

/* Mobile spacing */
@media (max-width: 767.98px) {
    .vv-hero {
        padding-top: 3rem;
    }
    .vv-hero-title {
        text-align: center;
    }
    .vv-hero-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .vv-hero-btn {
        display: inline-block;
        margin-left: auto;
        margin-right: auto;
    }
    .vv-hero .col-lg-6:first-child {
        text-align: center;
    }
}


/* ---------- VIEWS CALCULATOR ---------- */
/* .vv-calculator-section {
    background-color: #f3f4f6;
} */

.vv-calculator-card {
    /* background-color: #ffffff; */
    background: linear-gradient(90deg, #f58529, #dd2a7b, #8134af, #515bd4);

    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.vv-calculator-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
}

/* Slider style */
.vv-range {
    accent-color: #2563eb;
}

/* Right summary panel */
.vv-calculator-summary {
    background-color: #f9fafb;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
}

.vv-summary-list li span:first-child {
    color: #6b7280;
}

/* small dots for legend */
.vv-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-right: 4px;
}
.vv-dot-primary {
    background-color: #2563eb;
}
.vv-dot-muted {
    background-color: #e5e7eb;
}

/* ---------- FINAL CTA SECTION ---------- */
/* .vv-final-cta {
    background-color: #ffffff;
} */

.vv-final-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #f8faff;
}

.vv-final-sub {
    color: #d8d8d8;
    font-size: 0.95rem;
}

/* Button (matches other dark-blue CTAs) */
.vv-final-btn {
    background-color: #1d4ed8;
    color: #ffffff;
    padding: 0.75rem 2.2rem;
    border-radius: 0.55rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}

.vv-final-btn:hover {
    background-color: #1e40af;
    color: #ffffff;
}



/* ---------- CONTACT PAGE ---------- */

/* .contact-hero {
    background-color: #ffffff;
} */

.contact-title {
    /* font-size: clamp(2rem, 3vw, 2.4rem); */
    font-weight: 700;
    color: #ffffff;
    font-size: 40px;
}

.contact-sub {
    font-size: 0.98rem;
    color: #e1e1e2;
    max-width: 430px;
}

.contact-info p {
    color: #e1e2e2;
}

/* Form card */
.contact-card {
    /* background-color: #ffffff; */
    border-radius: 18px;
    box-shadow: 0 0px 10px #8134af;
    border: 1px solid #e5e7eb;
}

/* Inputs */
.contact-card .form-control,
.contact-card .form-select {
    border-radius: 0.6rem;
    border: 1px solid #e5e7eb;
    font-size: 0.95rem;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 0.15rem rgba(37, 99, 235, 0.15);
}

/* Button */
.contact-btn {
    background-color: #1d4ed8;
    color: #ffffff;
    padding: 0.65rem 1.8rem;
    border-radius: 0.6rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}
.contact-btn:hover {
    background-color: #1e40af;
    color: #ffffff;
}

/* Mobile tweaks */
@media (max-width: 767.98px) {
    .contact-title,
    .contact-sub {
        text-align: center;
    }
    .contact-sub {
        margin-left: auto;
        margin-right: auto;
    }
    .contact-info {
        text-align: center;
    }
}


/* ---------- FORMAT CARDS (VIDEO / REELS / AUDIO) ---------- */
/* --- Custom Styles to match the design --- */

    Section Background Color
    .viral-section {
        background-color: #080810; /* Very dark almost black background */
        padding: 80px 0;
    }

    /* Card Styling */
    .viral-card {
        background-color: #0f172a; /* Deep dark blue/charcoal card background */
        border-radius: 24px; /* Prominent rounded corners */
        padding: 22px 22px;
        height: 100%; /* Ensures cards are equal height in the row */
        /* Optional subtle border to define edges against similar background */
        border: 1px solid #ffffff30;
        transition: transform 0.3s ease;
    }

    /* Optional hover effect */
    .viral-card:hover {
        transform: translateY(-5px);
        border:1px solid #8b5cf680;
            --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    }

    /* Icon Container Styling */
    .icon-box {
        width: 64px;
        height: 64px;
        border-radius: 18px; /* Rounded square shape */
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
    }

        /* Icon size and color */
        .icon-box i {
            font-size: 32px;
            color: #ffffff;
        }

        /* Specific Gradients for each icon box */
        /* Card 1: Music - Purple Gradient */
        .bg-gradient-music {
            background: linear-gradient(135deg, #c670ff 0%, #9333ea  100%);
        }
        /* Card 2: Play - Pink/Magenta Gradient */
        .bg-gradient-play {
            background: linear-gradient(135deg, #c448e9 0%, #db2777  100%);
        }
        /* Card 3: Mic - Blue/Indigo Gradient */
        .bg-gradient-mic {
            background: linear-gradient(135deg, #c448e9 0%, #4f46e5  100%);
        }

        /* Typography Styling */
        .viral-card-title {
            color: #ffffff;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .viral-card-text {
            color: #a0a0b0; /* Light gray text for description */
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* Ensuring responsiveness for tablet view (optional tweak) */
        @media (max-width: 991.98px) {
             /* On tablets, center text might look better, remove if you prefer left align */
            /* .viral-card { text-align: center; }
            .icon-box { margin: 0 auto 24px auto; } */
        }



/* Pill Badge */
.mv-feature-pill {
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background-color: #6d28d9;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Button */
.mv-feature-btn {
    background-color: #1d4ed8;
    color: #fff;
    padding: 0.65rem 1.4rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(29, 78, 216, 0.35);
    font-weight: 600;
    text-decoration: none;
}
.mv-feature-btn:hover {
    background-color: #1e40af;
    color: #ffffff;
}

/* Feature Image Box */
.mv-feature-image-wrapper {
    /* background: #ffffff; */
    /* padding: 14px; */
    border-radius: 22px;
    box-shadow:
        0 20px 40px rgba(149, 142, 255, 0.18),
        0 12px 18px rgba(149, 142, 255, 0.10);
}


/* Gradient Button Style */
.btn-gradient-color {
    /* The specific purple-to-pink gradient from your image */
    background: linear-gradient(90deg, #9e5cfe 0%, #dd3cdf 100%);

    /* Shape and Size */
    border-radius: 50px;       /* Makes it a pill shape */
    padding: 14px 36px;        /* Matches the chunky look */
    border: none;              /* Removes default border */

    /* Text Styles */
    color: #ffffff;
    font-weight: 700;          /* Bold text */
    font-size: 1.1rem;
    text-decoration: none;     /* Removes underline if using <a> tag */

    /* Layout for Icon alignment */
    display: inline-flex;
    align-items: center;
    gap: 10px;                 /* Space between icon and text */

    /* Optional: Hover Effect */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover State (Optional: Adds a glow and lifts up) */
.btn-gradient-color:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(221, 60, 223, 0.4); /* Pinkish glow */
}

a{
    text-decoration: none;
}


/* .logo-design:hover{
     box-shadow:0px 0px 30px #a68bf0;
} */

.logo-design:hover {
    /* Remove this line */
    /* box-shadow: 0px 0px 30px #a68bf0; */

    /* Add this line instead */
    filter: drop-shadow(0px 0px 30px #a68bf0);
}


/* ---------- CAMPAIGN CALCULATOR PAGE ---------- */

.cc-section {
    background: radial-gradient(circle at top, #111827 0, #020617 45%, #000 100%);
    color: #e5e7eb;
}

.cc-pill-badge {
    background: rgba(129, 140, 248, 0.18);
    color: #c7d2fe;
    border-radius: 999px;
    padding: 0.25rem 0.9rem;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cc-title {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 700;
}

.cc-title-gradient {
    background: linear-gradient(90deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cc-sub {
    color: #9ca3af;
    font-size: 0.95rem;
}

/* Cards */
.cc-card {
    background: #020617;
    border-radius: 18px;
    border: 1px solid #111827;
    padding: 1.4rem 1.6rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.cc-card-title {
    font-size: 0.98rem;
    font-weight: 600;
    color: #e5e7eb;
}

/* Category cards */
.cc-category-card {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    background: #020617;
    border-radius: 14px;
    border: 1px solid #1f2937;
    padding: 0.9rem 1rem;
    color: #e5e7eb;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.cc-category-card:hover {
    border-color: #4f46e5;
}

.cc-category-card.active {
    background: radial-gradient(circle at top left, rgba(236, 72, 153, 0.35), #020617);
    border-color: #a855f7;
    box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.4);
}

.cc-category-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(55, 65, 81, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.cc-category-label {
    font-weight: 600;
    font-size: 0.95rem;
}

.cc-category-rate {
    font-size: 0.86rem;
    color: #a5b4fc;
}

/* Quick views buttons */
.cc-quick-view-btn {
    width: 100%;
    border-radius: 999px;
    background: #020617;
    border: 1px solid #1f2937;
    padding: 0.55rem 0.9rem;
    font-size: 0.86rem;
    color: #e5e7eb;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.cc-quick-view-btn:hover {
    border-color: #4f46e5;
}

.cc-quick-view-btn.active {
    background: linear-gradient(90deg, #4f46e5, #a855f7);
    border-color: transparent;
}

/* Inputs */
.cc-input {
    background-color: #020617;
    border-radius: 10px;
    border: 1px solid #374151;
    color: #e5e7eb;
    font-size: 0.95rem;
}

.cc-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 0.15rem rgba(79, 70, 229, 0.35);
    background-color: #020617;
    color: #e5e7eb;
}

/* Range */
.cc-range {
    accent-color: #a855f7;
}

/* Breakdown */
.cc-break-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.35rem 0;
    font-size: 0.88rem;
}


.cc-break-row span:last-child {
    text-align: right;
}

/* Total cost box */
.cc-cost-box {
    background: radial-gradient(circle at top, rgba(79, 70, 229, 0.35), #020617);
    border-radius: 14px;
    padding: 1.1rem 1rem;
}

.cc-cost-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #f9fafb;
}

/* Submit button */
.cc-submit-btn {
    background: linear-gradient(90deg, #4f46e5, #ec4899);
    color: #ffffff;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}

.cc-submit-btn:hover {
    filter: brightness(1.05);
    color: #ffffff;
}

/* Responsive */
@media (max-width: 767.98px) {
    .cc-card {
        padding: 1.2rem 1.1rem;
    }
}


.mv-client-logo {
    filter: invert(1) brightness(200%) grayscale(1);
}


/* ---------- CREATE CAMPAIGN PAGE ---------- */

.cr-section {
    background: radial-gradient(circle at top, #111827 0, #020617 45%, #000 100%);
    color: #e5e7eb;
}

.cr-title {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 700;
}

.cr-title-gradient {
    background: linear-gradient(90deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cr-sub {
    font-size: 0.95rem;
    color: #9ca3af;
}

/* CARD BASE */
.cr-card {
    background: #020617;
    border-radius: 18px;
    border: 1px solid #111827;
    padding: 1.3rem 1.5rem;
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
    margin-bottom: 1.25rem;
}

.cr-card-title {
    font-size: 1.25rem;
    color: #f5f5f5;
    font-weight: 600;
}

/* TYPE CARDS */
.cr-type-card {
    width: 100%;
    background: #0f172a;
    border-radius: 16px;
    border: 1px solid #1f2937;
    padding: 0.85rem 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-items: center;

    gap: 2.35rem;
    cursor: pointer;
    color: #e5e7eb;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.cr-type-card:hover {
    border-color: #4f46e5;
}

.cr-type-card.active {
    background: #0f172a;
    border-color: #a855f7;
    align-items: center;
    box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.4);
}

.cr-type-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #9333ea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.cr-type-label {
    font-weight: 600;
    font-size: 18px;
}

/* INPUTS */
.cr-input {
    background-color: #020617;
    border-radius: 10px;
    border: 1px solid #374151;
    color: #e5e7eb;
    font-size: 0.95rem;
}

.cr-input::placeholder {
    color: #6b7280;
}

.cr-input:focus {
    background-color: #020617;
    border-color: #6366f1;
    box-shadow: 0 0 0 0.15rem rgba(79, 70, 229, 0.4);
    color: #e5e7eb;
}

/* VIEW TARGET LIST */
.cr-target-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cr-target-item {
    width: 100%;
    text-align: left;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    border: 1px solid #1f2937;
    background: #020617;
    color: #e5e7eb;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease;
}


.cr-target-item:hover {
    border-color: #4f46e5;
}

.cr-target-item.active {
    border-color: #a855f7;
    background: radial-gradient(circle at left, rgba(79,70,229,0.4), #020617);
}

/* SUMMARY BOX */
.cr-summary-box {
    background: linear-gradient(135deg, #1f2937, #4c1d95);
    border-radius: 16px;
    padding: 1rem 1.1rem;
}

.cr-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.4rem 0;
    font-size: 0.9rem;
}

.cr-summary-total {
    border-top: 1px solid rgba(148, 163, 184, 0.4);
    margin-top: 0.3rem;
    padding-top: 0.5rem;
}

/* BUTTON */
.cr-submit-btn {
    background: linear-gradient(90deg, #4f46e5, #ec4899);
    color: #ffffff;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}

.cr-submit-btn:hover {
    filter: brightness(1.05);
    color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 767.98px) {
    .cr-card {
        padding: 1.1rem 1.1rem;
    }
}



/* here glow  */

.logo-box {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #1b0b3a; dark-purple background */
    border-radius: 20px;
    transition: 0.4s ease;
}

.navbar-brand:hover .logo-box{
    box-shadow: 0 0 20px 4px #9043ffb3;
    background: radial-gradient(circle, #9043ff66, #42217ed6);
}

.logo {
    width: 45px;
    transition: 0.3s ease;
}

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



/* Section Background */
.how-it-works-section {
    background: #0d1117; /* Dark navy tone matching screenshot */
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Title Styling */
.how-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
}

.how-title span {
    background: linear-gradient(90deg, #a16eff, #ff74c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.how-title-faq {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
}

.how-title-faq span {
    background: linear-gradient(90deg, #a16eff, #ff74c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Step Block */
.step-block {
    text-align: center;
}

/* Number Style */
.step-number {
    font-size: 50px;
    font-weight: 700;
    color: #a372d8; /* Purple like screenshot */
    margin-bottom: 15px;
}

/* Step Title */
.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

/* Step Description */
.step-text {
    color: #b8b8b8;
    font-size: 14px;
}


/* about us page here  */
/* .hero-image{

} */
.about-hero-section {
    height: 340px; /* any height you want */
    /* background: url('../img/about-hero.png') no-repeat center center/cover;*/

    background: linear-gradient(
            rgba(0,0,0,0.5),     /* top transparency */
            rgba(0,0,0,0.5)      /* bottom transparency */
          ),
          url(../img/about-hero.png) no-repeat center center / cover;

    padding: 150px 0 180px;
    position: relative;
    text-align: center;
}

/* Background overlay for dark effect */
.about-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 20, 0.60);
}

/* Ensure content is above overlay */
.about-hero-section .container {
    position: relative;
    z-index: 2;
}

/* Badge */
.powered-badge {
    display: inline-flex;
    align-items: center;
    /* gap: 6px; */
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #C1B7FF;
    font-size: 12px;
}

/* Main Title */
.about-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

/* Gradient text */
.about-title span {
    background: linear-gradient(90deg, #a16eff, #ff74c8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtitle */
.about-subtitle {
    color: #cfcfcf;
    font-size: 15px;
    max-width: 900px;
}



.about-lead-section {
    background: #0c0f1c;
}

.lead-box {
    background: linear-gradient(135deg, rgba(32, 7, 63, 0.9), rgba(15, 5, 50, 0.8));
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lead-icon {
    width: 70px;
    height: 70px;
    background: #b043ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lead-icon i {
    font-size: 32px;
    color: #fff;
}

.lead-title {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
}

.lead-title span {
    /* color: #c178ff; */
    /* text: linear-gradient(90deg, #FF2D91, #A06BFF); */
    background: linear-gradient(90deg, #FF2D91, #A06BFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead-text {
    color: #d3cce9;
    font-size: 14px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 576px) {
    .lead-title {
        font-size: 26px;
    }
    .lead-icon {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }
    .lead-icon i {
        font-size: 28px;
    }
}


.track-record-section {
    background: #030518; /* Same dark background */
}

.section-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
}

.section-title span {
    background: linear-gradient(90deg, #A06BFF,#FF2D91);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.track-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: .3s ease;
}

.track-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
}

.track-number {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #FF2D91, #A06BFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.track-text {
    font-size: 16px;
    margin: 0;
    color: #c5d4e0;
}




.core-values-section {
  background: #0d1117;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.core-title {
  font-size: 2.1rem;
  font-weight: 700;
}

.core-title span {
  background: linear-gradient(90deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.core-subtitle {
  color: #c7c7c7;
}

.value-card {
  background: #0f172a;
  border: 1px solid #8b5cf680;
  border-radius: 14px;
  transition: 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px #0f172a;
  border-color: #8b5cf680;
}

.icon-box {
  width: 48px;
  height: 48px;
  /* background: #a855f7; */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  font-size: 1.9rem;
  color: #fff;
}


.about-icon-box {
  width: 48px;
  height: 48px;
background: linear-gradient(148deg, #8a2be4, #bf439f);

  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  font-size: 1.9rem;
  color: #fff;
}

.value-title {
  font-weight: 600;
  font-size: larger;
  margin-bottom: 10px;
}

.value-text {
  color: #c7c7c7;
  font-size: 12px;
}



/* Section Background */
.commitment-section,
.cta-section {
  background: #0d1117;
  font-family: 'Inter', sans-serif;
}

/* Commitment Box */
.commit-box {
  background: #0f172a;
border: 1px solid #8b5cf680;
  border-radius: 16px;
  color: #fff;
}

/* Icon */
.commit-icon {
  width: 55px;
  height: 55px;
  background: #a855f7;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
}

/* Title Gradient */
.commit-title {
  font-weight: 700;
  font-size: 1.7rem;
}

.commit-title span {
  background: linear-gradient(90deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.commit-text {
  color: #d0d0d0;
  margin-bottom: 20px;
font-size: 14px;
}

/* List */
.commit-list {
  padding-left: 0;
font-size: 14px;

  list-style: none;
}

.commit-list li {
  color: #d0d0d0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.commit-list i {
  color: #a855f7;
  margin-right: 10px;
  font-size: 1.2rem;
}


/* CTA BOX */
.cta-box {
  background: linear-gradient(90deg, #220746, #1e063e);
  border-radius: 16px;
  color: #fff;
border: 1px solid #8b5cf680;

}

/* CTA Title */
.cta-title {
  font-weight: 700;
  font-size: 1.6rem;
}

.cta-title span {
  background: linear-gradient(90deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-subtitle {
  color: #d0d0d0;
}

/* Buttons */
.cta-btn {
  /* background: #a855f7; */
  background: linear-gradient(90deg, #a855f7, #ec4899);

  padding: 12px 28px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  opacity: 0.9;
  box-shadow:  1px 1px 11px #a855f7;

}

.cta-btn-outline {
  border: 2px solid #a855f7;
  padding: 12px 28px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn-outline:hover {
  background: #a855f7;
}


/* ===========================
   SuperVyral Legal Pages Theme
   =========================== */

/* PAGE BACKGROUND */
.legal-page-section {
    background: #050611;
    padding: 80px 0;
    color: #e3e3e3;
}

/* MAIN TITLE */
.legal-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #d946ef, #a855f7, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SUBTITLE DATE */
.legal-date {
    text-align: center;
    opacity: 0.7;
    font-size: 15px;
    margin-bottom: 50px;
}

/* CONTENT CARD */
.legal-card {
    background: linear-gradient(135deg, rgba(69, 8, 121, 0.35), rgba(38, 8, 88, 0.35));
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 35px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

/* HEADINGS INSIDE CONTENT */
.legal-card h3 {
    color: #ffffff;
    margin-top: 35px;
    font-weight: 700;
    font-size: 22px;
}

/* PARAGRAPH TEXT */
.legal-card p {
    color: #d4d4d4;
    font-size: 16px;
    line-height: 1.8;
    margin-top: 10px;
}

/* LISTS */
.legal-card ul {
    padding-left: 20px;
}

.legal-card ul li {
    margin-bottom: 8px;
    color: #cfcfcf;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .legal-title {
        font-size: 32px;
    }
    .legal-card {
        padding: 28px 25px;
    }
}
