/* =====================================================
   CHAT AI - SALESMARTLY STYLE THEME (style.css)
   Complete file: theme + navbar + animations + components
===================================================== */

:root {
    --bg-dark: #070b19;
    --bg-card: rgba(255, 255, 255, 0.03);
    --primary: #0066ff;
    --primary-glow: rgba(0, 102, 255, 0.35);
    --secondary-accent: #6c5ce7;
    --success-green: #00ff88;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

p { color: var(--text-main); }
.text-muted { color: var(--text-muted) !important; opacity: 1; }

/* ================= NAVBAR ================= */
.saas-navbar {
    background: rgba(7, 11, 25, 0.85) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color) !important;
    padding: 14px 0;
    transition: 0.3s;
}
.saas-navbar.scrolled {
    background: rgba(7, 11, 25, 0.97) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary-accent));
    box-shadow: 0 0 25px var(--primary-glow);
}

.saas-navbar .nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    padding: 8px 14px !important;
    transition: 0.3s;
}
.saas-navbar .nav-link:hover,
.saas-navbar .nav-link.show {
    color: #ffffff !important;
}

.dropdown-menu {
    background: #0f1729;
    border: 1px solid var(--border-color) !important;
}
.dropdown-item {
    color: var(--text-muted) !important;
    transition: 0.2s;
}
.dropdown-item:hover {
    background: rgba(0, 102, 255, 0.1) !important;
    color: #ffffff !important;
}

.lang-btn {
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.client-login-link {
    color: var(--text-muted) !important;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: 0.2s;
}
.client-login-link:hover { color: #ffffff !important; }

.btn-free-trial {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 7px 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-free-trial:hover { background: var(--primary); color: #fff; }

.btn-book-demo {
    background: linear-gradient(135deg, var(--primary), var(--secondary-accent));
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 20px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}
.btn-book-demo:hover { opacity: 0.9; color: #fff; }

.saas-cta-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary-accent));
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 10px 30px var(--primary-glow);
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}
.saas-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.6);
    color: white;
}

.saas-outline-btn {
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.saas-outline-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

/* ================= HERO SECTION ================= */
.saas-hero {
    position: relative;
    background: radial-gradient(circle at 15% 20%, rgba(0, 102, 255, 0.18) 0%, transparent 40%),
                radial-gradient(circle at 85% 75%, rgba(108, 92, 231, 0.12) 0%, transparent 40%),
                var(--bg-dark);
    padding: 80px 0 120px;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #4da6ff;
}

.saas-hero h1 span {
    background: linear-gradient(90deg, #0066ff, #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.menu-btn{
    border:none;
    background:rgba(255,255,255,.15);
    width:48px;
    height:48px;
    border-radius:12px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    transition:all .35s ease;
}

.menu-btn:hover{
    background:#0d6efd;
    transform:scale(1.08);
}

.menu-btn:focus{
    box-shadow:none;
}

.menu-btn span{
    width:24px;
    height:2.5px;
    background:#fff;
    border-radius:20px;
    transition:all .35s ease;
}

/* Animation */
.menu-btn.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2){
    opacity:0;
    transform:scale(0);
}

.menu-btn.active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}

.accordion-item{
    background:transparent;
    border:none;
}

.accordion-button{
    background:transparent !important;
    color:#fff !important;
    font-size:18px;
    padding:22px 0;
    transition:.35s;
}

.accordion-button:hover{
    color:#4F8CFF !important;
    padding-left:10px;
}

.accordion-button:not(.collapsed){
    color:#4F8CFF !important;
    box-shadow:none;
}

.accordion-button:focus{
    box-shadow:none;
}

.accordion-button::after{
    filter:invert(1);
    transition:.35s;
}

.accordion-body{
    color:#cfd8dc;
    line-height:1.8;
    padding:0 0 22px 0;
}

.sales-card{
    position:relative;
    overflow:hidden;
    isolation:isolate;
}

/* Moving Glow */
.sales-card::before{
    content:"";
    position:absolute;
    inset:-2px;
    border-radius:22px;
    background:conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 260deg,
        rgba(0,255,255,.9) 290deg,
        rgba(0,132,255,.9) 320deg,
        transparent 360deg
    );

    animation:borderRotate 4s linear infinite;
    z-index:0;
}

.sales-card:hover{
    transform:translateY(-12px);
    border-color:#4F8CFF;
    box-shadow:0 20px 45px rgba(79,140,255,.25);
}

.sales-card:hover::before{
    opacity:1;
}

.sales-icon-box{
    width:70px;
    height:70px;
    border-radius:18px;
    background:linear-gradient(135deg,#4F8CFF,#7A5FFF);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    transition:.45s;
    position:relative;
    z-index:2;
}

.sales-icon-box i{
    color:#fff;
    font-size:30px;
    transition:.45s;
}

.sales-card:hover .sales-icon-box{
    transform:rotate(-10deg) scale(1.12);
    box-shadow:0 15px 35px rgba(79,140,255,.45);
}

.sales-card:hover .sales-icon-box i{
    transform:rotate(10deg);
}

.sales-card h4{
    position:relative;
    z-index:2;
    transition:.35s;
}

.sales-card p{
    position:relative;
    z-index:2;
    line-height:1.8;
    transition:.35s;
}

.sales-card:hover h4{
    color:#4F8CFF !important;
}

.sales-card:hover p{
    color:#d5d5d5 !important;
}

/* Shining Effect */
/* Card Background */
.sales-card::after{
    content:"";
    position:absolute;
    inset:1px;
    border-radius:20px;
    background:#121826;   /* apna card color */
    z-index:1;
}
/* Content Above */
.sales-card > *{
    position:relative;
    z-index:2;
}

@keyframes borderRotate{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
 


.hero-video-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(7,11,25,0.35) 0%, var(--bg-dark) 92%);
    z-index: 1;
}
.saas-hero .container { position: relative; z-index: 2; }

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: floatBlob 8s ease-in-out infinite;
    pointer-events: none;
}
.blob-1 { width: 320px; height: 320px; background: var(--primary-glow); top: -80px; left: -60px; }
.blob-2 { width: 280px; height: 280px; background: rgba(108, 92, 231, 0.25); bottom: -60px; right: -40px; animation-delay: 2s; }
@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

.live-dot {
    width: 8px; height: 8px;
    background: var(--success-green);
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 1.6s infinite;
}
@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(0,255,136,0.5); }
    70% { box-shadow: 0 0 0 8px rgba(0,255,136,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,255,136,0); }
}

/* ================= HERO DASHBOARD MOCKUP ================= */
.hero-dashboard-mockup {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(25px);
    border-radius: 24px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    position: relative;
}
.mockup-topbar {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mockup-dots { display: flex; gap: 8px; }
.mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }
.mockup-body { padding: 25px; }
.chat-preview-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
}

/* ================= LOGO MARQUEE ================= */
.logo-marquee-section { padding: 50px 0; background: #050814; overflow: hidden; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.logo-marquee { width: 100%; overflow: hidden; position: relative; }
.logo-marquee::before, .logo-marquee::after {
    content: ""; position: absolute; top: 0; height: 100%; width: 100px; z-index: 2;
}
.logo-marquee::before { left: 0; background: linear-gradient(90deg, #050814, transparent); }
.logo-marquee::after { right: 0; background: linear-gradient(270deg, #050814, transparent); }
.logo-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}
.logo-item-img {
    flex-shrink: 0;
    width: 140px;
    height: 70px;
    background: rgba(255,255,255,0.95);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    transition: 0.3s;
}
.logo-item-img:hover { transform: translateY(-4px); }
.logo-item-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ================= CHANNELS BADGES GRID ================= */
.channels-section { padding: 60px 0; background: var(--bg-dark); }
.channel-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 15px 25px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}
.channel-pill:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    background: rgba(0, 102, 255, 0.05);
}
.channel-icon { font-size: 26px; }

/* ================= GLASS FEATURE CARDS ================= */
.sales-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    transition: 0.4s;
    height: 100%;
    backdrop-filter: blur(20px);
}
.sales-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 25px 60px rgba(0, 102, 255, 0.1);
}
.sales-icon-box {
    width: 65px;
    height: 65px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
}

/* ================= FEATURE IMAGE CARDS ================= */
.feature-img-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.4s;
}
.feature-img-card:hover {
    border-color: rgba(0, 102, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 102, 255, 0.12);
}
.feature-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}
.feature-img-top {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* ================= SCROLL REVEAL ================= */
.ss-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.ss-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= TESTIMONIALS ================= */
.testimonial-section { background: var(--bg-dark); }
.testimonial-carousel { max-width: 700px; margin: 0 auto; position: relative; text-align: center; }
.testimonial-track { position: relative; min-height: 200px; }
.testimonial-slide { display: none; animation: fadeInUp 0.6s ease; }
.testimonial-slide.active { display: block; }
.testimonial-text { font-size: 20px; color: #e2e8f0; font-style: italic; margin-bottom: 25px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary-accent));
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 14px;
}
.author-avatar-img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 25px; }
.testimonial-dots span {
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--border-color); cursor: pointer; transition: 0.3s;
}
.testimonial-dots span.active { background: var(--primary); width: 24px; border-radius: 5px; }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================= CTA SECTION ================= */
.cta-section { padding: 40px 0 100px; }
.cta-box {
    background: linear-gradient(135deg, rgba(0,102,255,0.12), rgba(108,92,231,0.12));
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}
.cta-illustration-wrap { min-height: 320px; position: relative; }
.cta-ui-img {
    position: absolute;
    top: 20px; left: 0;
    width: 90%;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}
.cta-person-img {
    position: absolute;
    bottom: -40px; right: 0;
    width: 55%;
    z-index: 2;
}

/* ================= LIVE AI CHAT DEMO WIDGET ================= */
.ss-chat-widget { position: fixed; bottom: 25px; right: 25px; z-index: 999; }
.ss-chat-bubble {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary-accent));
    border: none;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 30px var(--primary-glow);
    cursor: pointer;
    animation: pulseDot 2s infinite;
}
.ss-chat-window {
    width: 320px;
    max-height: 420px;
    background: rgba(15, 23, 42, 0.97);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    margin-bottom: 15px;
    overflow: hidden;
    display: none;
    flex-direction: column;
}
.ss-chat-window.open { display: flex; }
.ss-chat-header {
    background: rgba(255,255,255,0.04);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}
.ss-chat-close { color: var(--text-muted); cursor: pointer; }
.ss-chat-body {
    padding: 16px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 220px;
}
.ss-msg {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    animation: fadeInUp 0.4s ease;
}
.ss-msg.bot { background: rgba(0,102,255,0.15); color: #dce7ff; align-self: flex-start; border-bottom-left-radius: 4px; }
.ss-msg.user { background: rgba(255,255,255,0.08); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
.ss-typing { display: flex; gap: 4px; align-self: flex-start; padding: 10px 14px; }
.ss-typing span { width: 6px; height: 6px; background: var(--text-muted); border-radius: 50%; animation: typingBounce 1s infinite; }
.ss-typing span:nth-child(2) { animation-delay: 0.15s; }
.ss-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-5px); opacity: 1; }
}

footer{
    position:relative;
    overflow:hidden;
    border-top:none !important;
}
/* Animated Top Border */

footer::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;
    background:linear-gradient(
        90deg,
        transparent,
        #00E5FF,
        #4F8CFF,
        #8A5CFF,
        #00E5FF,
        transparent
    );
    background-size:300% 100%;
    animation:footerBorder 4s linear infinite;
    box-shadow:
        0 0 10px #00E5FF,
        0 0 20px rgba(79,140,255,.5);
}

@keyframes footerBorder{
    0%{
        background-position:0% 50%;
    }
    100%{
        background-position:300% 50%;
    }
}

.saas-navbar{
    position:fixed;
    width:100%;
    z-index:999;
    overflow: ;
}

/* Animated Bottom Border */

.saas-navbar::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:2px;

    background:linear-gradient(
        90deg,
        transparent,
        #00F5FF,
        #4F8CFF,
        #7A5FFF,
        #00F5FF,
        transparent
    );

    background-size:300% 100%;
    animation:navbarBorder 4s linear infinite;

    box-shadow:
        0 0 8px rgba(0,245,255,.8),
        0 0 18px rgba(79,140,255,.5);
}

@keyframes navbarBorder{
    0%{
        background-position:0% 50%;
    }
    100%{
        background-position:300% 50%;
    }
}

/* ==========================
   Pricing Cards
========================== */

.pricing-card{
    position:relative;
    overflow:hidden;
    transition:.45s ease;
}

/* Moving Light */

.pricing-card::before{
    content:"";
    position:absolute;
    top:-120%;
    left:-80%;
    width:50%;
    height:350%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.05),
        rgba(255,255,255,.28),
        rgba(255,255,255,.05),
        transparent
    );
    transform:rotate(25deg);
    animation:pricingShine 6s linear infinite;
    pointer-events:none;
}

/* AI Glow */

.pricing-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top,
        rgba(79,140,255,.10),
        transparent 65%);
    animation:pricingGlow 4s ease-in-out infinite alternate;
    pointer-events:none;
}

@keyframes pricingShine{

    0%{
        left:-120%;
    }

    100%{
        left:180%;
    }

}

@keyframes pricingGlow{

    from{
        opacity:.3;
        transform:scale(.95);
    }

    to{
        opacity:.9;
        transform:scale(1.15);
    }

}

/* Hover */

.pricing-card:hover{
    transform:translateY(-15px);
    box-shadow:
        0 25px 60px rgba(79,140,255,.25);
}

/* Price */

.price .display-4{
    background:linear-gradient(
        90deg,
        #ffffff,
        #7dd3fc,
        #4F8CFF,
        #ffffff
    );
    background-size:300%;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    animation:priceGradient 4s linear infinite;
}

@keyframes priceGradient{

    0%{
        background-position:0%;
    }

    100%{
        background-position:300%;
    }

}

/* Featured Card */

.featured-plan{
    transform:scale(1.05);
    border:1px solid rgba(79,140,255,.45)!important;
    box-shadow:
        0 0 25px rgba(79,140,255,.20);
}

.featured-plan:hover{
    transform:scale(1.08) translateY(-12px);
}

/* Animated Badge */

.popular-badge{
    background:linear-gradient(
        90deg,
        #4F8CFF,
        #7A5FFF,
        #00E5FF,
        #4F8CFF
    ) !important;

    background-size:300%;
    animation:badgeMove 4s linear infinite;

    padding:8px 18px;
    border-radius:50px;
    letter-spacing:.5px;
    box-shadow:0 0 18px rgba(79,140,255,.45);
}

@keyframes badgeMove{

    0%{
        background-position:0%;
    }

    100%{
        background-position:300%;
    }

}

/* List Hover */

.pricing-card li{
    transition:.3s;
}

.pricing-card li:hover{
    color:#fff;
    padding-left:10px;
}

/* Button */

.pricing-card a{
    transition:.35s;
}

.pricing-card:hover a{
    transform:translateY(-3px);
}

/* Premium Popular Badge */

.popular-wrap{
    z-index:10;
}

.popular-badge{

    display:flex;
    align-items:center;
    gap:8px;

    padding:9px 22px;

    color:#fff;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;

    border-radius:50px;

    background:
    linear-gradient(
        135deg,
        #4F8CFF,
        #7A5FFF,
        #00E5FF
    );

    background-size:200% 200%;

    animation:
        badgeGradient 4s ease infinite,
        badgeFloat 3s ease-in-out infinite;

    box-shadow:
        0 0 15px rgba(79,140,255,.6),
        0 0 35px rgba(0,229,255,.35);

    position:relative;
    overflow:hidden;
}


/* Moving Shine */

.popular-badge::before{

    content:"";

    position:absolute;

    top:0;
    left:-80%;

    width:50%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.7),
        transparent
    );

    animation:badgeShine 3s infinite;

}


.popular-badge i{

    font-size:14px;
    color:#ffe66d;

    animation:crownPulse 1.8s infinite;

}


/* Gradient Animation */

@keyframes badgeGradient{

    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }

    100%{
        background-position:0% 50%;
    }

}


/* Floating */

@keyframes badgeFloat{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-5px);
    }

}


/* Shine */

@keyframes badgeShine{

    0%{
        left:-80%;
    }

    100%{
        left:150%;
    }

}


/* Crown Glow */

@keyframes crownPulse{

    0%,100%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.25);
    }

}
/* ================= FOOTER ================= */
footer a.hover-white:hover { color: #fff !important; }
footer a.hover-primary:hover { color: var(--primary) !important; }

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .saas-navbar .navbar-collapse { background: #0f1729; border-radius: 16px; padding: 20px; margin-top: 10px; }
    .feature-img, .feature-img-top { min-height: 220px; height: 220px; }
    .cta-box { padding: 35px; text-align: center; }
    .cta-illustration-wrap { min-height: 220px; margin-top: 20px; }
}