/* Custom styles for AraraLab landing page */

/* CSS Variables for AraraLab colors */
:root {
    --araralab-dark: #0f172a;
    --araralab-dark-secondary: #1e293b;
    --araralab-dark-tertiary: #334155;
    --araralab-blue: #3b82f6;
    --araralab-blue-light: #60a5fa;
    --araralab-text: #f1f5f9;
    --araralab-text-secondary: #e2e8f0;
    --araralab-text-muted: #94a3b8;
    
    /* Enhanced color palette */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-glow: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(96, 165, 250, 0.2));
}

/* Enhanced Background with Animated Gradients */
body {
    background: var(--araralab-dark);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%; }
    33% { background-position: 100% 0%, 0% 100%, 50% 50%; }
    66% { background-position: 0% 100%, 100% 0%, 50% 50%; }
}

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.95) 0%, 
        rgba(30, 41, 59, 0.95) 50%, 
        rgba(51, 65, 85, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    padding-top: 4rem;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
}

/* Enhanced Animated Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-glow);
    filter: blur(40px);
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.floating-orb:hover {
    transform: scale(1.2);
    filter: blur(30px);
    box-shadow: 0 0 80px rgba(59, 130, 246, 0.5);
}

.orb-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.orb-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

.orb-5 {
    width: 80px;
    height: 80px;
    bottom: 40%;
    right: 10%;
    animation-delay: 8s;
}

/* Grid Pattern */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
}

/* Enhanced Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    animation: slideInDown 1s ease-out;
}

.hero-title {
    color: var(--araralab-text);
    animation: slideInUp 1s ease-out 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { 
        background: linear-gradient(135deg, #3b82f6, #60a5fa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    50% { 
        background: linear-gradient(135deg, #8b5cf6, #3b82f6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transform-origin: left;
    animation: expandLine 1s ease-out 1s forwards;
}

.hero-subtitle {
    color: var(--araralab-text-secondary);
    animation: slideInUp 1s ease-out 0.4s both;
}





/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
    animation: slideInRight 1s ease-out 0.4s both;
}

.dashboard-preview {
    position: relative;
    perspective: 1000px;
}

.preview-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(51, 65, 85, 0.8));
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: all 0.3s ease;
}



.preview-header {
    background: rgba(15, 23, 42, 0.8);
    padding: 1rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-dots {
    display: flex;
    gap: 0.5rem;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(51, 65, 85, 0.5);
}

.preview-dots span:nth-child(1) { background: #ef4444; }
.preview-dots span:nth-child(2) { background: #f59e0b; }
.preview-dots span:nth-child(3) { background: #10b981; }



.preview-content {
    display: flex;
    min-height: 300px;
}

.preview-sidebar {
    width: 80px;
    background: rgba(15, 23, 42, 0.6);
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-item {
    width: 100%;
    height: 40px;
    background: rgba(51, 65, 85, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(148, 163, 184, 0.7);
    font-size: 1.1rem;
}

.sidebar-item.active {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.sidebar-item:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    transform: translateX(2px);
}

.preview-main {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.preview-title h3 {
    color: var(--araralab-text);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.preview-title p {
    color: var(--araralab-text-muted);
    font-size: 0.9rem;
    margin: 0;
    margin-top: 0.25rem;
}



.preview-chart {
    height: 140px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.3), rgba(30, 41, 59, 0.3));
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
    padding: 1rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-title {
    color: var(--araralab-text);
    font-size: 0.9rem;
    font-weight: 600;
}

.chart-legend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--araralab-text-muted);
    font-size: 0.75rem;
}

.legend-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
}

.chart-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: calc(100% - 2rem);
}

.chart-bars {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.5rem;
    padding-bottom: 1.5rem;
    position: relative;
}

.chart-bars::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(148, 163, 184, 0.2);
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #3b82f6, #60a5fa);
    border-radius: 4px 4px 0 0;
    min-height: 10px;
    position: relative;
    transition: all 0.3s ease;
    animation: barGrow 1.5s ease-out forwards;
}



.chart-labels {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.chart-labels span {
    flex: 1;
    text-align: center;
    color: var(--araralab-text-muted);
    font-size: 0.7rem;
    font-weight: 500;
}

.preview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.preview-card-item {
    height: 60px;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(51, 65, 85, 0.2);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.75rem;
    transition: all 0.3s ease;
}



.card-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.card-content {
    flex: 1;
}

.card-title {
    color: var(--araralab-text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.card-value {
    color: var(--araralab-text);
    font-size: 1.2rem;
    font-weight: 700;
}



/* Glow Effects */
.glow-effect {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(96, 165, 250, 0.2));
    filter: blur(30px);
    animation: pulse 4s ease-in-out infinite;
}

.glow-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.glow-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    animation-delay: 2s;
}

.glow-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: -20px;
    animation-delay: 4s;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes expandLine {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes barGrow {
    from {
        transform: scaleY(0);
        opacity: 0;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes slideInfoFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .preview-content {
        flex-direction: column;
    }
    
    .preview-sidebar {
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }
    
    .preview-cards {
        grid-template-columns: 1fr;
    }
    
    .preview-chart {
        height: 120px;
        padding: 0.75rem;
    }
    
    .chart-labels span {
        font-size: 0.65rem;
    }
}

/* Font family */
.font-inter {
    font-family: 'Inter', system-ui, sans-serif;
}

/* Background colors */
.bg-araralab-dark {
    background-color: var(--araralab-dark);
}

.bg-araralab-dark-secondary {
    background-color: var(--araralab-dark-secondary);
}

.bg-araralab-dark-tertiary {
    background-color: var(--araralab-dark-tertiary);
}

/* Text colors */
.text-araralab-text {
    color: var(--araralab-text);
}

.text-araralab-text-secondary {
    color: var(--araralab-text-secondary);
}

.text-araralab-text-muted {
    color: var(--araralab-text-muted);
}

/* Smooth transitions */
.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-colors {
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-transform {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Feature cards hover effects */
.feature-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.feature-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-link:hover .bi-arrow-right {
    transform: translateX(4px);
}

/* Enhanced Navbar */
.navbar {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(15, 23, 42, 0.95);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    animation: slideInDown 0.8s ease-out;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    min-height: 60px;
}

.navbar-brand img {
    width: 180px !important;
    height: 50px !important;
    object-fit: cover;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem;
}

.navbar .btn {
    padding: 0.4rem 1rem !important;
    font-size: 0.85rem;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Custom scrolling behavior */
html {
    scroll-behavior: smooth;
}

/* Logo styles */
.navbar-brand img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

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

/* Footer logo */
footer .d-flex.align-items-center img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

footer .d-flex.align-items-center:hover img {
    transform: scale(1.05);
}

/* Background gradients */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--araralab-blue), var(--araralab-blue-light));
}

.bg-gradient-dark {
    background: linear-gradient(135deg, var(--araralab-dark), var(--araralab-dark-secondary));
}

.bg-gradient-card {
    background: linear-gradient(135deg, var(--araralab-dark-secondary), var(--araralab-dark-tertiary));
}

/* Text gradients */
.text-gradient-primary {
    background: linear-gradient(135deg, var(--araralab-blue), var(--araralab-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Screenshot Demo Section Styles */
.screenshot-demo {
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.screenshot-container {
    position: relative;
    width: 100%;
    height: 600px;
    perspective: 1000px;
}

.screenshot-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.screenshot-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 3;
}

.screenshot-slide.prev {
    transform: translateX(-100%) scale(0.9);
    z-index: 2;
}

.screenshot-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.screenshot-slide picture {
    width: 100%;
    height: 100%;
    display: block;
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-slide:hover .screenshot-overlay {
    opacity: 1;
}

/* Slide Info Display */
.slide-info-display {
    text-align: center;
    margin-bottom: 2rem;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slide-info-content {
    max-width: 600px;
    animation: slideInfoFade 0.6s ease-out;
}

.slide-title {
    color: var(--araralab-text);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-description {
    color: var(--araralab-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.screenshot-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.screenshot-description {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.screenshot-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 10;
}

.screenshot-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

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

.screenshot-nav-btn:hover::before {
    left: 100%;
}

.screenshot-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
    animation: pulse 1s infinite;
}

.screenshot-nav-btn:active {
    transform: scale(0.95);
}

.screenshot-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.screenshot-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #334155;
    cursor: pointer;
    transition: all 0.3s ease;
}

.screenshot-indicator.active {
    background: #3b82f6;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
    animation: pulse 2s infinite;
}

.screenshot-indicator:hover {
    background: #60a5fa;
    transform: scale(1.1);
}



/* Enhanced Floating elements for demo section */
.demo-floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--araralab-blue), var(--araralab-blue-light));
    opacity: 0.15;
    filter: blur(20px);
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.demo-floating-element:hover {
    opacity: 0.3;
    filter: blur(15px);
    transform: scale(1.2);
}

.demo-floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.demo-floating-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.demo-floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .screenshot-container {
        height: 700px;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .screenshot-slide {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        border: 2px solid rgba(59, 130, 246, 0.2);
    }
    
    .screenshot-slide.active {
        transform: translateX(0) scale(1);
        z-index: 3;
    }
    
    .screenshot-slide.prev {
        transform: translateX(-100%) scale(0.9);
        z-index: 1;
    }
    
    .screenshot-nav {
        padding: 0 0.5rem;
    }
    
    .screenshot-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        background: rgba(59, 130, 246, 0.9);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .screenshot-info {
        padding: 1.5rem;
    }
    
    .screenshot-title {
        font-size: 1.25rem;
    }
    
    .screenshot-slide picture {
        width: 100%;
        height: 100%;
        display: block;
        padding: 10px;
        box-sizing: border-box;
    }
    
    .screenshot-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 12px;
        display: block;
        background: #1e293b;
    }
    
    .screenshot-overlay {
        border-radius: 18px;
    }
    
    .screenshot-indicators {
        margin-top: 1.5rem;
        gap: 0.5rem;
    }
    
    .screenshot-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
    }
    
    .slide-info-display {
        margin-bottom: 1.5rem;
        min-height: 60px;
    }
    
    .slide-title {
        font-size: 1.3rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
    }
}

/* Smartphone specific styles */
@media (max-width: 480px) {
    .screenshot-container {
        height: 600px;
        max-width: 300px;
    }
    
    .screenshot-slide {
        border-radius: 16px;
    }
    
    .screenshot-slide img {
        border-radius: 14px;
    }
    
    .screenshot-overlay {
        border-radius: 14px;
    }
    
    .screenshot-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .slide-title {
        font-size: 1.2rem;
    }
    
    .slide-description {
        font-size: 0.85rem;
    }
    
    .screenshot-indicators {
        margin-top: 1rem;
    }
}

/* Features Grid Responsive */
@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        max-width: 100%;
    }
    
    .feature-card {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon {
        font-size: 1.5rem;
        border-radius: 16px;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

/* Custom responsive utilities */
@media (max-width: 768px) {
    .display-2 {
        font-size: 2.5rem;
    }
    
    .display-3 {
        font-size: 2rem;
    }
}

/* Loading animation for smooth rendering */
body {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Modern Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    position: relative;
}

.feature-card {
    position: relative;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(96, 165, 250, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
}

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

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.3);
    background: rgba(30, 41, 59, 0.9);
}

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

.feature-icon {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #3b82f6;
    transition: all 0.4s ease;
    z-index: 2;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(96, 165, 250, 0.2));
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-description {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.feature-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transition: width 0.3s ease;
}

.feature-link:hover::before {
    width: 100%;
}

.feature-link:hover {
    color: #60a5fa;
    transform: translateX(4px);
}

.link-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-link:hover .link-arrow {
    background: rgba(59, 130, 246, 0.2);
    transform: translateX(4px);
}

.feature-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
}

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

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    overflow: hidden;
}

.modern-footer .container-fluid {
    padding: 2rem 0 !important;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    max-width: 400px;
}

.footer-title {
    color: #f1f5f9;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    z-index: 2;
}

.modern-footer .container-fluid {
    padding: 2rem 0 !important;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    max-width: 400px;
}

.footer-title {
    color: #f1f5f9;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    z-index: 2;
}

.footer-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none;
}

.footer-brand-section {
    position: relative;
    z-index: 2;
}



.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    color: #3b82f6;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    animation: pulse 1s infinite;
}

.footer-section {
    position: relative;
    z-index: 2;
}



.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #3b82f6;
    padding-left: 8px;
}

.footer-link:hover::before {
    width: 100%;
}



.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.copyright {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-legal {
        justify-content: flex-end;
    }
}

.legal-link {
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.legal-link:hover {
    color: #3b82f6;
}

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

/* Custom button hover effects */
.btn:hover {
    transform: translateY(-1px);
}

/* Shadow utilities */
.shadow-elegant {
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.3);
}

.shadow-glow {
    box-shadow: 0 0 40px rgba(96, 165, 250, 0.4);
}

/* Custom container max-width */
.max-w-7xl {
    max-width: 80rem;
}

/* Navbar mobile improvements */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(30, 41, 59, 0.95);
        backdrop-filter: blur(12px);
        border-radius: 0.75rem;
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid #334155;
    }
}

/* Link hover animations */
a {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Floating elements animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

/* Custom focus states */
.btn:focus,
.nav-link:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Performance optimizations */
.feature-card,
.btn,
.nav-link {
    will-change: transform;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card {
        border: 2px solid #3b82f6 !important;
    }
    
    .btn-outline-primary {
        border-width: 2px;
    }
}

/* Enhanced Button Styles */
.btn-outline-primary {
    border: 2px solid var(--araralab-blue);
    color: var(--araralab-blue);
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

.btn-outline-primary:hover::before {
    left: 100%;
}

.btn-outline-primary:hover {
    background: var(--araralab-blue);
    color: var(--araralab-text);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    border-color: var(--araralab-blue-light);
}

.btn-outline-primary:active {
    transform: translateY(-1px) scale(0.98);
}

/* Enhanced Primary Button */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

/* Card styles */
.card {
    border: 1px solid var(--araralab-dark-tertiary);
    background: var(--araralab-dark-secondary);
}

.card:hover {
    border-color: var(--araralab-blue);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
}

/* Selection styles */
::selection {
    background: var(--araralab-blue);
    color: var(--araralab-text);
}

::-moz-selection {
    background: var(--araralab-blue);
    color: var(--araralab-text);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--araralab-blue-light);
} 