:root {
    --bg-dark: #120a23;
    --bg-deep: #1a1030;
    --bg-soft: #f6f5f8;
    --surface: #ffffff;
    --surface-alt: #f7f4ff;
    --primary: #633c6f;
    --text-light: #fff;
    --text-dark: #1f1834;
    --primary-dark: #3e295a;
    --secondary: #34b4ff;
    --accent: #fcb32c;
    --text-strong: #1f1834;
    --text-muted: #6f6887;
    --border: #e4def5;
    --shadow: 0 24px 60px rgba(125, 102, 175, 0.671);
    --glass: rgba(255, 255, 255, 0.92);
    --glow: 0 20px 60px rgba(109, 77, 230, 0.18);
    --radius-lg: 28px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-strong);
    background: var(--bg-soft);
    /* padding-top: 80px; */
}

h1, h2, h3, h4 {
    font-family: 'Sora', sans-serif;
    margin: 0 0 16px;
}

p {
    margin: 0 0 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.page {
    overflow: hidden;
    background: linear-gradient(180deg, rgba(18, 10, 35, 0), var(--bg-soft));
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(90, 41, 122, 0.92);
    box-shadow: 0 2px 10px rgba(130, 85, 139, 0.719);

}

.site-header .nav-wrap {
    transition: all 0.3s ease;
}
 /* DESKTOP NAV */
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .nav-menu li {
        list-style: none;
    }

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0;
    color: #fff;
    gap: 20px;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}


.brand-title {
    font-weight: 700;
    font-size: 18px;
}

.brand-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.nav {
    display: flex;
    gap: 24px;
    font-weight: 400;
}

.nav a {
    color: rgba(255, 255, 255, 0.8);
}

.nav a:hover {
    color: #fff;
}

.nav-actions {
    display: flex;
    gap: 5px 12px;
    align-items: center;
    padding: 6px 12px;

}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 15px 12px;
    border-radius: 5px;
    cursor: pointer;
}

.hamburger {
    width: 22px;
    height: 2px;
    background: #fff;
    position: relative;
}

/* GLOBAL FIX */
/* ===================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ===================================== */
/* Mega Menu */
/* ===================================== */
  /* Hover */
    .tab-btn:hover:not(.active) {
        background-color: #756f36;
        color: #fff;
    }

    /* Dropdown container & animation */
    .has-mega-menu {
        position: static;
    }

    .has-mega-menu .mega-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #2f2140;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 998;
    }

    .has-mega-menu.active .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Replace grid with flex to get tabs + content layout */
    .mega-menu-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        padding: 3rem 2rem;
        gap: 2rem;
        min-height: 400px;
        /* Optional: control dropdown height */
        background: #3b2a5f;
        /* To visually separate */
        border-radius: 12px;
        overflow: hidden;
    }

    /* Left tabs container */
    .mega-menu-tabs {
        width: 250px;
        /* Fixed width for tabs */
        background: #583d87;
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        border-radius: 12px;
    }

    /* Tab button styles using existing mega-title-card */
    .tab-btn {
        background: linear-gradient(135deg, #583b63, #804f80);
        color: #fff;
        font-weight: 700;
        font-size: 18px;
        padding: 10px 15px;
        border-radius: 16px;
        cursor: pointer;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        display: flex;
        align-items: center;
        gap: 12px;
        border: none;
        transition: all 0.3s ease;
        text-align: left;
        -webkit-user-select: none;
        user-select: none;
    }

    .tab-btn i {
        font-size: 22px;
        color: #ffcc00;
    }

    .tab-btn:hover {
        background: linear-gradient(135deg, #ffc107, #ff9800);
        color: #fff;
        transform: translateY(-2px);
    }

    /* Active tab highlight */
    .tab-btn.active {
        background: linear-gradient(135deg, #ffc107, #ff9800);
        color: #fff;
        transform: translateY(-2px);
    }

    /* Right content container fills rest of space */
    .mega-menu-content {
        flex: 1;
        background: #ffffff;
        padding: 30px 40px;
        color: #210029;
        border-radius: 12px;
        overflow-y: auto;
        max-height: 400px;
    }

    /* Hide all content by default */
    .tab-content {
        display: none;
    }

    /* Show only active content */
    .tab-content.active {
        display: block;
    }

    /* List styles */
    .mega-menu-content ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

    .mega-menu-content ul li {
        margin-bottom: 14px;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mega-menu-content ul li span {
        color: #d3b65b;
    }

    /* Responsive adjustments */
    @media (max-width: 1200px) {
        .mega-menu-inner {
            flex-direction: column;
            padding: 2rem 1rem;
        }

        .mega-menu-tabs {
            width: 100%;
            flex-direction: row;
            gap: 0.5rem;
            overflow-x: auto;
            padding: 10px 5px;
        }

        .tab-btn {
            flex: 1 0 auto;
            font-size: 14px;
            justify-content: center;
            border-radius: 12px;
            padding: 8px 10px;
        }

        .mega-menu-content {
            max-height: none;
            padding: 20px 15px;
            border-radius: 0 0 12px 12px;
        }
    }

    .features-wrapper ul {
        flex: 2;
        max-height: 400px;
        overflow-y: auto;
        padding-right: 10px;
        margin: 0;
        list-style: none;
        color: #fff;
        /* Adjust if needed */
    }

    /* Responsive: stack vertically on small screens */
    @media (max-width: 768px) {
        .features-wrapper {
            flex-direction: column;
        }

        .feature-image {
            margin-top: 20px;
            max-width: 100%;
        }
    }

    @media (max-width: 1024px) {

        /* Mobile Nav Container */
        .nav {
            position: fixed;
            top: 80px;
            /* Adjust to your header height */
            left: 0;
            width: 100%;
            height: calc(100vh - 80px);
            background: #30163f;
            display: none;
            flex-direction: column;
            overflow-y: auto;
            z-index: 999;
        }

        .nav.active {
            display: flex;
        }

        /* Nav Menu */
        .nav-menu {
            display: flex;
            flex-direction: column;
            width: 100%;
            gap: 0;
        }

        .nav-menu li {
            width: 100%;
        }

        .nav-menu li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            /* width: 100%; */
        }

        /* Mega menu becomes accordion */
        .has-mega-menu .mega-menu {
            position: static;
            width: 100%;
            display: none;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            background: #342535;
        }

        .has-mega-menu.active .mega-menu {
            display: block;
            border-radius: 5px;
        }

        /* STACK COLUMNS PROPERLY */
        .mega-menu-inner {
            display: grid;
            grid-template-columns: 1fr;
            padding: 1rem;
            gap: 1rem;
        }

        .mega-menu-column {
            width: 100%;
            padding: 0;
        }

        .mega-menu-column ul li {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0.5rem 0;
        }

        .mega-menu-column ul li span {
            min-width: 20px;
            text-align: center;
            color: #ffcc00;
        }

        /* Dropdown arrow animation */
        .dropdown-icon {
            transition: transform 0.3s ease;
        }

        .has-mega-menu.active .dropdown-icon {
            transform: rotate(180deg);
        }

        /* Adjust card */
        .mega-title-card {
            width: 100%;
            justify-content: center;
            padding: 12px 16px;
            font-size: 16px;
            gap: 10px;
        }

        .mega-title-card i {
            font-size: 18px;
        }
    }

    /* Main wrapper: side-by-side on desktop, stacked on mobile */
    .features-wrapper {
        display: flex;
        gap: 40px;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    /* Features list: stacked items */
    .features-list {
        flex: 2;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* Each feature item with image + text */
    .feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .feature-list-image {
        width: 60px;
        height: 40px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    /* Right-side main image + button */
    .feature-image {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .feature-image img {
        max-width: 100%;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .btn-outline {
        display: inline-block;
        padding: 10px 24px;
        border: 2px solid #ff9800;
        color: #ff9800;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: background-color 0.3s ease, color 0.3s ease;
        cursor: pointer;
    }

    .btn-learn-more {
        display: inline-block;
        padding: 10px 24px;
        border: 2px solid #ffd500;
        color: #fefefe;
        background: #301d51;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: background-color 0.3s ease, color 0.3s ease;
        cursor: pointer;
        margin-top: 60px;
    }

    .btn-outline:hover,
    .btn-outline:focus {
        background-color: #ff9800;
        color: #fff;
    }

    /* Responsive adjustments: stack vertically on smaller screens */
    @media (max-width: 768px) {
        .features-wrapper {
            flex-direction: column;
        }

        .feature-image {
            align-items: center;
        }
    }
/* Mega Menu =============End */

    /* ============================= */
    /* HAMBURGER BUTTON */
    /* ============================= */

    .nav-toggle {
        display: none;
        width: 32px;
        height: 24px;
        position: relative;
        cursor: pointer;
        background: none;
        border: none;
        z-index: 1001;
    }

    /* Base line style */
    .hamburger,
    .hamburger::before,
    .hamburger::after {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        transition: 0.3s ease;
        content: "";
    }

    /* Middle */
    .hamburger {
        top: 50%;
        transform: translateY(-50%);
    }

    /* Top */
    .hamburger::before {
        top: -8px;
    }

    /* Bottom */
    .hamburger::after {
        top: 8px;
    }

    /* ACTIVE (X ANIMATION) */
    /* ============================= */

    .nav-toggle.active .hamburger {
        background: transparent;
    }

    .nav-toggle.active .hamburger::before {
        top: 0;
        transform: rotate(45deg);
    }

    .nav-toggle.active .hamburger::after {
        top: 0;
        transform: rotate(-45deg);
    }

    /* Show only mobile */
    @media (max-width: 1024px) {
        .nav-toggle {
            display: block;
        }
    }

    /* Dropdown product toggle icon rotation */
    .dropdown-icon {
        font-size: 12px;
        margin-left: 6px;
        transition: 0.3s;
    }

    .has-mega-menu.active .dropdown-icon {
        transform: rotate(180deg);
    }

    .vl[data-v-c2c175e3] {
        margin: 0 1px;
        border-left: #f9f9f6 solid 1px;
        height: 30px;
        align-self: center;
        z-index: 1000;
    }

    @media (max-width: 1024px) {
        .vl[data-v-c2c175e3] {
            display: none;
        }
    }

/* help button styles */
.help-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.877);
    background: linear-gradient(135deg, #ffcd42, #a27003, rgb(247, 152, 0));
    background-size: 200% 200%;
    animation: gradientMove 4s ease infinite;
    box-shadow: 0 8px 20px rgba(206, 146, 228, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Floating subtle animation */
.help-btn {
    animation: float 3s ease-in-out infinite, gradientMove 4s ease infinite;
}

/* Icon circle */
.help-icon {
    background: rgba(106, 1, 133, 0.61);
    padding: 6px 10px;
    border-radius: 50%;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* Hover effects */
.help-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(118, 75, 162, 0.6);
}

.help-btn:hover .help-icon {
    transform: rotate(15deg) scale(1.2);
    background: rgba(235, 157, 1, 0.849);
}

/* Glow pulse effect */
.help-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, #c880ef, #5e67cf);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.help-btn:hover::after {
    opacity: 0.4;
    filter: blur(12px);
}
.help-text {
    display: inline-block;
    font:100% 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
}
@media (max-width: 600px) {
    .help-btn {
        padding: 8px 10px;
        font-size: 14px;
        display: start;
    }
    .help-icon {
        padding: 5px 8px;
    }
}

/* Animations */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}
@media (max-width: 900px) {
    .nav {
        display: none;
    }


    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .cta-card {
        padding: 28px;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 10px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 12px 30px rgba(129, 87, 145, 0.63);
}

@media (max-width: 600px) {
    .btn {
        padding: 8px 12px;
        font-size: 14px;

    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #9a7bff);
    color: #fff;
    box-shadow: 0 20px 60px rgba(193, 149, 238, 0.685);
    border-radius: 15px;
    gap: 10px;
    padding: 8px 15px ;
}

@media (max-width: 600px) {
    .btn-primary {
        padding: 8px 12px;
        font-size: 14px;
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.btn-light {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text-strong);
}

.pill {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(158, 133, 249, 0.236);
    color: var(--text-light);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 16px;
}


.hero {
    position: relative;
    color: #fff;
    background: radial-gradient(circle at 20% 20%, rgb(42, 29, 58), transparent 45%),
        radial-gradient(circle at 90% 10%, rgb(85, 60, 94), transparent 45%),
        linear-gradient(140deg, var(--bg-dark), var(--bg-deep));
    padding: 50px 0 80px;
}

.hero-gradient {
    position: absolute;
    bottom: -120px;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(18, 10, 35, 0), var(--bg-soft));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Desktop: 2 columns */
    gap: 48px;
    margin-top: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}
/* Hero page visual */
.hero-visual {
    display: flex;
    justify-content: end;
}

/* Mobile */

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-top: 60px;
    }

    /* Bring image to top */
    .hero-visual {
        grid-row: 1;   /* Put image first */
    }

    .hero-copy {
        grid-row: 2;   /* Put text second */
    }
}



.hero-copy h1 {
    font-size: clamp(2.4rem, 3vw + 1.5rem, 3.5rem);
    color: #fff;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
}

.hero-body {
    color: rgba(255, 255, 255, 0.7);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: 24px;
    align-items: center;
    gap: 15px;

}
.hero-btn-group {
    display: flex;
    gap: 15px;
    }

@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-btn-group {
    width: 100%;
    justify-content: space-between; /* keeps both buttons in one row */
    }

    .hero-btn-group .btn {
    flex: 1; /* make both equal width */
    text-align: center;
    }
    .trust-item {
    margin-top: 10px; /* pushes Google below */
    }


}

/* Google badges Hero page */
    .trust-badges {
        display: flex;
        gap: 20px;
        padding: 20px 0;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 10px;
        border: 1px solid #ddd;
        border-radius: 20px;
        padding: 7px 15px;
        background-color: #fff;
        text-decoration: none;
        color: inherit;
        transition: box-shadow 0.3s ease;
        justify-content: center;
    }

    .badge-logo {
        width: 40px;
        height: auto;
    }

    .badge-info {
        display: flex;
        flex-direction: column;
        font-family: "Arial", sans-serif;
        font-size: 14px;
        display: flex;
        flex-direction: column;
    }

    .badge-rating {
        font-weight: bold;
        margin-bottom: 4px;
        color: #333;
    }

    .stars {
        color: #ffc107;
        /* Gold/yellow stars */
        font-size: 16px;
        letter-spacing: 1px;
        line-height: 1;
        color: #ffc107;
        /* gold */
        font-style: normal;
        font-size: 16px;
    }

    .trust-item:hover {
        box-shadow: 0 4px 10px rgba(159, 106, 171);
    }

    @media (max-width: 600px) {
        .trust-badges {
            flex-direction: column;
            align-items: center;
        }

        .trust-item {
            width: 100%;
            justify-content: center;
        }
    }


    .free-account {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
    background: #673164;
}

.btn-create {
    background:#e69500;
}

/* Input */
.free-account input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-size: 16px;
    outline: none;
}

/* Button */
.free-account button {
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    font-size: 16px;
}
    .btn-create:hover {
        background-color: #6f4f84;
    }


     /* Responsive */
@media (max-width: 576px) {
    .free-account {
        flex-direction: column;
        border-radius: 16px;
    }

    .free-account input,
    .free-account button {
        width: 100%;
        border-radius: 0;
    }

    .free-account button {
        margin-top: 10px;
    }
}

/*hero-visual mobile responsive*/

@media (max-width: 900px) {
    .hero-visual {
        justify-content: center;
    }
    .hero-visual {
        order: -1; /* Device appears first */
        margin-bottom: 24px;
    }
}
@media (max-width:768px) {
    .hero-visual {
        justify-content: center;
    }
    .hero-visual {
        order: -1; /* Device appears first */
        margin-bottom: 24px;
    }
}
@media (max-width: 900px) {
    .hero-copy {
        justify-content: center;
    }
    .hero-copy {
        order: -1; /* Device appears first */
        margin-bottom: 24px;
    }
}
@media (max-width:768px) {
    .hero-copy {
        justify-content: center;
    }
    .hero-copy {
        order: -1; /* Device appears first */
        margin-bottom: 24px;
    }
}

.device {
    width: min(420px, 90vw);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    padding: 18px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.12);
    /* box-shadow: 0 30px 80px #e5bbf3f3; */
}

.device-screen {
    background: #fff;
    border-radius: 28px;
    padding: 25px;
    color: var(--text-strong);
}

.device-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin-bottom: 16px;
}

.device-pill {
    background: rgba(52, 180, 255, 0.15);
    color: var(--secondary);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
}

.device-grid {
    display: grid;
    gap: 12px;
}

.device-card {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(110, 77, 230, 0.08);
    border: 1px solid rgba(110, 77, 230, 0.1);
}

.device-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--card, #6d4de6);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
}

.device-title {
    font-weight: 600;
}

.device-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.device-footer {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
}

.section-head {
    text-align: center;
    margin-bottom: 36px;
}

.section-head h2 {
    font-size: clamp(1.8rem, 2vw + 1rem, 2.6rem);
}

.section-head p {
    max-width: 720px;
    margin: 0 auto;
}

.stats {
    padding: 90px 0 70px;
}

.page-hero {
    padding: 110px 0 60px;
    background: linear-gradient(135deg, rgba(109, 77, 230, 0.12), rgba(52, 180, 255, 0.1));
}

.page-hero h1 {
    font-size: clamp(2.2rem, 2.5vw + 1.2rem, 3.2rem);
    margin-bottom: 10px;
}

.service-detail {
    padding: 50px 0 80px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: start;
}

.service-detail-card,
.service-feature-card {
    background: #fff;
    border-radius: 22px;
    padding: 26px;
    border: 1px solid var(--border);
    box-shadow: 0 18px 40px rgba(50, 34, 94, 0.08);
}

.service-feature-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 10px;
}
/*--------*/
.service-detail-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 10px;
}

.service-detail-card li::before {
    content: '✓';
    color: var(--primary);
    margin-right: 8px;
}

/*----*/

.service-feature-card li::before {
    content: '✓';
    color: var(--primary);
    margin-right: 8px;
}

.service-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}

.stat-card {
    background: #fff;
    padding: 20px 24px;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(50, 34, 94, 0.08);
    text-align: center;
    border: 1px solid rgba(109, 77, 230, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #c06d01;
}

.stat-value span {
    color: var(--accent);
    font-size: 18px;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* important if cards are in a grid */
    background: linear-gradient(180deg, rgba(204, 186, 207, 0.96), #fff);
    padding: 26px;
    position: relative;
    z-index: 1;
    border-radius: 22px;
    box-shadow: 0 22px 60px rgba(50, 34, 94, 0.12);
    overflow: hidden;
    border: 1px solid rgba(109, 77, 230, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;

}
.benefit-icon {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(250, 247, 252, 0.918), rgba(112, 79, 129, 0.932));
    color: var(--primary-dark);
    display: grid;
    place-items: center;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 12px 26px rgba(110, 77, 230, 0.459);
}
.benefit-card i{
    font-size: 50px;
    color: #3b007e;

}

.benefit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(109, 77, 230, 0.12), transparent 55%);
    opacity: 0.8;
}


.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glow);
}


.link {
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(109, 77, 230, 0.1);
    margin-top: auto; /* 👈 pushes it to bottom */
    align-self: flex-start; /* optional: keeps it left aligned */
}


.tag {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(109, 76, 116, 0.712);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    margin-top: auto; /* 👈 pushes it to bottom */
    align-self: flex-start; /* optional: keeps it left aligned */
}

.services {
    padding: 60px 0;
    background: radial-gradient(circle at 10% 10%, rgba(109, 77, 230, 0.08), transparent 45%),
        radial-gradient(circle at 90% 20%, rgba(52, 180, 255, 0.08), transparent 45%),
        var(--surface-alt);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.service-card {
    border-radius: 26px;
    padding: 26px;
    border: 1px solid transparent;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(140deg, rgba(109, 77, 230, 0.35), rgba(52, 180, 255, 0.25), rgba(255, 255, 255, 0)) border-box;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(31, 24, 52, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-direction: column;
    display: flex;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(109, 77, 230, 0.12), transparent 55%);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 44px;
    border-radius: 14px;
    background: var(--service-color, #6d4de6);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 14px 30px rgba(109, 77, 230, 0.35);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.service-card p {
    color: var(--text-muted);
    min-height: 48px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px;
    display: grid;
    gap: 8px;
    color: var(--text-muted);
}

.service-card li::before {
    content: '✓';
    color: var(--primary);
    margin-right: 8px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(31, 24, 52, 0.18);
}

/* Spotlight section */

.spotlight {
        padding: 110px 0;
        background: linear-gradient(135deg, #0c0113, #8264af);
        color: #fff;
    }

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 80px;
    align-items: center;
}
/* .spotlight-grid {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 80px;
        align-items: center;
    } */

.spotlight-list {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.spotlight-item {
    background: #fff;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 28px rgba(31, 24, 52, 0.08);
}

.spotlight-item span {
    font-weight: 600;
}

.spotlight-panel {
    background: linear-gradient(135deg, rgba(184, 170, 234, 0.88), rgba(52, 180, 255, 0.15));
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(109, 77, 230, 0.2);
    box-shadow: 0 18px 40px rgba(31, 24, 52, 0.12);
}

.spotlight-panel ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
    display: grid;
    gap: 10px;
}

.spotlight-panel li::before {
    content: '•';
    color: var(--primary);
    margin-right: 8px;
}

/* FAQ Section */
/* FAQ Section - Full Width */

/* SECTION */
/* .faq-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
} */

.faq { padding: 80px 0;
    background: var(--surface-alt); width: 100vw; margin-left: calc(50% - 50vw); /* Break out of container */
 }
/* GRID */
/* FAQ Grid */
.faq-grid {
    column-count: 2;
    column-gap: 30px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-grid {
        column-count: 1;
    }
}

/* FAQ Card */
.faq-card {
    break-inside: avoid;
    margin-bottom: 20px;
}

/* FAQ details */
.faq-card details {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border, #ccc);
    padding: 16px 20px;
    transition: border-color 0.55s ease, background 0.25s ease;
    overflow: hidden; /* needed for smooth height animation */
}

/* Hover effect */
.faq-card details:hover {
    border-color: rgba(109, 77, 230, 0.3);
}

/* Summary */
.faq-card summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 24px;
    font-size: 15px;
}

/* Remove default marker */
.faq-card summary::-webkit-details-marker {
    display: none;
}

/* Custom icon */
.faq-card summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.55s ease;
}

/* Open state icon */
.faq-card details[open] summary::after {
    content: "–";
    transform: rotate(180deg);
}

/* Open state background/border */
.faq-card details[open] {
    background: #faf9ff;
    border-color: rgba(109, 77, 230, 0.4);
}

/* Answer text */
.faq-card details p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary, #555);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease; /* slower */
}

/* Open state for answer */
.faq-card details[open] p {
    max-height: 500px; /* enough for most content */
    opacity: 1;
}

/* faq section end  */

.cta {
    padding: 80px 0 110px;
}

/* cta card download apps */
.cta-card {
    background: linear-gradient(135deg, #1b1232, #361c69);
    color: #fff;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 26px 60px rgba(20, 10, 40, 0.4);
    display: grid;
    grid-template-columns: 1fr auto; /* text left, buttons right */
    gap: 24px;
    align-items: center;
}
@media (max-width: 768px) {
    .cta-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }
}


/* .cta-card {
    background: linear-gradient(90deg, #111, #1c1c1c);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


.cta-card {
    background: linear-gradient(135deg, #1b1232, #361c69);
    color: #fff;
    padding: 40px;
    border-radius: 32px;
    display: grid;
    gap: 24px;
    align-items: center;
    box-shadow: 0 26px 60px rgba(20, 10, 40, 0.4);
} */

.cta-card p {
    color: rgba(255, 255, 255, 0.75);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.store-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.store-badge {
    height: 50px;
    transition: transform 0.3s ease;
}

.store-badge:hover {
    transform: scale(1.05);
}


/* Footer */

.footer {
    background: #140a28;
    color: #fff;
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.footer-grid a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-meta {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-form {
    display: flex;
    gap: 8px;
    margin: 16px 0;
}

.footer-form input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 999px;
    border: none;
}

.footer-form button {
    padding: 10px 16px;
    border-radius: 999px;
    border: none;
    background: var(--accent);
    font-weight: 600;
}

.socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
}
 .socials {
    display: flex;
    gap: 12px;
    }

    .socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: 0.3s ease;
    text-decoration: none;
    }

    /* Brand Colors */
    .socials a.linkedin { background: #0077b5; }
    .socials a.facebook { background: #1877f2; }
    .socials a.instagram {
    background: radial-gradient(circle at 30% 107%,
    #fdf497 0%, #fdf497 5%,
    #fd5949 45%, #d6249f 60%,
    #285AEB 90%);
    }
    .socials a.youtube { background: #ff0000; }

    .socials a:hover {
    transform: scale(1.1);
    opacity: 0.9;
    }

    @media (max-width: 768px) {
    .socials {
        justify-content: center;
    }
    }
    .socials a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
img.brand-logo {
    margin-top: 5px;
}
.footer-bottom {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-links {
    display: flex;
    gap: 16px;
}
@media (max-width: 900px) {
    .footer-bottom {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero {
        padding-top: 80px;
    }

    .hero-actions {
        flex-direction: column;
        display: flex;
    }

    /* .btn {
        width: 100%;
    } */

    .footer-form {
        flex-direction: column;
    }

    .footer-form button {
        width: 100%;
    }
}

.pricing-section {
        padding: 100px 20px;
        background: radial-gradient(circle at 10% 10%, rgba(109, 77, 230, 0.08), transparent 45%), radial-gradient(circle at 90% 20%, rgba(52, 180, 255, 0.08), transparent 45%), var(--surface-alt);
        font-family: 'Inter', sans-serif;
    }

    .pricing-container {
        max-width: 1200px;
        margin: auto;
        text-align: center;
    }


    .pricing-header h2 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .pricing-header p {
        color: #6b7280;
        margin-bottom: 30px;
    }



    .save-badge {
        background: #16a34a;
        color: #fff;
        padding: 2px 6px;
        border-radius: 6px;
        font-size: 11px;
    }

    /* Toggle Switch */
    .switch {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 26px;
    }

    .switch input {
        display: none;
    }

    .slider {
        position: absolute;
        cursor: pointer;
        background-color: #d1d5db;
        border-radius: 34px;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transition: .4s;
    }

    .slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 3px;
        bottom: 3px;
        background: white;
        border-radius: 50%;
        transition: .4s;
    }

    input:checked+.slider {
        background-color: #4f46e5;
    }

    input:checked+.slider:before {
        transform: translateX(24px);
    }

    /* Grid */
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    /* Cards */
    .pricing-card {
        background: #fff;
        padding: 40px 30px;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
    }

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    }

    .pricing-card h3 {
        margin-bottom: 20px;
        font-size: 22px;
    }

    .price {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .per {
        font-size: 16px;
        color: #6b7280;
    }

    .pricing-card ul {
        list-style: none;
        padding: 0;
        margin: 20px 0 30px;
        text-align: left;
    }

    .pricing-card ul li {
        margin-bottom: 12px;
        color: #374151;
        font-size: 14px;
    }

    /* Popular Card */
    .popular {
        border: 2px solid #4f46e5;
        transform: scale(1.05);
    }

    .popular-badge {
        position: absolute;
        top: -12px;
        right: 20px;
        background: #4f46e5;
        color: #fff;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
    }

    /* Buttons */
    .btn-primary {
        display: inline-block;
        padding: 12px 24px;
        background: #4f46e5;
        color: #fff;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
    }

    .btn-primary:hover {
        background: #4338ca;
    }

    .btn-outline {
        display: inline-block;
        padding: 12px 24px;
        border: 2px solid #4f46e5;
        color: #4f46e5;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
    }

    .btn-outline:hover {
        background: #4f46e5;
        color: #fff;
    }

    @media(max-width: 768px) {
        .popular {
            transform: scale(1);
        }
    }

    /* Custom SVG Divider */
    .custom-shape-divider-bottom-1751132448 {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        transform: rotate(180deg);
    }

    .custom-shape-divider-bottom-1751132448 svg {
        position: relative;
        display: block;
        width: calc(128% + 1.3px);
        height: 75px;
        transform: rotateY(180deg);
    }

    .custom-shape-divider-bottom-1751132448 .shape-fill {
        fill: #23063cc7;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .custom-shape-divider-bottom-1751132448 svg {
            height: 50px;
        }
    }

    /* pricing section   */

    .pricing-section {
        padding: 60px 20px;
        background: radial-gradient(circle at 10% 10%, rgba(109, 77, 230, 0.08), transparent 45%), radial-gradient(circle at 90% 20%, rgba(52, 180, 255, 0.08), transparent 45%), var(--surface-alt);
        font-family: 'Inter', sans-serif;
    }

    .pricing-container {
        max-width: 1200px;
        margin: auto;
        text-align: center;
    }


    .pricing-header h2 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .pricing-header p {
        color: #6b7280;
        margin-bottom: 30px;
    }


    .billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 2vw, 12px);
    margin-bottom: clamp(30px, 6vw, 60px);
    flex-wrap: wrap; /* Prevents overflow on smaller screens */
    text-align: center;
}
/* Tablet */
@media (max-width: 992px) {
    .billing-toggle {
        gap: 10px;
        margin-bottom: 40px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .billing-toggle {
        flex-direction: column; /* Stack items vertically */
        gap: 8px;
        margin-bottom: 30px;
    }
}


    .save-badge {
        background: #16a34a;
        color: #fff;
        padding: 2px 6px;
        border-radius: 6px;
        font-size: 11px;
    }

    /* Toggle Switch */
    .switch {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 26px;
    }

    .switch input {
        display: none;
    }

    .slider {
        position: absolute;
        cursor: pointer;
        background-color: #d1d5db;
        border-radius: 34px;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transition: .4s;
    }

    .slider:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 3px;
        bottom: 3px;
        background: white;
        border-radius: 50%;
        transition: .4s;
    }

    input:checked+.slider {
        background-color: #4f46e5;
    }

    input:checked+.slider:before {
        transform: translateX(24px);
    }

    /* Grid */
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    /* Cards */
    .pricing-card {
        background: #fff;
        padding: 40px 30px;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
    }

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    }

    .pricing-card h3 {
        margin-bottom: 20px;
        font-size: 22px;
    }

    .price {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .per {
        font-size: 16px;
        color: #6b7280;
    }

    .pricing-card ul {
        list-style: none;
        padding: 0;
        margin: 20px 0 30px;
        text-align: left;
    }

    .pricing-card ul li {
        margin-bottom: 12px;
        color: #374151;
        font-size: 14px;
    }

    /* Popular Card */
    .popular {
        border: 2px solid #4f46e5;
        transform: scale(1.05);
    }

    .popular-badge {
        position: absolute;
        top: -12px;
        right: 20px;
        background: #4f46e5;
        color: #fff;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
    }

    /* Buttons */
    .btn-primary {
        display: inline-block;
        padding: 18px 24px;
        background: #4f46e5;
        color: #fff;
        border-radius: 15px;
        text-decoration: none;
        font-weight: 900;
        transition: 0.3s;
    }

    .btn-primary:hover {
        background: #d4a30f;
    }

    .btn-outline {
        display: inline-block;
        padding: 12px 24px;
        border: 2px solid #4f46e5;
        color: #4f46e5;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        transition: 0.3s;
    }

    .btn-outline:hover {
        background: #4f46e5;
        color: #fff;
    }

    @media(max-width: 768px) {
        .popular {
            transform: scale(1);
        }
    }

    /* Spotlight section */
    /* SECTION */




    /* LEFT CONTENT */


    .spotlight-content h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .spotlight-sub {
        color: #cbd5e1;
        margin-bottom: 40px;
        font-size: 17px;
        line-height: 1.6;
    }

    /* BENEFITS */
    .benefit-item {
        display: flex;
        gap: 15px;
        margin-bottom: 25px;
    }

    .check {
        background: linear-gradient(135deg, #fff6ff, #dccefb);
        width: 28px;
        height: 28px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }

    .benefit-item h4 {
        margin: 0;
        font-size: 18px;
    }

    .benefit-item p {
        margin: 5px 0 0;
        color: #cbd5e1;
        font-size: 14px;
    }

    /* BUTTON */
    .btn-primary-modern {
        display: inline-block;
        margin-top: 30px;
        background: linear-gradient(135deg, #6366f1, #4f46e5);
        padding: 14px 28px;
        border-radius: 12px;
        text-decoration: none;
        color: #fff;
        font-weight: 600;
        transition: 0.3s;
    }

    .btn-primary-modern:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
    }

    /* GRAPH CARD */
    .graph-card {
        background: #ffffff;
        color: #111827;
        border-radius: 20px;
        padding: 35px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
        position: relative;
    }

    .graph-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .graph-growth {
        background: #ecfdf5;
        color: #059669;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 13px;
    }

    /* GRAPH AREA */
    .graph {
        position: relative;
        height: 220px;
        background: linear-gradient(to top, #eef2ff, #ffffff);
        border-radius: 12px;
        overflow: hidden;
    }

    /* Fake graph line */
    .line {
        position: absolute;
        bottom: 30px;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(to right, #6366f1, #8b5cf6);
        transform: skewY(-8deg);
    }

    /* FLOATING STATS */
    .stat-badge {
        position: absolute;
        background: #fff;
        padding: 12px 16px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .stat-badge strong {
        display: block;
        font-size: 18px;
    }

    .stat-badge span {
        font-size: 12px;
        color: #6b7280;
    }

    .badge-1 {
        top: 40px;
        left: 30px;
    }

    .badge-2 {
        top: 80px;
        right: 40px;
    }

    .badge-3 {
        bottom: 20px;
        left: 90px;
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
        .spotlight-grid {
            grid-template-columns: 1fr;
        }
    }

    /* End of spotlight section */

       /* =========================
   SERVICE IMAGE SECTION
========================= */

.service-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 40px 20px;
}
.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 70px;
    flex-wrap: wrap;
    background:#e4d9e7;
    border-radius:15px;
    padding: 15px;

}

.service-feature .service-content {
    flex: 1; /* smaller */
}

/* .service-feature .service-image {
    flex: 1.5;
} */

/* Background glow */
.service-image::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79,70,229,0.25) 0%, rgba(37,99,235,0.15) 40%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

/* Wrapper */
.screens-wrapper {
    position: relative;
    width: 100%;
    /* max-width: 520px; */
    perspective: 1200px;
    z-index: 1;
}

/* Base screen style */
.screen {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.screen img {
    width: 100%;
    display: block;
    border-radius: 18px;
}

/* Back screen (slightly rotated + smaller) */
.screen-back {
    position: absolute;
    top: 30px;
    left: -30px;
    width: 90%;
    transform: rotate(-6deg) scale(0.95);
    opacity: 0.85;
    filter: brightness(0.95);
}

/* Front screen */
.screen-front {
    position: relative;
    width: 100%;
    transform: rotate(3deg);
}

/* Hover effect */
.screens-wrapper:hover .screen-front {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}

.screens-wrapper:hover .screen-back {
    transform: rotate(-3deg) scale(1);
    opacity: 1;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
    .screens-wrapper {
        max-width: 420px;
    }

    .screen-back {
        top: 20px;
        left: -20px;
    }
}

@media (max-width: 640px) {
    .screens-wrapper {
        max-width: 100%;
    }

    .screen-back {
        display: none; /* cleaner look on mobile */
    }

    .screen-front {
        transform: none;
    }
}


    .service-image img {
    width: 100%;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }

    .service-content {
    flex: 1;
    }

    /* .section-head {
    text-align: center;
    margin-bottom: 50px;
    } */

    .pill {
    display: inline-block;
    padding: 6px 14px;
    font-size: 14px;
    background: #e8f1ff;
    color: #2563eb;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
    }


/*cookie consent banner */
.cookie-wrapper {
            position: fixed;
            bottom: 20px;
            left: 0;
            right: 0;
            display: none;
            justify-content: center;
            z-index: 9999;
            animation: fadeInUp 0.6s ease forwards;
        }

        .cookie-card {
            width: 95%;
            max-width: 900px;
            background: rgba(17, 24, 39, 0.85);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            border-radius: 16px;
            padding: 24px 28px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #fff;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .cookie-text h4 {
            margin: 0 0 6px;
            font-size: 18px;
            font-weight: 600;
        }

        .cookie-text p {
            margin: 0;
            font-size: 14px;
            color: #d1d5db;
        }

        .cookie-text a {
            color: #60a5fa;
            text-decoration: none;
        }

        .cookie-text a:hover {
            text-decoration: underline;
        }

        .cookie-actions {
            display: flex;
            gap: 12px;
            margin-left: 20px;
        }


        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
        }

        .btn-secondary {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 10px 18px;
            color: #fff;
            border-radius: 8px;
            cursor: pointer;
            transition: 0.3s ease;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .cookie-card {
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }

            .cookie-actions {
                margin-left: 0;
            }
        }
