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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: #1d4ed8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding-top: 70px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.6s both;
    position: relative;
}

.hero-animation-container {
    width: 500px;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Computer */
.computer {
    position: absolute;
    left: 50px;
    bottom: 50px;
    z-index: 5;
    animation: computerGlow 4s ease-in-out infinite;
}

.computer-screen {
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 8px 8px 0 0;
    border: 2px solid #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.screen-content {
    text-align: center;
    color: white;
}

.file-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
    animation: filePulse 2s ease-in-out infinite;
}

.file-name {
    font-size: 0.7rem;
    font-family: 'Courier New', monospace;
    color: #10b981;
}

.computer-base {
    width: 140px;
    height: 10px;
    background: linear-gradient(135deg, #475569 0%, #64748b 100%);
    border-radius: 0 0 8px 8px;
    margin: 0 auto;
}

/* Bee Character */
.bee-character {
    position: absolute;
    left: 200px;
    bottom: 150px;
    z-index: 15;
    animation: beeJourney 8s ease-in-out infinite;
}

.bee-body {
    width: 60px;
    height: 45px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 25px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bee-stripes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 80%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 12px,
        #1f2937 12px,
        #1f2937 16px
    );
    border-radius: 20px;
    opacity: 0.8;
}

.bee-wings {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 30px;
}

.wing {
    position: absolute;
    width: 40px;
    height: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: wingFlap 0.1s ease-in-out infinite alternate;
}

.wing-left {
    left: 0;
    transform-origin: right center;
}

.wing-right {
    right: 0;
    transform-origin: left center;
    animation-delay: 0.05s;
}

.bee-antennae {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
}

.antenna {
    position: absolute;
    width: 2px;
    height: 12px;
    background: #1f2937;
    border-radius: 1px;
}

.antenna::after {
    content: '';
    position: absolute;
    top: -2px;
    width: 4px;
    height: 4px;
    background: #fbbf24;
    border-radius: 50%;
}

.antenna-left {
    left: 8px;
    transform: rotate(-20deg);
}

.antenna-right {
    right: 8px;
    transform: rotate(20deg);
}

.bee-stinger {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 15px;
    background: linear-gradient(to bottom, #1f2937 0%, #374151 100%);
    border-radius: 0 0 1px 1px;
}

.bee-stinger::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    border-top: 4px solid #374151;
}

/* Carried File */
.carried-file {
    position: absolute;
    top: -25px;
    right: -15px;
    animation: fileBounce 0.5s ease-in-out infinite alternate;
}

.file-paper {
    font-size: 1.2rem;
    background: white;
    border-radius: 4px;
    padding: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transform: rotate(15deg);
}

/* Bee Design */
.bee {
    width: 80px;
    height: 60px;
    position: relative;
    animation: beeHoldChart 4s ease-in-out infinite;
}

.bee-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 30px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bee-stripes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 80%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 15px,
        #1f2937 15px,
        #1f2937 20px
    );
    border-radius: 25px;
    opacity: 0.8;
}

/* Bee Wings */
.bee-wings {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 40px;
}

.wing {
    position: absolute;
    width: 50px;
    height: 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: wingFlap 0.15s ease-in-out infinite alternate;
}

.wing-left {
    left: 0;
    transform-origin: right center;
}

.wing-right {
    right: 0;
    transform-origin: left center;
    animation-delay: 0.1s;
}

/* Bee Antennae */
.bee-antennae {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
}

.antenna {
    position: absolute;
    width: 2px;
    height: 15px;
    background: #1f2937;
    border-radius: 1px;
}

.antenna::after {
    content: '';
    position: absolute;
    top: -3px;
    width: 6px;
    height: 6px;
    background: #fbbf24;
    border-radius: 50%;
}

.antenna-left {
    left: 10px;
    transform: rotate(-20deg);
}

.antenna-right {
    right: 10px;
    transform: rotate(20deg);
}

/* Bee Stinger */
.bee-stinger {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 20px;
    background: linear-gradient(to bottom, #1f2937 0%, #374151 100%);
    border-radius: 0 0 2px 2px;
    z-index: 5;
}

.bee-stinger::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 6px solid #374151;
}

/* Animated Chart */
.animated-chart {
    position: absolute;
    right: 50px;
    bottom: 50px;
    width: 250px;
    height: 150px;
    z-index: 10;
}

.chart-container {
    position: relative;
    width: 100%;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.chart-grid {
    position: absolute;
    width: 100%;
    height: 100%;
}

.grid-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.grid-line:nth-child(1) { top: 25%; }
.grid-line:nth-child(2) { top: 50%; }
.grid-line:nth-child(3) { top: 75%; }
.grid-line:nth-child(4) { top: 100%; }

.chart-line {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.chart-segment {
    flex: 1;
    background: linear-gradient(to top, #fbbf24 0%, #f59e0b 100%);
    margin: 0 1px;
    transform: scaleY(0);
    transform-origin: bottom;
    animation: segmentGrow 8s ease-out infinite;
}

.segment-1 { animation-delay: 2s; }
.segment-2 { animation-delay: 3s; }
.segment-3 { animation-delay: 4s; }
.segment-4 { animation-delay: 5s; }

.chart-points {
    position: absolute;
    width: 100%;
    height: 100%;
}

.chart-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50%;
    border: 2px solid white;
    bottom: 0;
    opacity: 0;
    animation: pointAppear 8s ease-out infinite;
}

.point-1 { left: 12.5%; animation-delay: 2.5s; }
.point-2 { left: 37.5%; animation-delay: 3.5s; }
.point-3 { left: 62.5%; animation-delay: 4.5s; }
.point-4 { left: 87.5%; animation-delay: 5.5s; }

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding: 0 10px;
}

.label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Success Effects */
.success-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0;
    animation: sparkleEffect 8s ease-out infinite;
}

.sparkle-1 { top: 30%; right: 30%; animation-delay: 6s; }
.sparkle-2 { top: 50%; right: 20%; animation-delay: 6.5s; }
.sparkle-3 { top: 70%; right: 40%; animation-delay: 7s; }
.sparkle-4 { top: 40%; right: 10%; animation-delay: 7.5s; }

/* Data Flow Lines */
.data-flow {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.flow-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #fbbf24 50%, transparent 100%);
    opacity: 0;
    animation: dataFlow 8s ease-out infinite;
}

.flow-1 {
    top: 40%;
    left: 30%;
    width: 100px;
    transform: rotate(15deg);
    animation-delay: 1s;
}

.flow-2 {
    top: 50%;
    left: 40%;
    width: 80px;
    transform: rotate(10deg);
    animation-delay: 1.5s;
}

.flow-3 {
    top: 60%;
    left: 35%;
    width: 90px;
    transform: rotate(20deg);
    animation-delay: 2s;
}

.chart-line {
    position: relative;
    width: 100%;
    height: 100px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 100%);
    border-radius: 10px;
    overflow: hidden;
}

.chart-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 25%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0.6) 75%, 
        rgba(255, 255, 255, 0.8) 100%
    );
    clip-path: polygon(0 100%, 25% 80%, 50% 60%, 75% 40%, 100% 20%, 100% 100%);
    animation: chartGrow 3s ease-out forwards;
}

.chart-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(to top, #fbbf24 0%, #f59e0b 100%);
    border-radius: 2px;
    animation: stingerPulse 2s ease-in-out infinite;
}

.chart-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fbbf24;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: pointPulse 2s ease-in-out infinite;
}

.point-1 { bottom: 20%; left: 25%; animation-delay: 0s; }
.point-2 { bottom: 40%; left: 50%; animation-delay: 0.5s; }
.point-3 { bottom: 60%; left: 75%; animation-delay: 1s; }
.point-4 { bottom: 80%; left: 100%; animation-delay: 1.5s; }

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding: 0 10px;
}

.label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Data Particles */
.data-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    font-size: 1.5rem;
    animation: particleFloat 4s ease-in-out infinite;
    opacity: 0.8;
}

.particle-1 { top: 20%; left: 20%; animation-delay: 0s; }
.particle-2 { top: 30%; right: 25%; animation-delay: 1s; }
.particle-3 { bottom: 30%; left: 15%; animation-delay: 2s; }
.particle-4 { top: 60%; right: 15%; animation-delay: 0.5s; }
.particle-5 { bottom: 20%; right: 30%; animation-delay: 1.5s; }
.particle-6 { top: 40%; left: 10%; animation-delay: 2.5s; }

/* Growth Indicators */
.growth-indicators {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.indicator {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: indicatorPulse 2s ease-in-out infinite;
}

.indicator-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #10b981 0%, transparent 100%);
    border-radius: 1px;
}

.indicator-1 { top: 25%; right: 20%; animation-delay: 0s; }
.indicator-2 { top: 45%; right: 35%; animation-delay: 0.7s; }
.indicator-3 { top: 65%; right: 50%; animation-delay: 1.4s; }

/* Complex Animation Sequence */
@keyframes computerGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.3));
    }
    50% { 
        filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.6));
    }
}

@keyframes filePulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1;
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8;
    }
}

@keyframes beeJourney {
    0% {
        left: 50px;
        bottom: 150px;
        transform: scale(1.5);
    }
    25% {
        left: 150px;
        bottom: 180px;
        transform: scale(1.5);
    }
    50% {
        left: 250px;
        bottom: 150px;
        transform: scale(1.5);
    }
    75% {
        left: 350px;
        bottom: 180px;
        transform: scale(1.5);
    }
    100% {
        left: 50px;
        bottom: 150px;
        transform: scale(1.5);
    }
}

@keyframes wingFlap {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(80deg); }
}

@keyframes fileBounce {
    0% { 
        transform: translateY(0px) rotate(15deg); 
    }
    100% { 
        transform: translateY(-3px) rotate(15deg); 
    }
}

@keyframes segmentGrow {
    0% { 
        transform: scaleY(0); 
    }
    100% { 
        transform: scaleY(1); 
    }
}

@keyframes pointAppear {
    0% { 
        opacity: 0; 
        transform: scale(0);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2);
    }
    100% { 
        opacity: 1; 
        transform: scale(1);
    }
}

@keyframes sparkleEffect {
    0% { 
        opacity: 0; 
        transform: scale(0) rotate(0deg);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.2) rotate(180deg);
    }
    100% { 
        opacity: 0; 
        transform: scale(0) rotate(360deg);
    }
}

@keyframes dataFlow {
    0% { 
        opacity: 0; 
        transform: scaleX(0);
    }
    50% { 
        opacity: 1; 
        transform: scaleX(1);
    }
    100% { 
        opacity: 0; 
        transform: scaleX(0);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8fafc;
}

/* DataBee Section */
.databee {
    padding: 100px 0;
    background: white;
}

.databee-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.databee-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.databee-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.databee-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.feature:nth-child(1) .feature-icon-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature:nth-child(2) .feature-icon-wrapper {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.feature:nth-child(3) .feature-icon-wrapper {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.feature:nth-child(4) .feature-icon-wrapper {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.feature:nth-child(5) .feature-icon-wrapper {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.feature:nth-child(6) .feature-icon-wrapper {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.feature:nth-child(7) .feature-icon-wrapper {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.feature:nth-child(8) .feature-icon-wrapper {
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature:hover .feature-icon-wrapper::before {
    transform: translateX(100%);
}

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

.feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.feature-description {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

.databee-cta {
    margin: 2rem 0;
    text-align: center;
}

.databee-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.databee-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.databee-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.databee-icon-stack {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.databee-icon-main {
    font-size: 4rem;
    color: white;
    position: relative;
    z-index: 3;
    animation: pulse 2s infinite;
}

.databee-icon-overlay {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.databee-icon-accent {
    font-size: 1.5rem;
    color: #f093fb;
    position: absolute;
    top: 20%;
    right: 20%;
    z-index: 4;
    animation: sparkle 2.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes sparkle {
    0%, 100% { opacity: 0.7; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.about-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.stat h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #6b7280;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.why-choose-us .section-header p {
    color: white !important;
    opacity: 0.9;
}

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

.why-choose-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.why-choose-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.why-choose-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.contact-item p {
    color: #6b7280;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

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

.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-buttons .btn {
    flex: 1;
}





/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f9fafb;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #2563eb;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-bee-graphic {
        width: 300px;
        height: 300px;
    }

    .growth-chart {
        width: 250px;
        height: 120px;
    }

    .chart-line {
        height: 80px;
    }

    .bee {
        width: 60px;
        height: 45px;
    }

    .bee-container {
        bottom: 100px;
    }

    .bee-wings {
        width: 90px;
        height: 30px;
    }

    .wing {
        width: 40px;
        height: 25px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .databee-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .databee-features {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-animation-container {
        width: 350px;
        height: 300px;
    }

    .computer {
        left: 30px;
        bottom: 30px;
    }

    .computer-screen {
        width: 80px;
        height: 60px;
    }

    .bee-character {
        left: 140px;
        bottom: 100px;
    }

    .bee-body {
        width: 50px;
        height: 35px;
    }

    .bee-wings {
        width: 70px;
        height: 25px;
    }

    .wing {
        width: 30px;
        height: 20px;
    }

    .animated-chart {
        right: 30px;
        bottom: 30px;
        width: 180px;
        height: 120px;
    }

    .chart-container {
        height: 90px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .databee-features {
        grid-template-columns: 1fr;
    }
} 

/* Home Page Bee Graphic */
.hero-bee-graphic {
    width: 400px;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Bee Container */
.bee-container {
    position: absolute;
    bottom: 180px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Bee Design */
.bee {
    width: 80px;
    height: 60px;
    position: relative;
    animation: beeHoldChart 4s ease-in-out infinite;
}

.bee-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 30px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bee-stripes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 80%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 15px,
        #1f2937 15px,
        #1f2937 20px
    );
    border-radius: 25px;
    opacity: 0.8;
}

/* Bee Wings */
.bee-wings {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 40px;
}

.wing {
    position: absolute;
    width: 50px;
    height: 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: wingFlap 0.15s ease-in-out infinite alternate;
}

.wing-left {
    left: 0;
    transform-origin: right center;
}

.wing-right {
    right: 0;
    transform-origin: left center;
    animation-delay: 0.05s;
}

/* Bee Antennae */
.bee-antennae {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
}

.antenna {
    position: absolute;
    width: 2px;
    height: 15px;
    background: #1f2937;
    border-radius: 1px;
}

.antenna::after {
    content: '';
    position: absolute;
    top: -3px;
    width: 6px;
    height: 6px;
    background: #fbbf24;
    border-radius: 50%;
}

.antenna-left {
    left: 10px;
    transform: rotate(-20deg);
}

.antenna-right {
    right: 10px;
    transform: rotate(20deg);
}

/* Bee Stinger */
.bee-stinger {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 20px;
    background: linear-gradient(to bottom, #1f2937 0%, #374151 100%);
    border-radius: 0 0 2px 2px;
}

.bee-stinger::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 6px solid #374151;
}

/* Growth Chart */
.growth-chart {
    position: relative;
    width: 300px;
    height: 150px;
    margin: 0 auto;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 10px;
    margin-top: 0;
    z-index: 2;
}

.label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Data Particles */
.data-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    font-size: 1.5rem;
    animation: particleFloat 4s ease-in-out infinite;
    opacity: 0.8;
}

.particle-1 { top: 20%; left: 20%; animation-delay: 0s; }
.particle-2 { top: 30%; right: 25%; animation-delay: 1s; }
.particle-3 { bottom: 30%; left: 15%; animation-delay: 2s; }
.particle-4 { top: 60%; right: 15%; animation-delay: 0.5s; }
.particle-5 { bottom: 20%; right: 30%; animation-delay: 1.5s; }
.particle-6 { top: 40%; left: 10%; animation-delay: 2.5s; }

/* Growth Indicators */
.growth-indicators {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.indicator {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: indicatorPulse 2s ease-in-out infinite;
}

.indicator-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #10b981 0%, transparent 100%);
    border-radius: 1px;
}

.indicator-1 { top: 25%; right: 20%; animation-delay: 0s; }
.indicator-2 { top: 45%; right: 35%; animation-delay: 0.7s; }
.indicator-3 { top: 65%; right: 50%; animation-delay: 1.4s; } 

/* Missing Animations for Home Page */
@keyframes beeHoldChart {
    0%, 100% { 
        transform: translateY(0px) rotate(1deg); 
    }
    25% { 
        transform: translateY(-5px) rotate(-1deg); 
    }
    50% { 
        transform: translateY(-8px) rotate(2deg); 
    }
    75% { 
        transform: translateY(-3px) rotate(-2deg); 
    }
}

@keyframes chartGrow {
    0% { clip-path: polygon(0 100%, 0 100%, 0 100%, 0 100%, 0 100%, 0 100%); }
    100% { clip-path: polygon(0 100%, 25% 80%, 50% 60%, 75% 40%, 100% 20%, 100% 100%); }
}

@keyframes pointPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

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

@keyframes indicatorPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

@keyframes stingerPulse {
    0%, 100% { 
        transform: translateX(-50%) scaleY(1); 
        opacity: 1;
    }
    50% { 
        transform: translateX(-50%) scaleY(1.3); 
        opacity: 0.8;
    }
}

/* Updated DataBee Animation Styles */
.databee {
    padding: 100px 0;
    background: white;
    color: #1f2937;
}

.hero-animation-container {
    width: 500px;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Larger Bee Character for DataBee */
.bee-character {
    position: absolute;
    left: 200px;
    bottom: 150px;
    z-index: 15;
    animation: beeJourney 8s ease-in-out infinite;
    transform: scale(1.5);
}

.bee-body {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 30px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.bee-stripes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 80%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 15px,
        #1f2937 15px,
        #1f2937 20px
    );
    border-radius: 25px;
    opacity: 0.8;
}

.bee-wings {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 40px;
}

.wing {
    position: absolute;
    width: 50px;
    height: 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: wingFlap 0.1s ease-in-out infinite alternate;
}

.wing-left {
    left: 0;
    transform-origin: right center;
}

.wing-right {
    right: 0;
    transform-origin: left center;
    animation-delay: 0.05s;
}

.bee-antennae {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
}

.antenna {
    position: absolute;
    width: 2px;
    height: 15px;
    background: #1f2937;
    border-radius: 1px;
}

.antenna::after {
    content: '';
    position: absolute;
    top: -3px;
    width: 6px;
    height: 6px;
    background: #fbbf24;
    border-radius: 50%;
}

.antenna-left {
    left: 10px;
    transform: rotate(-20deg);
}

.antenna-right {
    right: 10px;
    transform: rotate(20deg);
}

.bee-stinger {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 20px;
    background: linear-gradient(to bottom, #1f2937 0%, #374151 100%);
    border-radius: 0 0 2px 2px;
}

.bee-stinger::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 6px solid #374151;
}

/* File in Bee's Hands */
.carried-file {
    position: absolute;
    top: -15px;
    right: -10px;
    animation: fileBounce 0.5s ease-in-out infinite alternate;
    z-index: 20;
}

.file-paper {
    font-size: 1rem;
    background: white;
    border-radius: 4px;
    padding: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transform: rotate(15deg);
    border: 1px solid #e5e7eb;
}

/* Computer for DataBee */
.computer {
    position: absolute;
    left: 50px;
    bottom: 50px;
    z-index: 5;
    animation: computerGlow 4s ease-in-out infinite;
}

.computer-screen {
    width: 100px;
    height: 70px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 8px 8px 0 0;
    border: 2px solid #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.screen-content {
    text-align: center;
    color: white;
}

.file-icon {
    font-size: 1.2rem;
    margin-bottom: 3px;
    animation: filePulse 2s ease-in-out infinite;
}

.file-name {
    font-size: 0.6rem;
    font-family: 'Courier New', monospace;
    color: #10b981;
}

.computer-base {
    width: 120px;
    height: 8px;
    background: linear-gradient(135deg, #475569 0%, #64748b 100%);
    border-radius: 0 0 8px 8px;
    margin: 0 auto;
}

/* Animated Chart for DataBee */
.animated-chart {
    position: absolute;
    right: 50px;
    bottom: 50px;
    width: 250px;
    height: 150px;
    z-index: 10;
}

.chart-container {
    position: relative;
    width: 100%;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.chart-grid {
    position: absolute;
    width: 100%;
    height: 100%;
}

.grid-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.grid-line:nth-child(1) { top: 25%; }
.grid-line:nth-child(2) { top: 50%; }
.grid-line:nth-child(3) { top: 75%; }
.grid-line:nth-child(4) { top: 100%; }

.chart-line {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.chart-segment {
    flex: 1;
    background: linear-gradient(to top, #fbbf24 0%, #f59e0b 100%);
    margin: 0 1px;
    transform: scaleY(0);
    transform-origin: bottom;
    animation: segmentGrow 8s ease-out infinite;
}

.segment-1 { animation-delay: 2s; }
.segment-2 { animation-delay: 3s; }
.segment-3 { animation-delay: 4s; }
.segment-4 { animation-delay: 5s; }

.chart-points {
    position: absolute;
    width: 100%;
    height: 100%;
}

.chart-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50%;
    border: 2px solid white;
    bottom: 0;
    opacity: 0;
    animation: pointAppear 8s ease-out infinite;
}

.point-1 { left: 12.5%; animation-delay: 2.5s; }
.point-2 { left: 37.5%; animation-delay: 3.5s; }
.point-3 { left: 62.5%; animation-delay: 4.5s; }
.point-4 { left: 87.5%; animation-delay: 5.5s; }

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding: 0 10px;
}

.label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Success Effects */
.success-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0;
    animation: sparkleEffect 8s ease-out infinite;
}

.sparkle-1 { top: 30%; right: 30%; animation-delay: 6s; }
.sparkle-2 { top: 50%; right: 20%; animation-delay: 6.5s; }
.sparkle-3 { top: 70%; right: 40%; animation-delay: 7s; }
.sparkle-4 { top: 40%; right: 10%; animation-delay: 7.5s; }

/* Data Flow Lines */
.data-flow {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.flow-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #fbbf24 50%, transparent 100%);
    opacity: 0;
    animation: dataFlow 8s ease-out infinite;
}

.flow-1 {
    top: 40%;
    left: 30%;
    width: 100px;
    transform: rotate(15deg);
    animation-delay: 1s;
}

.flow-2 {
    top: 50%;
    left: 40%;
    width: 80px;
    transform: rotate(10deg);
    animation-delay: 1.5s;
}

.flow-3 {
    top: 60%;
    left: 35%;
    width: 90px;
    transform: rotate(20deg);
    animation-delay: 2s;
} 

/* DataBee Power BI Dashboards Page Styles */

/* Dashboard Hero Section */
.dashboard-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.dashboard-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dashboard-hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

/* Dashboard Overview Section */
.dashboard-overview {
    padding: 100px 0;
    background: #f8fafc;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.dashboard-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dashboard-card:hover::before {
    transform: scaleX(1);
}

.dashboard-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.dashboard-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.dashboard-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dashboard-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.dashboard-link:hover {
    color: #764ba2;
}

/* Featured Dashboard Card for Real-Time Analytics */
.dashboard-card.featured {
    border: 2px solid #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.dashboard-card.featured::before {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

.dashboard-card.featured:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.dashboard-card.featured .dashboard-icon {
    color: #ffffff;
}

.dashboard-card.featured h3 {
    color: #ffffff;
}

.dashboard-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.dashboard-card.featured .dashboard-link {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 6px;
}

.dashboard-card.featured .dashboard-link:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Dashboard Detail Sections */
.dashboard-detail {
    padding: 100px 0;
    border-bottom: 1px solid #e5e7eb;
}

.dashboard-detail:nth-child(even) {
    background: #f8fafc;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 4rem;
}

.dashboard-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dashboard-title i {
    font-size: 2rem;
    color: #667eea;
}

.dashboard-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.dashboard-objective {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}



.dashboard-visuals h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-visuals h3::before {
    content: '📊';
    font-size: 1.2rem;
}

.dashboard-visuals ul {
    list-style: none;
    padding: 0;
}

.dashboard-visuals li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    line-height: 1.6;
}

.dashboard-visuals li:last-child {
    border-bottom: none;
}

.dashboard-visuals strong {
    color: #1f2937;
    font-weight: 600;
}

/* Integrated Dashboard Viewer Styles */
.dashboard-viewer {
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.dashboard-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-header h3::before {
    content: '📊';
    font-size: 1.5rem;
}

.dashboard-controls {
    display: flex;
    gap: 0.5rem;
}

.control-btn {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.control-btn:hover {
    border-color: #667eea;
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.control-btn.active {
    border-color: #667eea;
    background: #667eea;
    color: white;
}

.dashboard-iframe-container {
    position: relative;
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.dashboard-iframe-container iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.dashboard-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 10px;
}

.loading-spinner {
    text-align: center;
    color: #667eea;
}

.loading-spinner i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.loading-spinner p {
    margin: 0;
    font-weight: 500;
}

.dashboard-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.dashboard-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.dashboard-actions .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.dashboard-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.dashboard-actions .btn-secondary {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.dashboard-actions .btn-secondary:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.dashboard-actions .btn-tertiary {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.dashboard-actions .btn-tertiary:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.2);
}

/* Fullscreen Mode */
.dashboard-iframe-container.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    border-radius: 0;
    padding: 2rem;
    background: white;
}

.dashboard-iframe-container.fullscreen iframe {
    height: calc(100vh - 4rem);
}

/* Dashboard Mode Toggle */
.dashboard-iframe-container.compact iframe {
    height: 400px;
}

.dashboard-iframe-container.expanded iframe {
    height: 800px;
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    max-width: 400px;
    border-left: 4px solid #667eea;
    animation: slideInRight 0.3s ease;
}

.notification-success {
    border-left-color: #10b981;
}

.notification-error {
    border-left-color: #ef4444;
}

.notification-warning {
    border-left-color: #f59e0b;
}

.notification-info {
    border-left-color: #3b82f6;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.notification-content i {
    font-size: 1.2rem;
}

.notification-success .notification-content i {
    color: #10b981;
}

.notification-error .notification-content i {
    color: #ef4444;
}

.notification-warning .notification-content i {
    color: #f59e0b;
}

.notification-info .notification-content i {
    color: #3b82f6;
}

.notification-close {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.notification-close:hover {
    background: #f3f4f6;
    color: #374151;
}

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

/* Responsive adjustments for dashboard controls */
@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .dashboard-controls {
        align-self: flex-end;
    }
    
    .dashboard-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .dashboard-actions .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .notification {
        left: 20px;
        right: 20px;
        min-width: auto;
        max-width: none;
    }
}

/* Dashboard CTA Section */
.dashboard-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Responsive Design for Dashboard Page */
@media (max-width: 768px) {
    .dashboard-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .dashboard-title {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .dashboard-title h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .dashboard-hero {
        padding: 80px 0 60px;
    }
    
    .dashboard-hero h1 {
        font-size: 2rem;
    }
    
    .dashboard-hero p {
        font-size: 1rem;
    }
    
    .dashboard-card {
        padding: 1.5rem;
    }
    
    .dashboard-title h2 {
        font-size: 1.5rem;
    }
    
    .dashboard-objective {
        font-size: 1rem;
    }
}

/* Access Modal Styles */
.access-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.access-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
}

.access-modal-content h3 {
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
    font-size: 1.5rem;
}

.access-options {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.access-option {
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.access-option:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.access-option h4 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.2rem;
}

.access-option p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

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

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



}

/* Real-Time Dashboard Specific Styles */
.databee-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 15px 0;
    font-size: 0.95rem;
}

.breadcrumb-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-link:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 15px;
    color: #6c757d;
    font-weight: 300;
}

.breadcrumb-current {
    color: #2c3e50;
    font-weight: 600;
}

.live-dashboard-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 40px;
}

.dashboard-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.dashboard-header p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.dashboard-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #28a745;
    color: white;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.status-indicator.live {
    background: #28a745;
}

.status-text {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.dashboard-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.dashboard-controls .btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.dashboard-controls .btn i {
    font-size: 0.9rem;
}



.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.metric-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.metric-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.metric-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.metric-card p {
    color: #6c757d;
    line-height: 1.6;
}

.tech-specs {
    padding: 80px 0;
    background: #f8f9fa;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.spec-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-3px);
}

.spec-card h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.spec-card p {
    color: #6c757d;
    font-size: 0.95rem;
}

/* Dashboard Features Section */
.dashboard-features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Responsive Design for Dashboard */
@media (max-width: 768px) {
    .databee-breadcrumb {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .breadcrumb-separator {
        display: none;
    }
    
    .dashboard-header h2 {
        font-size: 2rem;
    }
    
    .dashboard-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .dashboard-controls .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .metrics-grid,
    .features-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-status {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .dashboard-header h2 {
        font-size: 1.8rem;
    }
    
    .dashboard-header p {
        font-size: 1rem;
    }
    
    .metric-card,
    .feature-card,
    .spec-card {
        padding: 20px;
    }
    
    .metric-icon,
    .feature-icon {
        font-size: 2.5rem;
    }
}

/* Embedded Dashboard Styles */
.kpi-section {
    margin-bottom: 2rem;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.kpi-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kpi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.kpi-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.1);
}

.kpi-content h3 {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0 0 0.5rem 0;
    font-weight: 500;
}

.kpi-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.kpi-change {
    font-size: 0.85rem;
    font-weight: 600;
}

.kpi-change.positive {
    color: #10B981;
}

.kpi-change.negative {
    color: #e53e3e;
}

.kpi-change.neutral {
    color: #718096;
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.chart-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chart-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.chart-container h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.chart-placeholder {
    border: 2px dashed #e5e7eb;
    transition: all 0.3s ease;
}

.chart-placeholder:hover {
    border-color: #667eea;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05)) !important;
}

/* Bar Chart Styles */
.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    min-width: 80px;
    font-weight: 600;
    color: #374151;
}

.bar-container {
    flex: 1;
    height: 30px;
    background: #f3f4f6;
    border-radius: 15px;
    overflow: hidden;
}

.bar {
    height: 100%;
    border-radius: 15px;
    transition: width 0.5s ease;
}

.bar-value {
    min-width: 100px;
    text-align: right;
    font-weight: 600;
    color: #1f2937;
}

/* Acquisition Chart Styles */
.acquisition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.acquisition-item {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.source-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.metrics {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.metric-label {
    color: #6b7280;
}

.metric-value {
    font-weight: 600;
    color: #1f2937;
}

/* Pipeline Chart Styles */
.pipeline-stages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pipeline-stage {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
}

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

.stage-name {
    font-weight: 600;
    color: #1f2937;
}

.stage-count {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.stage-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.stage-progress {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.stage-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1f2937;
    text-align: right;
}

/* Live Toggle Styles */
.live-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.live-toggle input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    width: 50px;
    height: 24px;
    background: #e5e7eb;
    border-radius: 12px;
    position: relative;
    transition: background 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.live-toggle input[type="checkbox"]:checked + .toggle-slider {
    background: #10B981;
}

.live-toggle input[type="checkbox"]:checked + .toggle-slider::before {
    transform: translateX(26px);
}

.toggle-label {
    font-weight: 500;
    color: #374151;
}

.last-updated {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
    animation: slideInRight 0.3s ease;
}

.notification-success {
    border-left: 4px solid #10B981;
}

.notification-error {
    border-left: 4px solid #EF4444;
}

.notification-info {
    border-left: 4px solid #3B82F6;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #6b7280;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: #374151;
}

/* Enhanced Chart Styles */
.chart-bar:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cac-bar:hover, .ltv-bar:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.kpi-card {
    cursor: pointer;
    user-select: none;
}

.kpi-card:active {
    transform: scale(0.98);
}

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

.chart-wrapper:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.acquisition-bars {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    justify-content: space-between;
}

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

.pipeline-stage:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stage-progress {
    position: relative;
    overflow: hidden;
}

.stage-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

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

/* Responsive Design for Embedded Dashboard */
@media (max-width: 768px) {
    .kpi-grid {
        grid-template-columns: 1fr;
    }
    
    .charts-grid {
        grid-template-columns: 1fr;
    }
    
    .acquisition-bars {
        flex-direction: column;
        gap: 15px;
    }
    
    .acquisition-bar-group {
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
    }
    
    .bar-container {
        width: 60% !important;
        height: 80px !important;
    }
    
    .source-info {
        width: 35%;
        text-align: left !important;
    }
    
    .dashboard-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .live-toggle {
        justify-content: center;
    }
    
    .last-updated {
        justify-content: center;
    }
    
    .pipeline-overview {
        flex-direction: column;
        gap: 10px;
    }
    
    .stage-metrics {
        flex-direction: column;
        gap: 5px;
    }
}

/* Excel Dashboard Integration Styles */
.excel-dashboard-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.excel-dashboard-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.excel-dashboard-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.excel-dashboard-container .dashboard-header {
    text-align: center;
    margin-bottom: 2rem;
}

.excel-dashboard-container .dashboard-header h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.excel-dashboard-container .dashboard-header h3 i {
    color: #4299e1;
    font-size: 1.5rem;
}

.excel-dashboard-container .dashboard-header p {
    color: #718096;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.chart-container {
    background: #f7fafc;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #e2e8f0;
    transition: all 0.3s ease;
}

.chart-container:hover {
    border-color: #4299e1;
    background: #edf2f7;
}

.chart-container canvas {
    max-width: 100%;
    height: auto;
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.dashboard-actions .btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
}

.dashboard-actions .btn-primary {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
}

.dashboard-actions .btn-primary:hover {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 153, 225, 0.4);
}

.dashboard-actions .btn-secondary {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
}

.dashboard-actions .btn-secondary:hover {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(72, 187, 120, 0.4);
}

.dashboard-actions .btn i {
    font-size: 1rem;
}

/* Dashboard Card Actions */
.dashboard-card .dashboard-actions {
    margin-top: 1rem;
    gap: 0.5rem;
}

.dashboard-card .dashboard-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    flex: 1;
    justify-content: center;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 350px;
    border-left: 4px solid #4299e1;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: #48bb78;
}

.notification-error {
    border-left-color: #f56565;
}

.notification-info {
    border-left-color: #4299e1;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-content i {
    font-size: 1.2rem;
}

.notification-success .notification-content i {
    color: #48bb78;
}

.notification-error .notification-content i {
    color: #f56565;
}

.notification-info .notification-content i {
    color: #4299e1;
}

/* Responsive Design for Excel Dashboards */
@media (max-width: 768px) {
    .excel-dashboard-container {
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .excel-dashboard-container .dashboard-header h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.25rem;
    }

    .chart-container {
        padding: 1rem;
        min-height: 300px;
    }

    .dashboard-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .dashboard-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .dashboard-card .dashboard-actions {
        flex-direction: column;
    }

    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .excel-dashboard-container {
        padding: 1rem;
    }

    .excel-dashboard-container .dashboard-header h3 {
        font-size: 1.3rem;
    }

    .chart-container {
        min-height: 250px;
    }

    .dashboard-actions .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Real-Time Analytics Styles */
.realtime-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #e6fffa;
    border-radius: 20px;
    border: 1px solid #81e6d9;
}

.status-indicator.live {
    background: #fed7d7;
    border-color: #fc8181;
    animation: pulse 2s infinite;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #38b2ac;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.status-indicator.live .status-dot {
    background: #e53e3e;
    animation: blink 0.5s infinite;
}

.status-text {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}

.last-updated {
    font-size: 0.9rem;
    color: #718096;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.kpi-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.kpi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.kpi-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    font-size: 1.2rem;
}

.kpi-content h3 {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.kpi-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.kpi-change {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.kpi-change.positive {
    color: #38a169;
}

.kpi-change.negative {
    color: #e53e3e;
}

.kpi-change.neutral {
    color: #718096;
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.chart-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.chart-item h3 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.chart-item .chart-container {
    min-height: 300px;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
}

.btn-tertiary {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
}

.btn-tertiary:hover {
    background: linear-gradient(135deg, #dd6b20 0%, #c05621 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 137, 54, 0.4);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

/* Responsive Design for Real-Time Analytics */
@media (max-width: 768px) {
    .realtime-status {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .kpi-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .charts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .chart-item {
        padding: 1rem;
    }

    .chart-item .chart-container {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .kpi-card {
        padding: 1rem;
    }

    .kpi-value {
        font-size: 1.5rem;
    }

    .chart-item {
        padding: 0.75rem;
    }

    .chart-item .chart-container {
        min-height: 200px;
    }
} 

/* Dashboard Placeholder Styles */
.dashboard-placeholder {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 60px 20px;
    text-align: center;
    margin: 20px 0;
    transition: all 0.3s ease;
}

/* Scenario Simulation Panel Styles */
.scenario-panel {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Sector Filter Panel Styles */
.sector-filter-panel {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sector-filter-panel h3 {
    color: #0369a1;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.sector-filter-panel p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.sector-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.sector-filter {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 1rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #475569;
    transition: all 0.3s ease;
    position: relative;
}

.sector-filter:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.sector-filter input[type="checkbox"] {
    display: none;
}

.sector-filter .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    margin-right: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.sector-filter input[type="checkbox"]:checked + .checkmark {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.sector-filter input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.sector-filter input[type="checkbox"]:checked ~ span {
    color: #3b82f6;
}

@media (max-width: 768px) {
    .sector-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .sector-filter {
        justify-content: center;
    }
}

/* Sector Simulation Selector Styles */
.sector-simulation-selector {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.sector-simulation-selector h4 {
    color: #92400e;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.sector-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sector-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #f59e0b;
    background: white;
    color: #92400e;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sector-btn:hover {
    background: #f59e0b;
    color: white;
}

.sector-btn.active {
    background: #f59e0b;
    color: white;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* Scenario Presets Styles */
.scenario-presets {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1px solid #10b981;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.scenario-presets h4 {
    color: #065f46;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.preset-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.preset-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #10b981;
    background: white;
    color: #065f46;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.preset-btn:hover {
    background: #10b981;
    color: white;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .sector-buttons,
    .preset-buttons {
        flex-direction: column;
    }
    
    .sector-btn,
    .preset-btn {
        text-align: center;
    }
}

/* Real-Time Analytics Styles */
.realtime-status {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    color: white;
}

.live-clock, .refresh-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.live-clock i, .refresh-timer i {
    color: #48bb78;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.live-card {
    border: 2px solid #48bb78;
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px #48bb78; }
    to { box-shadow: 0 0 20px #48bb78, 0 0 30px #48bb78; }
}

/* Alerts Panel Styles */
.alerts-panel {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border: 1px solid #feb2b2;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.alerts-panel h3 {
    color: #c53030;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.alerts-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.alert-warning {
    background: #fef5e7;
    border-left: 4px solid #ed8936;
    color: #c05621;
}

.alert-success {
    background: #f0fff4;
    border-left: 4px solid #48bb78;
    color: #22543d;
}

.alert-info {
    background: #ebf8ff;
    border-left: 4px solid #4299e1;
    color: #2a4365;
}

.alert-time {
    margin-left: auto;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Multimedia Reach Analytics Styles */
.multimedia-reach-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.multimedia-reach-section h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.platform-filter {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.platform-filter h4 {
    color: #4a5568;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.filter-controls {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.9rem;
}

.filter-group select,
.filter-group input {
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 0.9rem;
    min-width: 150px;
}

.multimedia-kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.multimedia-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    transition: transform 0.3s ease;
}

.multimedia-card:hover {
    transform: translateY(-5px);
}

.multimedia-card .kpi-icon {
    background: rgba(255, 255, 255, 0.2);
}

.multimedia-card .kpi-value {
    color: white;
}

.multimedia-card .kpi-change {
    color: #a0f1ea;
}

.multimedia-charts {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .realtime-status {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .filter-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .multimedia-kpi-grid {
        grid-template-columns: 1fr;
    }
}

/* User Profile Styles */
#user-info {
    margin-left: auto;
    margin-right: 20px;
    position: relative;
}

/* Navigation spacing */
.nav-logo {
    margin-right: 40px;
}

.nav-menu {
    margin-left: 20px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    max-width: 200px;
    cursor: pointer;
}

.user-profile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.user-profile i {
    font-size: 1.2rem;
}

.profile-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.user-profile:hover .profile-arrow {
    transform: rotate(180deg);
}

/* Profile Dropdown Styles */
.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
    border: 1px solid #e5e7eb;
}

.profile-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.profile-header i {
    font-size: 2rem;
    color: #667eea;
}

.profile-details {
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.9rem;
}

.profile-role {
    color: #6b7280;
    font-size: 0.8rem;
}

.profile-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 8px 0;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: none;
    color: #374151;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.profile-menu-item:hover {
    background: #f9fafb;
    color: #1f2937;
}

.profile-menu-item.logout-item {
    color: #dc2626;
}

.profile-menu-item.logout-item:hover {
    background: #fef2f2;
    color: #b91c1c;
}

.profile-menu-item i {
    font-size: 1rem;
    width: 16px;
}

/* Responsive adjustments for user profile */
@media (max-width: 768px) {
    #user-info {
        margin-right: 10px;
    }
    
    .user-profile {
        padding: 4px 8px;
        font-size: 0.7rem;
        max-width: 150px;
    }
    
    .user-profile span {
        display: none;
    }
    
    .profile-dropdown {
        min-width: 200px;
        right: -20px;
    }
    
    /* Adjust navigation spacing on mobile */
    .nav-logo {
        margin-right: 20px;
    }
    
    .nav-menu {
        margin-left: 10px;
    }
}

.scenario-panel h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.scenario-panel p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.scenario-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.scenario-control {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.scenario-control label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.scenario-control input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e5e7eb;
    outline: none;
    -webkit-appearance: none;
}

.scenario-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.scenario-control input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #667eea;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.scenario-control span {
    font-weight: 600;
    color: #667eea;
    text-align: center;
    font-size: 1.1rem;
}

.scenario-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.scenario-result {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.scenario-result h4 {
    color: #374151;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.result-value {
    color: #667eea;
    font-size: 1.5rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .scenario-controls {
        grid-template-columns: 1fr;
    }
    
    .scenario-results {
        grid-template-columns: 1fr;
    }
}

.dashboard-placeholder:hover {
    border-color: #94a3b8;
    background: linear-gradient(135deg, #f1f5f9 0%, #dbeafe 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.placeholder-content {
    max-width: 400px;
    margin: 0 auto;
}

.placeholder-content i {
    font-size: 3rem;
    color: #64748b;
    margin-bottom: 20px;
    display: block;
    animation: placeholderPulse 2s ease-in-out infinite;
}

.placeholder-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 10px;
}

.placeholder-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@keyframes placeholderPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.1); 
        opacity: 1;
    }
}

/* Disabled Button Styles */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #94a3b8;
    border-color: #94a3b8;
}

.btn:disabled:hover {
    background: #94a3b8;
    border-color: #94a3b8;
    transform: none;
    box-shadow: none;
}