/* =========================================
   7Digit - Premium Global Styles 
   ========================================= */

:root {
    --dark-bg: #0B0710;
    --card-bg: #1A1423;
    --primary-gradient: linear-gradient(135deg, #7b2ff7, #f107a3);
    --about-gradient: linear-gradient(135deg, #00c6ff, #0072ff);
    --marketing-gradient: linear-gradient(135deg, #ff9a00, #ff3d00);
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --glow-shadow: 0 0 20px rgba(123, 47, 247, 0.3);
}

/* Typography & Base */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.headerlogo {
    width: 180px;
    height: auto;
}

@media (max-width: 992px) {
    .headerlogo {
        width: 150px;
    }
}

@media (max-width: 576px) {
    .headerlogo {
        width: 120px;
    }
}

/* Glassmorphism & Modern Utility Classes */
.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Global Spacing Utilities (Restored from missing main.css) */
.section-padding {
    padding: 100px 0;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-60 {
    margin-top: 60px;
}

/* Image responsive reset */
img {
    max-width: 100%;
    height: auto;
}

/* =========================================
   From index.php: WCU, Step, Service Cards
   ========================================= */
.wcu-card {
    position: relative;
    padding: 2px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.8), rgba(241, 7, 163, 0.8), rgba(0, 255, 255, 0.8), rgba(123, 47, 247, 0.8));
    background-size: 300% 300%;
    animation: gradientMove 5s linear infinite;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.wcu-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: inherit;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    border-radius: inherit;
    animation: gradientMove 5s linear infinite;
}

.wcu-card:hover::after {
    opacity: 0.7;
}

.wcu-card .inner-box {
    background: rgba(26, 20, 35, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Glass shine effect inside inner-box */
.wcu-card .inner-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    z-index: 1;
}

.wcu-card:hover .inner-box::before {
    left: 200%;
}

.wcu-card:hover {
    transform: translateY(-12px) scale(1.02);
}

.wcu-card .wcu-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.wcu-card:hover .wcu-icon {
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.2), rgba(241, 7, 163, 0.2));
    box-shadow: inset 0 0 0 1px rgba(241, 7, 163, 0.4), 0 10px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.wcu-card .wcu-icon img {
    width: 35px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wcu-card:hover .wcu-icon img {
    transform: scale(1.25) rotate(10deg);
}

.wcu-card .wcu-content {
    position: relative;
    z-index: 2;
}

.wcu-card .wcu-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-white);
    transition: all 0.4s ease;
}

.wcu-card:hover .wcu-content h3 {
    background: -webkit-linear-gradient(0deg, #f107a3, #0ff0fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wcu-card .wcu-content p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    transition: color 0.4s ease;
}

.wcu-card:hover .wcu-content p {
    color: rgba(255, 255, 255, 0.9);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.step-card {
    position: relative;
    padding: 2px;
    border-radius: 18px;
    background: linear-gradient(135deg, #7b2ff7, #f107a3);
    transition: 0.4s ease;
}

.step-card .inner-box {
    background: #1A1423;
    border-radius: 16px;
    padding: 25px 15px;
    height: 100%;
    transition: 0.4s ease;
}

.step-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 0 25px rgba(241, 7, 163, 0.4);
}

.step-icon {
    font-size: 45px;
    color: #7b2ff7;
    transition: 0.4s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.25) rotate(8deg);
    color: #f107a3;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Added delay for hero content to feel smoother */
.hero-content .reveal-up {
    transition-delay: 0.4s;
}

.hero-thumb .reveal-up {
    transition-delay: 0.2s;
}

.step-animate {
    animation: fadeInUp 0.8s ease forwards;
}

.step-1 {
    animation-delay: 0s;
}

.step-2 {
    animation-delay: 0.1s;
}

.step-3 {
    animation-delay: 0.2s;
}

.step-4 {
    animation-delay: 0.3s;
}

.step-5 {
    animation-delay: 0.4s;
}

.step-6 {
    animation-delay: 0.5s;
}

.step-7 {
    animation-delay: 0.6s;
}

.service-card {
    position: relative;
    padding: 2px;
    border-radius: 18px;
    background: linear-gradient(135deg, #7b2ff7, #f107a3);
}

.service-card .inner-box {
    background: #1A1423;
    border-radius: 16px;
    padding: 25px;
    height: 100%;
    transition: 0.4s ease;
}

.service-card:hover {
    box-shadow: 0 0 20px rgba(241, 7, 163, 0.4);
    transform: translateY(-6px);
}

.service-card .icon img {
    width: 70px;
    transition: 0.3s ease;
}

.service-card:hover .icon img {
    transform: scale(1.15);
}

/* =========================================
   From header.php: Dark Premium Pricing 
   ========================================= */
.pricing-dark-section {
    background: linear-gradient(180deg, #0b0710 0%, #0f0716 100%);
    padding: 60px 0;
    color: #e7e6ef;
}

.pricing-modern-card.dark {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(1, 1, 10, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.02);
    transition: transform .35s ease, box-shadow .35s ease;
    border: 1px solid rgba(255, 255, 255, 0.035);
}

.pricing-modern-card.dark:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(123, 47, 247, 0.14);
}

.pricing-badge {
    position: absolute;
    top: 14px;
    right: -42px;
    background: linear-gradient(90deg, #a220ff, #f107a3);
    color: #fff;
    padding: 8px 46px;
    transform: rotate(45deg);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
    box-shadow: 0 6px 18px rgba(162, 34, 255, 0.14);
}

.pricing-header-dark {
    padding: 28px 18px;
    border-radius: 12px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(123, 47, 247, 0.12), rgba(241, 7, 163, 0.06));
    backdrop-filter: blur(4px);
}

.pricing-header-dark h3 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 6px;
}

.pricing-header-dark p {
    color: #d6cfff;
    margin: 0;
}

.price-display {
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    margin-top: 6px;
    margin-bottom: 6px;
    background: -webkit-linear-gradient(90deg, #7b2ff7 0%, #f107a3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.small-note {
    color: #bfb7e8;
    font-size: 14px;
}

.old-price {
    color: rgba(255, 255, 255, 0.25);
    text-decoration: line-through;
    font-size: 14px;
}

.feature-list {
    text-align: left;
    margin-top: 18px;
    padding: 0;
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    font-weight: 600;
    color: #e6e3ff;
    display: flex;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-emoji {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    color: #fff;
    font-size: 18px;
    flex: 0 0 36px;
}

.cta-neon {
    margin-top: 20px;
    display: inline-block;
    width: 100%;
    padding: 12px 18px;
    border-radius: 999px;
    border: none;
    background: #a220ff;
    color: #fff;
    font-weight: 800;
    letter-spacing: .3px;
    box-shadow: 0 6px 24px rgba(162, 34, 255, 0.18);
    transition: all .25s ease;
}

.cta-neon:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 46px rgba(241, 7, 163, 0.25), 0 6px 18px rgba(123, 47, 247, 0.15);
}

@media (max-width: 992px) {
    .price-display {
        font-size: 36px;
    }

    .pricing-modern-card.dark {
        padding: 22px;
    }
}

@media (max-width: 576px) {
    .price-display {
        font-size: 28px;
    }

    .feature-emoji {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .feature-list li {
        font-size: 14px;
    }
}

.recommend-badge {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ff9a00, #ff3d00);
    padding: 6px 22px;
    font-size: 13px;
    font-weight: 800;
    border-radius: 50px;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 61, 0, 0.35);
    z-index: 5;
}

/* =========================================
   Global Header & Glassmorphism Navigation
   ========================================= */
.header-4 {
    background: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}

.header-4.scrolled {
    background: rgba(11, 7, 16, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.main-menu ul li a {
    color: var(--text-white) !important;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 10px 15px;
}

.main-menu ul li a:hover,
.main-menu ul li a.active {
    color: #f107a3 !important;
    text-shadow: 0 0 10px rgba(241, 7, 163, 0.5);
}

.gt-btn {
    background: var(--primary-gradient);
    color: #fff !important;
    border: none;
    transition: 0.4s ease;
    border-radius: 5px;
}

.gt-btn:hover {
    box-shadow: var(--glow-shadow);
    transform: translateY(-2px);
}

/* Base link color */
a {
    text-decoration: none;
    transition: all .3s;
}

body {
    padding-top: 100px;
    /* Offset for fixed header */
}

/* =========================================
   Global Footer Dark Theme
   ========================================= */
.footer-section {
    background: #0B0710 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
}

.widget_title {
    color: #fff !important;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.widget_title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.about-text,
.widget .menu li a {
    color: var(--text-muted) !important;
    transition: all 0.3s;
}

.widget .menu li a:hover {
    color: #f107a3 !important;
    padding-left: 5px;
}

.gt-social.style2 a {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.gt-social.style2 a:hover {
    background: #f107a3;
    border-color: #f107a3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(241, 7, 163, 0.4);
}

.copyright-wrap.bg-theme {
    background: #0f0716 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.copyright,
.copyright a,
.link-wrapper a {
    color: var(--text-muted) !important;
}

.copyright a:hover,
.link-wrapper a:hover {
    color: #f107a3 !important;
}

/* =========================================
   Client Logos & Logo Scroller
   ========================================= */
.client-logos-section {
    background: transparent;
    padding-top: 40px;
    padding-bottom: 40px;
}

.logo-scroller-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Apply fade effect on left and right edges */
.logo-scroller-wrapper::before,
.logo-scroller-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-scroller-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #0B0710 0%, transparent 100%);
}

.logo-scroller-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #0B0710 0%, transparent 100%);
}

.logo-scroller-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll-logos 30s linear infinite;
}

.logo-scroller-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.scroller-logo {
    padding: 0 40px;
    transition: all 0.4s ease;
}

.scroller-logo:hover {
    transform: scale(1.1);
}

.scroller-logo img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

/* =========================================
   Testimonials Section
   ========================================= */
.testimonial-section {
    position: relative;
    z-index: 1;
}

.premium-testimonial-card {
    background: rgba(26, 20, 35, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.premium-testimonial-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.2), transparent 70%);
    z-index: 0;
    border-radius: 50%;
}

.premium-testimonial-card.active-review {
    transform: translateY(-10px);
    border: 1px solid rgba(123, 47, 247, 0.3);
    box-shadow: 0 15px 40px rgba(123, 47, 247, 0.15);
}

.premium-testimonial-card.active-review::before {
    background: radial-gradient(circle, rgba(241, 7, 163, 0.2), transparent 70%);
}

.premium-testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.premium-testimonial-card .quote-icon {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 20px;
    right: 30px;
    z-index: 1;
}

.premium-testimonial-card .rating i {
    font-size: 14px;
    margin-right: 2px;
    color: #ffb400;
}

.premium-testimonial-card .review-text {
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.premium-testimonial-card .client-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7b2ff7, #f107a3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(241, 7, 163, 0.3);
}

/* =========================================
   Service Pages Common CSS (Unified)
   ========================================= */

body {
    background-color: var(--dark-bg, #0B0710);
    color: var(--text-white, #ffffff);
}

/* Hero Section */
.service-hero {
    position: relative;
    padding: 180px 0 100px;
    background: radial-gradient(circle at 50% 20%, var(--theme-bg, #0B0710) 0%, #0B0710 100%);
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(var(--theme-color-rgb, 200, 200, 200), 0.15) 0%, transparent 70%);
    animation: pulseGlow 10s infinite alternate;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(var(--theme-color-rgb, 255, 255, 255), 0.1);
    border: 1px solid rgba(var(--theme-color-rgb, 255, 255, 255), 0.3);
    border-radius: 50px;
    color: var(--theme-color, #fff);
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--theme-color, #fff));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 60px;
    }

    .service-hero h1 {
        font-size: 2.2rem;
    }

    .section-padding {
        padding: 60px 0;
    }
}

/* Enhanced Premium Card (Unified) */
.premium-card {
    background: rgba(26, 20, 35, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--theme-gradient, linear-gradient(135deg, #7b2ff7, #f107a3, #0ff0fc, #7b2ff7));
    background-size: 300% 300%;
    animation: gradientMove 5s linear infinite;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.premium-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(var(--theme-color-rgb, 123, 47, 247), 0.15), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.premium-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(var(--theme-color-rgb, 123, 47, 247), 0.3);
    background: rgba(30, 24, 40, 0.85);
}

.premium-card:hover::before {
    transform: scaleX(1);
}

.premium-card:hover::after {
    width: 300px;
    height: 300px;
}

.card-icon-wrapper {
    width: 65px;
    height: 65px;
    background: rgba(var(--theme-color-rgb, 123, 47, 247), 0.1);
    border: 1px solid rgba(var(--theme-color-rgb, 123, 47, 247), 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--theme-color, #cbb7ff);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.02);
}

.premium-card:hover .card-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    background: var(--theme-gradient, linear-gradient(135deg, #7b2ff7, #f107a3));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(var(--theme-color-rgb, 123, 47, 247), 0.4);
}

/* Core Value Cards */
.core-value-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(26, 20, 35, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cv-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(var(--theme-color-rgb, 0, 198, 255), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--theme-color, #00c6ff);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    border: 1px dashed rgba(var(--theme-color-rgb, 0, 198, 255), 0.3);
}

.cv-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(var(--theme-color-rgb, 0, 198, 255), 0.2);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s ease;
    opacity: 0;
}

.core-value-card:hover .cv-icon-wrapper {
    color: #fff;
    transform: translateY(-8px) scale(1.1);
    background: var(--theme-gradient, linear-gradient(135deg, #00c6ff, #0072ff));
    box-shadow: 0 15px 30px rgba(var(--theme-color-rgb, 0, 198, 255), 0.5);
    border-color: transparent;
}

.core-value-card:hover .cv-icon-wrapper::before {
    width: 140%;
    height: 140%;
    opacity: 1;
    animation: pulseGlow 1.5s infinite alternate;
}

.core-value-card h5 {
    transition: all 0.3s ease;
}

.core-value-card:hover h5 {
    color: var(--theme-color, #00c6ff) !important;
    text-shadow: 0 0 10px rgba(var(--theme-color-rgb, 0, 198, 255), 0.3);
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 40px 30px;
    background: rgba(26, 20, 35, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(var(--theme-color-rgb, 0, 198, 255), 0.15), transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.process-step:hover {
    background: rgba(30, 24, 40, 0.9);
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(var(--theme-color-rgb, 0, 198, 255), 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(var(--theme-color-rgb, 0, 198, 255), 0.2);
}

.process-step:hover::before {
    opacity: 1;
}

.process-number {
    font-size: 56px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    transition: all 0.5s ease;
    line-height: 1;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    display: inline-block;
}

.process-step:hover .process-number {
    color: transparent;
    -webkit-text-stroke: 1px var(--theme-color, #00c6ff);
    transform: scale(1.1) translateY(-5px);
    text-shadow: 0 0 20px rgba(var(--theme-color-rgb, 0, 198, 255), 0.4);
}

.text-glow {
    text-shadow: 0 0 10px rgba(var(--theme-color-rgb, 0, 198, 255), 0.5);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Dark Accordion */
.faq-dark .accordion-item {
    background: var(--card-bg, #1A1423);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
}

.faq-dark .accordion-button {
    background: transparent;
    color: #fff;
    font-weight: 600;
    box-shadow: none;
    padding: 20px 25px;
}

.faq-dark .accordion-button:not(.collapsed) {
    color: var(--theme-color, #cbb7ff);
    background: rgba(var(--theme-color-rgb, 123, 47, 247), 0.05);
}

.faq-dark .accordion-body {
    color: var(--text-muted, rgba(255, 255, 255, 0.7));
    padding: 0 25px 25px;
    border-top: none;
}

.faq-dark .accordion-button::after {
    filter: invert(1);
}

@keyframes pulseGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* =========================================
   Terms Page Styles
   ========================================= */
.terms-card {
    background: var(--card-bg, #1A1423);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.terms-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--theme-gradient, linear-gradient(135deg, #3a7bd5, #00d2ff));
}

.terms-section-title {
    color: #fff;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
}

.terms-section-title i {
    color: var(--theme-color, #00d2ff);
    font-size: 24px;
    background: rgba(var(--theme-color-rgb, 0, 210, 255), 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.terms-content p {
    color: var(--text-muted, rgba(255, 255, 255, 0.7));
    line-height: 1.8;
    margin-bottom: 20px;
}

.terms-list .list-group-item {
    background: transparent;
    border: none;
    color: var(--text-muted, rgba(255, 255, 255, 0.7));
    padding-left: 0;
    position: relative;
    padding: 10px 10px 10px 25px;
}

.terms-list .list-group-item::before {
    content: '•';
    color: var(--theme-color, #00d2ff);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 10px;
}

.terms-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

/* =========================================
   Unified Contact Form (Index Page)
   ========================================= */
.unified-contact-card {
    background: #1A1423;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(123, 47, 247, 0.2);
    display: flex;
    flex-direction: column;
}

.unified-contact-card .row {
    height: 100%;
}

.contact-left-col {
    padding: 50px;
    background: #16101c;
    height: 100%;
}

/* =========================================
   Contact Form & Info Section (Premium Dark)
   ========================================= */
.unified-contact-card {
    background: rgba(26, 20, 35, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.unified-contact-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(123, 47, 247, 0.15), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-left-col {
    padding: 50px;
    position: relative;
    z-index: 1;
}

.contact-right-col {
    padding: 50px;
    background: linear-gradient(135deg, rgba(11, 7, 16, 0.9), rgba(26, 20, 35, 0.9));
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-right-col::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(241, 7, 163, 0.15), transparent 70%);
    z-index: 0;
}

.unified-contact-card h2 {
    margin-bottom: 30px;
    color: #fff;
    font-weight: 700;
    position: relative;
    z-index: 1;
    font-size: 28px;
}

.unified-contact-card input,
.unified-contact-card select,
.unified-contact-card textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 12px;
    margin-bottom: 25px;
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.unified-contact-card input:focus,
.unified-contact-card select:focus,
.unified-contact-card textarea:focus {
    border-color: #f107a3;
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(241, 7, 163, 0.2);
    transform: translateY(-2px);
}

.unified-contact-card ::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-icon-box {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.contact-icon-box:hover {
    transform: translateX(5px);
}

.contact-icon-circle {
    background: linear-gradient(135deg, #7b2ff7, #f107a3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(241, 7, 163, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-icon-box:hover .contact-icon-circle {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(241, 7, 163, 0.5);
}

.contact-icon-circle i {
    color: white;
    font-size: 22px;
}

.contact-text h3 {
    font-size: 16px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.5;
    font-weight: 500;
}

.contact-text a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: 0.3s;
}

.contact-text a:hover {
    color: #f107a3;
}

.submit-btn-custom {
    background: linear-gradient(90deg, #7b2ff7, #f107a3, #0ff0fc, #7b2ff7);
    background-size: 300% 300%;
    animation: gradientMove 5s linear infinite;
    border: none;
    color: #fff;
    padding: 18px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(123, 47, 247, 0.3);
    position: relative;
    z-index: 1;
}

.submit-btn-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(241, 7, 163, 0.5);
    letter-spacing: 2px;
}

@media (max-width: 991px) {
    .header-main {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .header-middle {
        display: none !important;
        /* Hide desktop menu */
    }

    .header__hamburger {
        display: block !important;
        cursor: pointer;
    }

    .sidebar__toggle {
        font-size: 24px;
        color: #fff;
    }

    .header-button {
        display: none !important;
        /* Hide 'Get A Quote' on small mobile if needed, or keep smaller */
    }

    .row>[class*="col-"] {
        width: 100% !important;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .header-button {
        display: none !important;
    }
}

/* Offcanvas Styles */
.offcanvas__info {
    position: fixed;
    right: -400px;
    top: 0;
    width: 300px;
    height: 100%;
    background: #0B0710;
    z-index: 99999;
    padding: 40px;
    transition: all 0.4s ease;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas__info.info-open {
    right: 0;
}

.offcanvas__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99998;
    display: none;
}

.offcanvas__close button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.mobile-menu ul li {
    margin-bottom: 20px;
}

.mobile-menu ul li a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-menu ul li a:hover {
    color: #7b2ff7;
}

@media (max-width: 991px) {
    .contact-right-col {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 40px 30px;
    }

    .contact-left-col {
        padding: 40px 30px;
    }
}

/* =========================================
   Orbit Animation for Process Steps
   ========================================= */
.orbit-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    width: 100%;
}

.orbit-wrapper {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.orbit-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.05);
}

.orbit-center {
    position: relative;
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, #7b2ff7, #f107a3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 0 40px rgba(123, 47, 247, 0.6);
    z-index: 10;
    color: #fff;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 1px;
}

.orbit-center::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241, 7, 163, 0.2), transparent 70%);
    z-index: -1;
    animation: pulseGlow 3s infinite alternate;
}

.offcanvas__contact-icon i {
    color: #00c6ff;
    font-size: 18px;
    width: 25px;
    text-align: center;
}

.offcanvas__contact-text a:hover {
    color: #f107a3 !important;
}

.offcanvas__contact .social-btn {
    transition: all 0.3s ease;
}

.offcanvas__contact .social-btn:hover {
    background: linear-gradient(135deg, #7b2ff7, #f107a3) !important;
    border-color: transparent !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(241, 7, 163, 0.3);
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    margin-top: -80px;
    margin-left: -80px;
    background: rgba(26, 20, 35, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    /* Orbit animation */
    animation: orbitSpin 30s linear infinite;
    animation-delay: calc(-30s / 7 * var(--i));
    z-index: 5;
    word-wrap: break-word;
}

/* Adjust radius via translateX */
@keyframes orbitSpin {
    0% {
        transform: rotate(0deg) translateX(300px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(300px) rotate(-360deg);
    }
}

.orbit-item:hover {
    animation-play-state: paused;
    border-color: #f107a3;
    box-shadow: 0 0 20px rgba(241, 7, 163, 0.4);
    transform: scale(1.1) !important;
    /* Force scale up on hover */
    z-index: 20;
}

/* Hovering the wrapper pauses all orbit items to make them readable */
.orbit-wrapper:hover .orbit-item {
    animation-play-state: paused;
}

.orbit-item .step-num {
    background: linear-gradient(135deg, #7b2ff7, #f107a3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 5px;
}

.orbit-item i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    transition: 0.3s;
}

.orbit-item:hover i {
    color: #00c6ff;
}

.orbit-item h6 {
    font-size: 11px;
    color: #fff;
    line-height: 1.3;
    margin: 0;
    font-weight: 600;
    padding: 0 5px;
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
    .orbit-wrapper {
        width: 320px;
        height: 320px;
    }

    .orbit-wrapper::before {
        width: 220px;
        height: 220px;
        margin: -110px 0 0 -110px;
    }

    .orbit-center {
        width: 100px;
        height: 100px;
        font-size: 16px;
    }

    .orbit-item {
        width: 100px;
        height: 100px;
        margin-top: -50px;
        margin-left: -50px;
        padding: 5px;
    }

    .orbit-item .step-num {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .orbit-item i {
        font-size: 16px;
        margin-bottom: 2px;
    }

    .orbit-item h6 {
        font-size: 9px;
    }

    @keyframes orbitSpin {
        0% {
            transform: rotate(0deg) translateX(160px) rotate(0deg);
        }

        100% {
            transform: rotate(360deg) translateX(160px) rotate(-360deg);
        }
    }
}

/* =========================================
   Nice Select Premium Dark Theme
   ========================================= */
.nice-select {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    color: #fff !important;
    height: 60px !important;
    line-height: 58px !important;
    padding-left: 20px !important;
    padding-right: 40px !important;
    width: 100% !important;
    float: none !important;
    margin-bottom: 20px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.nice-select:hover,
.nice-select:focus,
.nice-select.open {
    border-color: #7b2ff7 !important;
    background-color: rgba(123, 47, 247, 0.05) !important;
    box-shadow: 0 0 15px rgba(123, 47, 247, 0.2);
}

.nice-select::after {
    border-bottom: 2px solid #fff !important;
    border-right: 2px solid #fff !important;
    height: 8px !important;
    width: 8px !important;
    right: 20px !important;
}

.nice-select .list {
    background-color: #0d1117 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
    width: 100% !important;
    margin-top: 5px !important;
    z-index: 9999 !important;
    padding: 10px 0;
}

.nice-select .option {
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 40px !important;
    min-height: 40px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    transition: all 0.2s ease;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: rgba(123, 47, 247, 0.1) !important;
    color: #fff !important;
}

.nice-select .option.selected {
    font-weight: 700 !important;
    color: #7b2ff7 !important;
    background-color: transparent !important;
}

/* Hide original select to avoid flickering */
select.single-select {
    display: none !important;
}

/* Global Mobile Component Scaling */
@media (max-width: 576px) {
    .wa-phone-frame {
        transform: scale(0.8);
        transform-origin: top center;
        margin-bottom: -100px;
        /* Offset for scale */
    }

    .ide-window {
        height: 350px !important;
    }

    .dashboard-preview {
        padding: 15px !important;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 15px;
    }

    .display-4 {
        font-size: 2.2rem !important;
    }

    .display-3 {
        font-size: 2.5rem !important;
    }
}

/* =========================================
   REVEAL & MOBILE UI ENHANCEMENTS (Consolidated for Speed)
   ========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Mobile Header Responsive Fix */
@media (max-width: 1199px) {
    .header-middle {
        display: none !important;
    }

    .header-button {
        display: none !important;
    }

    .header__hamburger {
        display: block !important;
    }

    .header-main {
        justify-content: space-between;
    }
}

.sidebar__toggle {
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    padding: 10px;
    transition: all 0.3s;
}

.sidebar__toggle:hover {
    color: #00c6ff;
    transform: scale(1.1);
}

/* Sidebar / Offcanvas Premium Styles */
.offcanvas__info {
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    background: #0d1117;
    z-index: 10001;
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 40px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    overflow-y: auto;
}

.offcanvas__info.info-open {
    transform: translateX(0);
}

.offcanvas__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
}

@media (max-width: 575px) {
    .offcanvas__info {
        width: 300px;
        padding: 30px 20px;
    }
}

.offcanvas__close button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.offcanvas__close button:hover {
    background: #f107a3;
    transform: rotate(90deg);
}

/* Mobile Menu List Links styling */
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.mobile-menu ul li {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

/* Ultra-Premium SVG animated Logo */
.neo-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    padding: 5px 15px 5px 5px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.neo-logo-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 198, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(0, 198, 255, 0.1);
    transform: translateY(-2px);
}

.neo-logo-svg {
    overflow: visible;
}

.neo-path-glow {
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
    animation: drawNeo 3s ease-in-out infinite alternate;
}

.neo-path-core {
    stroke-dasharray: 180;
    stroke-dashoffset: 180;
    animation: drawNeo 3s ease-in-out infinite alternate;
    animation-delay: 0.15s;
}

@keyframes drawNeo {

    0%,
    15% {
        stroke-dashoffset: 180;
    }

    85%,
    100% {
        stroke-dashoffset: 0;
    }
}

.neo-dot {
    opacity: 0;
    animation: popDot 3s ease-in-out infinite alternate;
}

@keyframes popDot {

    0%,
    75% {
        opacity: 0;
        transform: scale(0.5);
        transform-origin: 30px 75px;
    }

    85%,
    100% {
        opacity: 1;
        transform: scale(1.3);
        transform-origin: 30px 75px;
        filter: drop-shadow(0 0 5px #fff);
    }
}

.neo-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.neo-text-main {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 900;
    margin: 0;
    letter-spacing: -0.5px;
    color: #ffffff;
    display: flex;
    align-items: baseline;
}

.neo-text-digit {
    color: transparent;
    background: linear-gradient(100deg, #00c6ff 0%, #f107a3 50%, #7b2ff7 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: flowGradient 4s linear infinite;
    padding-left: 1px;
}

@keyframes flowGradient {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.ai-bot-msg {
    background: rgba(22, 27, 34, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 15px 15px 15px 0;
    margin-bottom: 20px;
    position: relative;
    max-width: 90%;
    align-self: flex-start;
}

.ai-bot-msg::before {
    content: "AI Assistant";
    position: absolute;
    top: -18px;
    left: 0;
    font-size: 11px;
    color: #00c6ff;
    font-weight: 600;
}

.ai-bot-msg p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.ai-bot-footer-chat {
    padding: 15px;
    background: #150b29;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 10px;
}

.ai-bot-input {
    flex-grow: 1;
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.ai-bot-input:focus {
    border-color: #00c6ff;
}

.ai-bot-send {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #7b2ff7, #00c6ff);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.ai-bot-send:hover {
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .ai-bot-window {
        width: 300px;
        right: -10px;
    }
}

/* Background Shapes & Particles */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.4;
}

.bg-shape-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(123, 47, 247, 0.15);
    animation: float1 20s infinite alternate;
}

.bg-shape-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(0, 198, 255, 0.1);
    animation: float2 25s infinite alternate;
}

.bg-shape-3 {
    top: 40%;
    left: 30%;
    width: 400px;
    height: 400px;
    background: rgba(241, 7, 163, 0.05);
    animation: float3 15s infinite alternate;
}

@keyframes float1 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(100px, 50px) rotate(30deg);
    }
}

@keyframes float2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-80px, -60px) scale(1.2);
    }
}

@keyframes float3 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-30px, 100px);
    }
}

.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.2;
}