/* CSS Document */

/* Modern Variables */
:root {
    --primary-color: #4f46e5;
    --secondary-color: #7c3aed;
    --background-dark: #0a0f1c;
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --card-bg: rgba(17, 24, 39, 0.95);
    --hover-color: #4338ca;
    --transition: all 0.3s ease;
    --primary-color-rgb: 79, 70, 229;
    --secondary-color-rgb: 124, 58, 237;
}

/* Global Styles */
body {
    background-color: var(--background-dark);
    color: var(--text-primary);
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(10, 15, 28, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.brand-text {
    color: var(--text-primary);
}

.brand-dot {
    color: var(--primary-color);
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 8rem 0;
    overflow: hidden;
}

.tech-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-mesh {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.floating-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    display: inline-block;
}

.hero-title {
    color: var(--text-primary);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    position: relative;
    text-align: center;
}

.hero-title span {
    display: block;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Content Sections */
.content-section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

/* Enhanced Icon Styles */
.floating-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
    position: relative;
    z-index: 1;
}

.floating-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
}

.floating-icon i {
    color: white;
    font-size: 1.75rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card, .role-card, .feature-card, .support-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
}

.info-card:hover, .role-card:hover, .feature-card:hover, .support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.info-card h3, .role-card h3, .feature-card h3, .support-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.info-card p, .role-card p, .feature-card p, .support-card p,
.info-card li, .role-card li, .feature-card li, .support-card li {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* Role Cards */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Role Icons */
.role-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 16px rgba(79, 70, 229, 0.15);
    position: relative;
}

.role-icon i {
    color: white;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Core Features Section */
.features-section {
    position: relative;
    background: linear-gradient(to bottom, var(--background-dark), rgba(17, 24, 39, 0.95));
    padding: 8rem 0;
    overflow: hidden;
}

.features-grid.modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
    padding: 1.5rem;
}

.feature-card.glassmorphic {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.feature-card.glassmorphic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(var(--primary-color-rgb), 0.1),
        rgba(var(--secondary-color-rgb), 0.1)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card.glassmorphic:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(var(--primary-color-rgb), 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(var(--primary-color-rgb), 0.1);
}

.feature-card.glassmorphic:hover::before {
    opacity: 1;
}

.feature-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-5deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: inherit;
    filter: blur(8px);
    opacity: 0.5;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.feature-icon-wrapper i {
    font-size: 2.25rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: rotate(5deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(var(--primary-color-rgb), 0.3);
}

.feature-card:hover .feature-icon-wrapper::before {
    opacity: 0.8;
}

.feature-card:hover .feature-icon-wrapper i {
    transform: rotate(-5deg) scale(1.1);
}

.feature-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(var(--primary-color-rgb), 0.3));
}

.feature-list li:hover {
    transform: translateX(8px);
    color: var(--text-primary);
    opacity: 1;
}

.feature-list li:hover i {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(var(--primary-color-rgb), 0.98),
        rgba(var(--secondary-color-rgb), 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.feature-card:hover .feature-overlay {
    opacity: 1;
}

.overlay-text {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .overlay-text {
    transform: translateY(0);
}

/* Feature Decorations */
.feature-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-circle,
.floating-square,
.floating-triangle {
    position: absolute;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    filter: blur(40px);
    animation: floatAnimation 20s infinite ease-in-out;
}

.floating-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.floating-square {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}

.floating-triangle {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid var(--primary-color);
    opacity: 0.1;
    top: 40%;
    right: 10%;
    animation-delay: -10s;
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(var(--primary-color-rgb), 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-color-rgb), 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(1000px) rotateX(60deg);
    transform-origin: top;
    opacity: 0.2;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) rotate(-5deg) scale(0.9);
    }
    75% {
        transform: translate(10px, -10px) rotate(3deg) scale(1.05);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .features-grid.modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .feature-card.glassmorphic {
        padding: 2rem;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .feature-icon-wrapper i {
        font-size: 1.75rem;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }

    .feature-card p {
        font-size: 1rem;
    }

    .floating-circle,
    .floating-square,
    .floating-triangle {
        display: none;
    }
}

/* Buttons */
.tech-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.tech-btn:hover {
    background-color: var(--hover-color);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background: rgba(15, 23, 42, 0.9);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 2rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--text-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--hover-color);
}

/* Remove text-rendering and font-smoothing properties */
* {
    text-rendering: auto;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.floating-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.floating-nav li {
    margin: 1rem 0;
}

.floating-nav a {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.floating-nav a:hover,
.floating-nav a.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.1;
    animation: floatAnimation 20s infinite linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: 50%;
    animation-delay: -10s;
}

@keyframes floatAnimation {
    0% {
        transform: rotate(0deg) translate(0, 0) scale(1);
    }
    33% {
        transform: rotate(120deg) translate(50px, 50px) scale(1.1);
    }
    66% {
        transform: rotate(240deg) translate(-50px, 50px) scale(0.9);
    }
    100% {
        transform: rotate(360deg) translate(0, 0) scale(1);
    }
}

/* Swiper Styles */
.overview-swiper {
    padding: 3rem 1rem;
    margin: 0 -1rem;
}

.swiper-slide {
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.4s ease;
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.swiper-button-next,
.swiper-button-prev {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    transition: transform 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--text-secondary);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 5px;
    background: var(--primary-color);
    opacity: 1;
}

/* Interactive Cards */
.feature-card.interactive {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card.interactive .feature-details {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-bg);
    padding: 2rem;
    transition: var(--transition);
    opacity: 0;
}

.feature-card.interactive:hover .feature-details {
    top: 0;
    opacity: 1;
}

/* Expandable Content */
.expand-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.expand-btn i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(79, 70, 229, 0.2));
}

.expand-btn[aria-expanded="true"] i {
    transform: translateY(2px);
}

.expanded-content {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animated Support Cards */
.support-card.animated {
    position: relative;
    overflow: hidden;
}

.support-card.animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: var(--transition);
}

.support-card.animated:hover::before {
    transform: translateX(100%);
}

.support-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced Button Styles */
.tech-btn {
    position: relative;
    overflow: hidden;
}

.tech-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.tech-btn:hover::before {
    transform: translateX(100%);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    margin-left: 1rem;
}

.btn-outline:hover {
    background: var(--primary-color);
}

/* Hero CTA */
.hero-cta {
    margin-top: 2rem;
}

/* Enhance Card Hover Effects */
.info-card, .role-card, .feature-card, .support-card {
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover, .role-card:hover, .feature-card:hover, .support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Add icon pulse effect */
@keyframes iconPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.floating-icon {
    animation: iconPulse 2s infinite ease-in-out;
}

/* Add glow effect to icons */
.role-icon::after,
.feature-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.role-icon:hover::after,
.feature-icon:hover::after {
    opacity: 0.5;
}

/* Enhance icon visibility in cards */
.info-card i,
.role-card i,
.feature-card i,
.support-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    min-height: 24px;
}

/* Support Card Icons */
.support-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
    vertical-align: middle;
    filter: drop-shadow(0 2px 4px rgba(79, 70, 229, 0.2));
}

/* Navigation Icons */
.navbar .nav-link i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    vertical-align: middle;
    color: var(--text-primary);
}

/* Live Features Section */
.live-features-section {
    position: relative;
    background: linear-gradient(to bottom, var(--background-dark), rgba(17, 24, 39, 0.95));
    overflow: hidden;
}

.live-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.live-feature-card {
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.live-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(var(--primary-color-rgb), 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(var(--primary-color-rgb), 0.1);
}

.feature-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.icon-circle i {
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.icon-glow {
    position: absolute;
    inset: -2px;
    background: inherit;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.5;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.live-feature-card:hover .icon-circle {
    transform: scale(1.1) rotate(5deg);
}

.live-feature-card:hover .icon-glow {
    opacity: 0.8;
}

.live-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.feature-details li i {
    color: var(--primary-color);
    font-size: 1rem;
}

.feature-details li:hover {
    transform: translateX(5px);
    color: var(--text-primary);
}

.hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(var(--primary-color-rgb), 0.95),
        rgba(var(--secondary-color-rgb), 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hover-overlay span {
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.live-feature-card:hover .hover-overlay {
    opacity: 1;
}

.live-feature-card:hover .hover-overlay span {
    transform: translateY(0);
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: particleFloat 4s infinite ease-in-out;
}

.floating-particles span:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-particles span:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: -1s;
}

.floating-particles span:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: -2s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, -10px);
    }
}

/* Decorative Elements */
.live-features-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    filter: blur(20px);
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation: orbFloat 20s infinite ease-in-out;
}

.orb-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    animation: orbFloat 25s infinite ease-in-out reverse;
}

.orb-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 10%;
    animation: orbFloat 22s infinite ease-in-out -5s;
}

.tech-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(var(--primary-color-rgb), 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-color-rgb), 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(1000px) rotateX(60deg);
    transform-origin: top;
    opacity: 0.2;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .live-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .live-feature-card {
        padding: 1.5rem;
    }

    .feature-icon-container {
        width: 60px;
        height: 60px;
    }

    .icon-circle i {
        font-size: 1.5rem;
    }

    .floating-orb {
        display: none;
    }
}

/* Support Modal Styles */
.support-modal {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.98));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.modal-header {
    padding: 2rem 2rem 1rem;
    position: relative;
    z-index: 2;
}

.modal-title-wrapper {
    width: 100%;
    text-align: center;
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
}

.modal-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: inherit;
    filter: blur(8px);
    opacity: 0.5;
    z-index: -1;
}

.modal-icon i {
    font-size: 1.75rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.modal-title {
    color: var(--text-primary);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

.modal-body {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.support-form .form-floating {
    position: relative;
}

.support-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    height: auto;
    padding: 1rem;
    transition: all 0.3s ease;
}

.support-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(var(--primary-color-rgb), 0.5);
    box-shadow: 0 0 0 4px rgba(var(--primary-color-rgb), 0.1);
}

.support-form .form-floating label {
    padding: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.support-form .form-floating > .form-control:focus ~ label,
.support-form .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: rgba(255, 255, 255, 0.8);
    transform: scale(0.85) translateY(-0.75rem) translateX(0.15rem);
}

.support-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.modal-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-orb {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    filter: blur(40px);
}

.modal-decoration .orb-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
    animation: orbFloat 20s infinite ease-in-out;
}

.modal-decoration .orb-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: -75px;
    animation: orbFloat 25s infinite ease-in-out reverse;
}

.tech-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(var(--primary-color-rgb), 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-color-rgb), 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    transform: perspective(1000px) rotateX(60deg);
    transform-origin: top;
    opacity: 0.2;
}

.btn-close-white {
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.btn-close-white:hover {
    opacity: 1;
}

/* Modal Animation */
.modal.fade .modal-dialog {
    transform: scale(0.95) translateY(-30px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 1rem;
    }

    .modal-header {
        padding: 1.5rem 1.5rem 0.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-icon {
        width: 48px;
        height: 48px;
    }

    .modal-icon i {
        font-size: 1.25rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }
}

