/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Custom Colors */
:root {
    --primary-color: #2ECC71;
    --secondary-color: #6c757d;
    --dark-color: #000000;
    --light-color: #ffffff;
    --gray-color: #f8f9fa;
}

/* Navigation Styles */
.navbar {
    background-color: var(--dark-color) !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem !important;
    font-weight: 700;
}

.navbar-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    transition: all 0.3s ease;
}

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

.navbar-nav .nav-link {
    color: var(--light-color) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}



/* Improved dropdown behavior */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Restored original hover behavior for all dropdowns */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Prevent dropdown from closing on click inside mega menu */
.mega-menu {
    pointer-events: auto;
}

.mega-menu .dropdown-item:hover {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--primary-color);
}

/* Enhanced dropdown styling */
.dropdown-header {
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--primary-color);
}

.dropdown-divider {
    margin: 0.5rem 0;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
    object-fit: cover;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: -2;
    /* Fallback caso a imagem não carregue */
    background-color: #1a1a2e;
}

.hero-image.image-loaded {
    /* Adiciona uma transição suave quando a imagem carrega */
    transition: opacity 0.5s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
}

/* Typing Animation */
.typed-text {
    font-weight: 700;
    color: var(--primary-color);
}

.cursor {
    display: inline-block;
    font-weight: 400;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Buttons */
.btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 51, 0.3);
}

.btn-outline-light {
    border-color: var(--light-color);
    color: var(--light-color);
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Sections */
section {
    padding: 5rem 0;
}

/* Solutions Section */
.solution-card {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.solution-icon {
    background: linear-gradient(135deg, var(--primary-color), #27ae60);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

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

/* Blog Section */
.blog-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-image img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
    transition: opacity 0.3s ease;
    opacity: 0;
}

.blog-card:hover .blog-image::after {
    opacity: 1;
}

/* Contact Section */
.contact-image img {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-image:hover img {
    transform: scale(1.02);
}

.contact-info .d-flex {
    padding: 15px;
    border-radius: 10px;
    background: rgba(46, 204, 113, 0.05);
    transition: all 0.3s ease;
}

.contact-info .d-flex:hover {
    background: rgba(46, 204, 113, 0.1);
    transform: translateX(10px);
}

.contact-buttons .btn {
    border-radius: 30px;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Service Pages Styles */
.service-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.service-hero .container {
    position: relative;
    z-index: 1;
}

.service-hero h1 {
    margin-top: 0;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
}

.service-hero .lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.service-detail-card {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.service-detail-card .service-icon {
    background: linear-gradient(135deg, var(--primary-color), #27ae60);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

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

.challenge-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    background: white;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.challenge-card .card-title {
    font-size: 1rem;
    font-weight: 600;
}

.result-card {
    transition: all 0.3s ease;
    border-radius: 15px;
    background: white;
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.result-card .result-icon {
    transition: all 0.3s ease;
}

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

.result-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

/* Business Intelligence Page Styles */
.bi-feature-box {
    transition: all 0.3s ease;
    text-align: center;
}

.bi-feature-box:hover {
    background-color: rgba(46, 204, 113, 0.1) !important;
    transform: translateY(-3px);
}

.bi-dashboard-preview {
    transition: all 0.3s ease;
}

.bi-dashboard-preview:hover {
    transform: translateY(-5px);
}

.metric-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::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;
}

.metric-card:hover::before {
    left: 100%;
}

.chart-placeholder {
    display: flex;
    align-items: end;
    gap: 10px;
    padding: 20px;
    min-height: 120px;
}

.benefit-card {
    padding: 2rem 0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: rgba(46, 204, 113, 0.2);
    transform: scale(1.1);
}

.use-case-card {
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.metric-highlight {
    background: rgba(46, 204, 113, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
}

.process-step {
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background-color: var(--primary-color) !important;
    transform: scale(1.1);
}

/* Automação & RPA Page Styles */
.tool-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
}

.tool-item:hover {
    background-color: rgba(46, 204, 113, 0.05);
    transform: translateX(10px);
}

.tool-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tool-item:hover .tool-icon {
    background: rgba(46, 204, 113, 0.2);
    transform: scale(1.1);
}

.automation-flow {
    transition: all 0.3s ease;
}

.automation-flow:hover {
    transform: translateY(-5px);
}

.flow-step {
    transition: all 0.3s ease;
}

.flow-step:hover {
    background-color: rgba(46, 204, 113, 0.05);
    border-radius: 8px;
    padding: 0.5rem;
}

.step-circle {
    transition: all 0.3s ease;
}

.flow-step:hover .step-circle {
    transform: scale(1.1);
}

.flow-arrow {
    transition: all 0.3s ease;
}

.automation-flow:hover .flow-arrow {
    color: var(--primary-color) !important;
    transform: scale(1.2);
}

.success-case {
    transition: all 0.3s ease;
}

.success-case:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.metrics-row .metric {
    transition: all 0.3s ease;
}

.success-case:hover .metric {
    transform: scale(1.05);
}

.tool-showcase .tool-item {
    border-left: 4px solid transparent;
}

.tool-showcase .tool-item:hover {
    border-left-color: var(--primary-color);
}

/* IA & Machine Learning Page Styles */
.benefit-icon-sm {
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon-sm {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.ai-demo-panel {
    transition: all 0.3s ease;
}

.ai-demo-panel:hover {
    transform: translateY(-5px);
}

.prediction-card {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.prediction-card:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.sector-card {
    transition: all 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.sector-metrics .col-4 {
    transition: all 0.3s ease;
}

.sector-card:hover .sector-metrics .col-4 {
    transform: scale(1.05);
}

.timeline-item {
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-10px);
}

.timeline-number {
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.timeline-item:hover .timeline-number {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.ai-benefits .benefit-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
}

.ai-benefits .benefit-item:hover {
    background-color: rgba(46, 204, 113, 0.05);
    transform: translateX(10px);
}

/* Data Analytics Page Styles */
.data-value-chain {
    position: relative;
}

.value-step {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
}

.value-step:hover {
    background-color: rgba(46, 204, 113, 0.05);
    transform: translateX(10px);
}

.step-icon {
    transition: all 0.3s ease;
}

.value-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.arrow-down {
    transition: all 0.3s ease;
}

.data-value-chain:hover .arrow-down {
    color: var(--primary-color) !important;
    transform: scale(1.2);
}

.analytics-dashboard {
    transition: all 0.3s ease;
}

.analytics-dashboard:hover {
    transform: translateY(-5px);
}

.insight-card {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.insight-card:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    background-color: rgba(46, 204, 113, 0.05) !important;
}

.use-case-card {
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.metrics-showcase .col-4 {
    transition: all 0.3s ease;
}

.use-case-card:hover .metrics-showcase .col-4 {
    transform: scale(1.05);
}

.tech-card {
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color) !important;
}

.tech-card i {
    transition: all 0.3s ease;
}

.tech-card:hover i {
    transform: scale(1.2);
}

.methodology-step {
    transition: all 0.3s ease;
}

.methodology-step:hover {
    transform: translateY(-10px);
}

.step-number {
    transition: all 0.3s ease;
}

.methodology-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.methodology-timeline:hover .methodology-step:not(:hover) {
    opacity: 0.7;
}

/* Engenharia de Dados Page Styles */
.data-pipeline {
    position: relative;
}

.pipeline-step {
    transition: all 0.3s ease;
}

.pipeline-step:hover {
    transform: translateY(-10px);
}

.step-icon {
    transition: all 0.3s ease;
}

.pipeline-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.data-pipeline:hover .pipeline-step:not(:hover) {
    opacity: 0.7;
}

.architecture-diagram {
    transition: all 0.3s ease;
}

.architecture-diagram:hover {
    transform: translateY(-5px);
}

.layer {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.layer:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.layer .badge {
    transition: all 0.3s ease;
}

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

.success-story {
    transition: all 0.3s ease;
}

.success-story:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.metrics-grid .col-4 {
    transition: all 0.3s ease;
}

.success-story:hover .metrics-grid .col-4 {
    transform: scale(1.05);
}

.phase-card {
    transition: all 0.3s ease;
}

.phase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color) !important;
}

.phase-number {
    transition: all 0.3s ease;
}

.phase-card:hover .phase-number {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.implementation-phases:hover .phase-card:not(:hover) {
    opacity: 0.8;
}

.architecture-benefits .benefit-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
}

.architecture-benefits .benefit-item:hover {
    background-color: rgba(46, 204, 113, 0.05);
    transform: translateX(10px);
}

.benefit-icon {
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Industry Pages Styles */
.health-stats .stat-item,
.education-trends .trend-item,
.retail-trends .trend-item,
.fintech-trends .trend-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
}

.health-stats .stat-item:hover,
.education-trends .trend-item:hover,
.retail-trends .trend-item:hover,
.fintech-trends .trend-item:hover {
    background-color: rgba(46, 204, 113, 0.05);
    transform: translateX(10px);
}

.stat-icon,
.trend-icon {
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon,
.trend-item:hover .trend-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.health-dashboard,
.education-dashboard,
.retail-dashboard,
.fintech-dashboard {
    transition: all 0.3s ease;
}

.health-dashboard:hover,
.education-dashboard:hover,
.retail-dashboard:hover,
.fintech-dashboard:hover {
    transform: translateY(-5px);
}

.solution-card {
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.investment-reason {
    transition: all 0.3s ease;
}

.investment-reason:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.reason-icon {
    transition: all 0.3s ease;
}

.investment-reason:hover .reason-icon {
    transform: scale(1.1);
}

.metric-highlight {
    transition: all 0.3s ease;
}

.investment-reason:hover .metric-highlight {
    transform: scale(1.05);
}

.roi-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
}

.roi-item:hover {
    background-color: rgba(46, 204, 113, 0.05);
    transform: translateX(5px);
}

.roi-chart {
    transition: all 0.3s ease;
}

.roi-chart:hover {
    transform: translateY(-5px);
}

.period-metric {
    transition: all 0.3s ease;
}

.period-metric:hover {
    transform: scale(1.05);
}

.challenge-icon {
    transition: all 0.3s ease;
}

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

.services-used .badge {
    transition: all 0.3s ease;
}

.solution-card:hover .services-used .badge {
    transform: scale(1.05);
}

.bg-light {
    background-color: var(--gray-color) !important;
}

/* Footer */
footer {
    background-color: var(--dark-color) !important;
}

footer h5, footer h6 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
}

footer .text-white-50 {
    transition: color 0.3s ease;
}

footer .text-white-50:hover {
    color: var(--primary-color) !important;
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 180px;
    filter: brightness(0) invert(1); /* Torna o logo branco no footer */
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(120deg); /* Efeito verde no hover */
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    

}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem !important;
    }
    
    .navbar-logo {
        height: 35px;
        max-width: 120px;
    }
    
    .footer-logo {
        height: 40px;
        max-width: 140px;
    }
    
    .contact-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .contact-content {
        text-align: center;
    }
    
    .solution-card, .blog-card {
        margin-bottom: 30px;
    }
    
    .service-hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: 60vh;
    }
    
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-hero .lead {
        font-size: 1.1rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.hero-video {
    transition: opacity 0.5s ease;
}

.hero-video.loading {
    opacity: 0;
}

/* Video Fallback */
.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    z-index: -2;
    overflow: hidden;
}

.video-fallback::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: scan 4s infinite;
}

.video-fallback::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 255, 198, 0.3) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(-10px) rotate(-1deg); }
}

/* Improved background for hero when video fails */
.hero-section.no-video {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #2ECC71;
} 