
        :root {
            --primary-color: #1877f2;
            --secondary-color: #0d5cb6;
            --dark-color: #1c3b5e;
            --text-color: #374151;
            --light-bg: #f0f2f5;
            --accent-color: #42b72a;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        
        body {
            color: var(--text-color);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        .case-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 100px 0 150px;
            text-align: center;
        }
        
        .case-header h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
              margin-top: 75px;
        }
        
        .case-header .meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .meta-item {
            background: rgba(255,255,255,0.1);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
        }
        
        /* Case Content */
        .case-content {
            padding: 60px 0;
        }
        
        .case-section {
            margin-bottom: 60px;
        }
        
        .case-section h2 {
            font-size: 1.8rem;
            color: var(--dark-color);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .case-section h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-color);
        }
        
        .case-section p {
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        
        .case-image {
            margin: 40px 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .case-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Facebook Ad Elements */
        .ad-elements {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .ad-element {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        
        .ad-element img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .ad-caption {
            padding: 20px;
            font-size: 0.9rem;
        }
        
        /* Highlight Blocks */
        .highlight-block {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 8px;
            margin: 30px 0;
            border-left: 4px solid var(--accent-color);
        }
        
        .highlight-block h3 {
            color: var(--dark-color);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        /* Results */
        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .result-item {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            border-top: 4px solid var(--accent-color);
            text-align: center;
        }
        
        .result-item h3 {
            margin-bottom: 15px;
            color: var(--dark-color);
            font-size: 2rem;
        }
        
        /* Graph Visualization */
        .graph-container {
            margin: 40px 0;
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        
        .graph-placeholder {
            height: 300px;
            background: #f3f4f6;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6b7280;
            font-weight: 500;
        }
        
        /* CTA */
        .case-cta {
            text-align: center;
            padding: 60px 0;
            background: var(--light-bg);
            margin-top: 60px;
            border-radius: 8px;
        }
        
        .case-cta h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark-color);
        }
        
        .btn {
            display: inline-block;
            background: var(--primary-color);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .case-header {
                padding: 80px 0 40px;
            }
            
            .case-header h1 {
                font-size: 2rem;
            }
        }


          .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background-color: #4361ee;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        font-size: 1.25rem;
    }

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background-color: #3a0ca3;
        transform: translateY(-3px);
    }
    
    
     /* CTA Section Styles */
.case-cta {
    text-align: center;
    padding: 60px 20px;
    margin: 80px auto 40px; /* Changed to auto for horizontal centering */
     background: var(--light-bg);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    max-width: 800px; /* Added max-width to prevent overly wide section */
    width: 90%; /* Ensures it doesn't touch edges on small screens */
    display: flex; /* Added flexbox */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    justify-content: center; /* Center children vertically */
}

.case-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    width: 100%; /* Ensure full width for proper text centering */
}

.case-cta p {
    font-size: 1.125rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
    width: 100%; /* Ensure full width for proper text centering */
}

.case-cta .btn {
    display: inline-block;
    background-color: #4f46e5;
    color: white;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.3), 0 2px 4px -1px rgba(79, 70, 229, 0.2);
    margin: 0 auto; /* Ensures button is centered */
}

.case-cta .btn:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3), 0 4px 6px -2px rgba(79, 70, 229, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .case-cta {
        padding: 40px 15px;
        margin: 60px auto 30px; /* Maintain centered margin */
        width: 95%; /* Slightly more edge space on mobile */
    }
    
    .case-cta h2 {
        font-size: 1.5rem;
    }
    
    .case-cta p {
        font-size: 1rem;
    }
}


 /* Breadcrumb Navigation */
.breadcrumb {
  padding: 1rem 0;
  background-color: var(--light-gray);
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.breadcrumb .container {
  padding: 0 2rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  position: relative;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--gray);
  opacity: 0.6;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  padding: 0.25rem 0;
}

.breadcrumb a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
  color: var(--dark);
  font-weight: 500;
}




              
       /* Facebook Ads Graph Styles */
.facebook-ads-graph {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  max-width: 1200px;
  margin: 40px auto;
  font-family: 'Segoe UI', Roboto, sans-serif;
}

.graph-header {
  text-align: center;
  margin-bottom: 30px;
}

.graph-header h3 {
  font-size: 1.5rem;
  color: #1877F2; /* Facebook blue */
  font-weight: 700;
  margin: 0 0 8px 0;
}

.time-period {
  color: #65676B;
  font-size: 0.95rem;
}

.metrics-comparison {
  display: grid;
  gap: 25px;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  align-items: center;
  gap: 20px;
}

.metric-name {
  font-weight: 600;
  color: #1c1e21;
  font-size: 0.95rem;
}

.metric-values {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  text-align: center;
}

.before-value, .after-value {
  font-weight: 600;
}

.before-value {
  color: #65676B;
}

.after-value {
  color: #1877F2;
}

.improvement {
  background: #f0f2f5;
  border-radius: 12px;
  padding: 4px 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.metric-row:nth-child(1) .improvement {
  color: #31A24C; /* Green for positive */
  background: #e6f2e9;
}

.metric-row:nth-child(2) .improvement {
  color: #F02849; /* Red for cost reduction */
  background: #fde7eb;
}

.metric-row:nth-child(3) .improvement {
  color: #31A24C;
  background: #e6f2e9;
}

.metric-row:nth-child(4) .improvement {
  color: #31A24C;
  background: #e6f2e9;
}

.metric-visual {
  height: 30px;
  display: flex;
  align-items: center;
  position: relative;
}

.bar {
  height: 20px;
  border-radius: 10px;
  position: absolute;
  transition: width 1.5s ease-out;
}

.bar.before {
  background: #DADDE1;
  left: 0;
}

.bar.after {
  background: #1877F2;
  box-shadow: 0 2px 10px rgba(24, 119, 242, 0.3);
  left: 0;
}

/* Animation */
@keyframes growBar {
  from { width: 0; }
  to { width: var(--final-width); }
}

.bar.before {
  animation: growBar 1s ease-out forwards;
}

.bar.after {
  animation: growBar 1.5s ease-out forwards;
  animation-delay: 0.3s;
}

.graph-key {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.key-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #65676B;
}

.key-color {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.key-color.before {
  background: #DADDE1;
}

.key-color.after {
  background: #1877F2;
}

/* Responsive Design */
@media (max-width: 768px) {
  .facebook-ads-graph {
    padding: 20px;
  }
  
  .metric-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .metric-visual {
    grid-row: 3;
    grid-column: 1;
    margin-top: 10px;
  }
  
  .metric-values {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
  }
}

@media (max-width: 480px) {
  .graph-header h3 {
    font-size: 1.3rem;
  }
  
  .improvement {
    font-size: 0.8rem;
  }
}       
              


       
       /* Facebook Ads Performance Graph Styles */
.fb-ads-performance {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  max-width: 1200px;
  margin: 40px auto;
  font-family: 'Segoe UI', Roboto, sans-serif;
}

.graph-header {
  text-align: center;
  margin-bottom: 30px;
}

.graph-header h3 {
  font-size: 1.5rem;
  color: #1877F2;
  font-weight: 700;
  margin-bottom: 8px;
}

.time-period {
  color: #65676B;
  font-size: 0.95rem;
}

.ad-performance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 20px;
}

.ad-card {
  background: #F7F8FA;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ad-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.ad-preview {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.carousel-icon {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.ugc-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #FF9A8B;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.ad-metrics {
  padding: 18px;
}

.metric-label {
  font-weight: 600;
  color: #1C1E21;
  margin-bottom: 12px;
  font-size: 1rem;
}

.ctr-bar {
  height: 24px;
  background: #E4E6EB;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}

.bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  border-radius: 12px;
  background: linear-gradient(to right, #1877F2, #00A2FF);
  animation: growBar 1s ease-out forwards;
}

.ctr-value {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.metric-note {
  color: #65676B;
  font-size: 0.85rem;
}

.performance-scale {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  color: #65676B;
  font-size: 0.85rem;
  margin-bottom: 30px;
}

.performance-summary {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.summary-item {
  text-align: center;
  min-width: 120px;
}

.summary-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1877F2;
  margin-bottom: 5px;
}

.summary-label {
  font-size: 0.9rem;
  color: #65676B;
}

/* Animations */
@keyframes growBar {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .ad-performance-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .ad-preview {
    height: 300px;
  }
  
  .performance-summary {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .summary-item {
    flex: 1;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .fb-ads-performance {
    padding: 20px;
  }
  
  .graph-header h3 {
    font-size: 1.3rem;
  }
  
  .summary-value {
    font-size: 1.5rem;
  }
}
   

  .ad-card {
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    margin: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
  }
  
  .ad-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  
  .ad-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  
  .video-thumbnail-container {
    position: relative;
    height: 300px;
    overflow: hidden;
  }
  
  .video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
  }
  
  .ad-link:hover .play-button-overlay {
    background: rgba(0, 0, 0, 0.4);
  }
  
  .play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #1877f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s;
  }
  
  .ad-link:hover .play-icon {
    transform: scale(1.1);
    background: white;
  }
  
  .ad-metrics {
    padding: 12px;
    background: white;
  }
  
  .metric-label {
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
  }
  
  .ctr-bar {
    height: 20px;
    background: #f0f0f0;
    border-radius: 10px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
  }
  
  .bar-fill {
    height: 100%;
    background: #1877f2;
    border-radius: 10px;
    width: 100%;
  }
  
  .ctr-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
  }
  
  .metric-note {
    font-size: 12px;
    color: #666;
  }
     
     
     
 
  .ad-card {
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    font-family: Arial, sans-serif;
  }
  
  .ad-carousel {
    position: relative;
    height: 300px;
  }
  
  .carousel-item {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
  }
  
  .dot {
    color: rgba(255,255,255,0.5);
    margin: 0 3px;
    font-size: 12px;
  }
  
  .dot.active {
    color: white;
  }
  
  .ad-metrics {
    padding: 12px;
    background: white;
  }
  
  .metric-label {
    font-weight: bold;
    margin-bottom: 8px;
  }
  
  .ctr-bar {
    height: 20px;
    background: #f0f0f0;
    border-radius: 10px;
    margin-bottom: 8px;
    position: relative;
  }
  
  .bar-fill {
    height: 100%;
    background: #1877f2;
    border-radius: 10px;
    width: 100%;
  }
  
  .ctr-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
  }
  
  .metric-note {
    font-size: 12px;
    color: #666;
  }

      

        
        /* Revenue Growth Chart Styles */
.revenue-growth-chart {
  background: white;
  border-radius: 20px;
  padding: 35px 40px;
  margin: 50px auto;
  max-width: 1200px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(241, 245, 249, 0.8);
  position: relative;
  overflow: hidden;
}

.revenue-growth-chart::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #4F46E5, #10B981);
}

.chart-header {
  text-align: center;
  margin-bottom: 40px;
}

.chart-header h3 {
  font-size: 1.6rem;
  color: #1F2937;
  font-weight: 700;
  margin-bottom: 8px;
}

.time-period {
  color: #6B7280;
  font-size: 1rem;
}

.chart-visual {
  display: flex;
  height: 400px;
  position: relative;
}

.y-axis {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  margin-right: 20px;
  padding-bottom: 30px;
  color: #9CA3AF;
  font-size: 0.9rem;
  font-weight: 500;
  width: 30px;
}

.chart-bars {
  display: flex;
  gap: 80px;
  align-items: flex-end;
  flex-grow: 1;
  padding-bottom: 30px;
  border-bottom: 2px solid #E5E7EB;
}

.bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
}

.percentage-badge {
  position: absolute;
  top: -48px;
  background: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  z-index: 2;
  color: #4B5563;
}

.percentage-badge.highlight {
  color: #4F46E5;
  font-weight: 700;
  transform: scale(1.05);
}

.bar {
  width: 60px;
  border-radius: 10px 10px 0 0;
  position: relative;
  overflow: hidden;
}

.bar-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
}

.baseline .bar-fill {
  background: linear-gradient(to top, #E5E7EB, #D1D5DB);
}

.growth .bar-fill {
  background: linear-gradient(to top, #4F46E5, #6366F1);
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.bar-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-image: linear-gradient(45deg, 
    rgba(255,255,255,0.15) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(255,255,255,0.15) 50%, 
    rgba(255,255,255,0.15) 75%, 
    transparent 75%, 
    transparent);
  background-size: 20px 20px;
  opacity: 0.4;
  animation: barScroll 3s linear infinite;
}

.celebration-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.sparkle {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0;
  animation: sparkleFloat 3s infinite;
}

.sparkle:nth-child(1) {
  width: 5px;
  height: 5px;
  top: 15%;
  left: 20%;
  animation-delay: 0.5s;
}

.sparkle:nth-child(2) {
  width: 4px;
  height: 4px;
  top: 40%;
  left: 70%;
  animation-delay: 1s;
}

.sparkle:nth-child(3) {
  width: 6px;
  height: 6px;
  top: 65%;
  left: 50%;
  animation-delay: 1.5s;
}

.bar-label {
  margin-top: 20px;
  font-size: 1rem;
  color: #6B7280;
  font-weight: 500;
}

.growth-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #10B981;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
  z-index: 3;
}

.chart-footer {
  text-align: center;
  margin-top: 30px;
  position: relative;
}

.result-line {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 40px;
}

.line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4F46E5);
}

.arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #4F46E5;
}

.chart-footer p {
  color: #4F46E5;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 30px;
}

/* Animations */
@keyframes barScroll {
  0% { background-position: 0 0; }
  100% { background-position: 40px 40px; }
}

@keyframes sparkleFloat {
  0% { opacity: 0; transform: translateY(10px); }
  20% { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-30px); }
}

.growth {
  animation: growHeight 2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes growHeight {
  from { height: 50%; }
  to { height: 90%; }
}

/* Responsive */
@media (max-width: 768px) {
  .revenue-growth-chart {
    padding: 25px;
    margin: 40px 20px;
  }
  
  .chart-bars {
    gap: 50px;
  }
  
  .bar {
    width: 50px;
  }
  
  .percentage-badge {
    font-size: 0.9rem;
    padding: 6px 12px;
    top: -40px;
  }
  
  .growth-indicator {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}
 