
        :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 Elements */
        .fb-elements {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .fb-element {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        
        .fb-element img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .fb-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);
    }
    
    
    
    
     /* 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;
}

/* Dark Mode Adjustments */
@media (prefers-color-scheme: dark) {
  .breadcrumb {
    background-color: var(--light-gray);
    border-bottom-color: rgba(255,255,255,0.05);
  }
  
  .breadcrumb [aria-current="page"] {
    color: var(--dark);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .breadcrumb .container {
    padding: 0 1rem;
  }
  
  .breadcrumb li:not(:last-child)::after {
    margin-left: 0.25rem;
  }
}

 /* 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;
    }
}







      
/* Follower Growth Graph Styles */
.follower-growth-graph {
  background: white;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  max-width: 1200px;
  margin: 40px auto;
  font-family: 'Segoe UI', Roboto, sans-serif;
  position: relative;
  overflow: hidden;
}

.follower-growth-graph::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #FF9A8B, #FF6B95);
}

.graph-header {
  text-align: center;
  margin-bottom: 30px;
}

.graph-header h3 {
  font-size: 1.6rem;
  color: #1F2937;
  font-weight: 700;
  margin-bottom: 8px;
}

.time-period {
  color: #6B7280;
  font-size: 1rem;
}

.graph-visual {
  display: flex;
  height: 300px;
    max-width: 1200px;
  position: relative;
}

.y-axis {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  margin-right: 15px;
  padding-bottom: 30px;
  color: #9CA3AF;
  font-size: 0.9rem;
  font-weight: 500;
  width: 40px;
}

.chart-area {
  flex-grow: 1;
  position: relative;
  padding-bottom: 40px;
  border-bottom: 1px solid #E5E7EB;
}

.growth-line {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.growth-line path {
  stroke: #FF6B95;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: drawLine 2s ease-out forwards;
}

.area-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, rgba(255, 107, 149, 0.1), transparent);
  clip-path: path('M0,200 C50,180 100,190 150,160 C200,130 250,140 300,100 C350,60 400,70 450,30 C500,0 500,0 500,0 L500,200 Z');
  animation: fillGrow 2.5s ease-out forwards;
}

.data-point {
  position: absolute;
  transform: translate(-50%, 50%);
  z-index: 2;
}

.point-marker {
  width: 12px;
  height: 12px;
  background: white;
  border: 3px solid #FF6B95;
  border-radius: 50%;
  position: relative;
}

.point-value {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1F2937;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  margin-bottom: 8px;
  white-space: nowrap;
}

.x-axis {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  color: #9CA3AF;
  font-size: 0.9rem;
}

.growth-summary {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.summary-card {
  text-align: center;
  background: #F9FAFB;
  border-radius: 12px;
  padding: 20px;
  min-width: 120px;
  border: 1px solid #E5E7EB;
}

.summary-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #FF6B95;
  margin-bottom: 5px;
}

.summary-label {
  font-size: 0.9rem;
  color: #6B7280;
}

/* Animations */
@keyframes drawLine {
  from { stroke-dasharray: 1000; stroke-dashoffset: 1000; }
  to { stroke-dasharray: 1000; stroke-dashoffset: 0; }
}

@keyframes fillGrow {
  from { clip-path: path('M0,200 L0,200 L500,200 L500,200 Z'); }
  to { clip-path: path('M0,200 C50,180 100,190 150,160 C200,130 250,140 300,100 C350,60 400,70 450,30 C500,0 500,0 500,0 L500,200 Z'); }
}

/* Responsive */
@media (max-width: 768px) {
  .follower-growth-graph {
    padding: 25px;
  }
  
  .growth-summary {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .summary-card {
    flex: 1;
    min-width: auto;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .graph-header h3 {
    font-size: 1.4rem;
  }
  
  .graph-visual {
    height: 250px;
  }
  
  .summary-value {
    font-size: 1.5rem;
  }
}      


              
              
         /* Facebook Engagement Graph Styles */
.fb-engagement-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-bottom: 8px;
}

.time-period {
  color: #65676B;
  font-size: 0.95rem;
}

.graph-visual {
  display: flex;
  flex-direction: column;
  gap: 30px;
  
}

.engagement-bars {
  display: grid;
  gap: 20px;
}

.bar-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.post-preview {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 240px;
}

.post-thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  border: 2px solid white;
}

.post-type {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1C1E21;
  white-space: nowrap;
}

.engagement-bar {
  flex-grow: 1;
  height: 30px;
  background: #F0F2F5;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  max-width: 500px;
 
}

.bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  border-radius: 15px;
  background: linear-gradient(to right, #1877F2, #00A2FF);
  animation: growBar 1.5s ease-out forwards;
}

.engagement-value {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.engagement-scale {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  color: #65676B;
  font-size: 0.85rem;
  margin-top: -15px;
}

.performance-summary {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 150px;
}

.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) {
  .fb-engagement-graph {
    padding: 25px;
  }
  
  .bar-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .post-preview {
    width: 100%;
  }
  
  .engagement-bar {
    width: 100%;
  }
  
  .performance-summary {
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .summary-item {
    flex: 1;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .graph-header h3 {
    font-size: 1.3rem;
  }
  
  .post-preview {
    gap: 10px;
  }
  
  .post-thumbnail {
    width: 50px;
    height: 50px;
  }
  
  .summary-value {
    font-size: 1.5rem;
  }
}     
              

            
   /* Inquiries Growth Chart Styles */
.inquiries-growth-chart {
  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;
}

.chart-header {
  text-align: center;
  margin-bottom: 30px;
}

.chart-header h3 {
  font-size: 1.5rem;
  color: #3B82F6;
  font-weight: 700;
  margin-bottom: 8px;
}

.time-period {
  color: #6B7280;
  font-size: 0.95rem;
}

.chart-visual {
  display: flex;
  height: 300px;
  position: relative;
}

.y-axis {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  margin-right: 15px;
  padding-bottom: 30px;
  color: #9CA3AF;
  font-size: 0.9rem;
  font-weight: 500;
  width: 30px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  flex-grow: 1;
  padding-bottom: 30px;
  border-bottom: 1px solid #E5E7EB;
}

.bar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.bar {
  width: 100%;
  border-radius: 6px 6px 0 0;
  position: relative;
  background: #93C5FD;
  transition: height 1s ease-out;
  animation: barGrow 1.5s ease-out forwards;
}

.bar.baseline {
  background: #E5E7EB;
}

.bar.growth {
  background: linear-gradient(to top, #1D4ED8, #3B82F6);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.bar-value {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  white-space: nowrap;
}

.growth-badge {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #10B981;
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.month-label {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #6B7280;
}

.chart-legend {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #6B7280;
}

.legend-color {
  width: 14px;
  height: 14px;
  border-radius: 3px;
}

.legend-color.baseline {
  background: #E5E7EB;
}

.legend-color.growth {
  background: #3B82F6;
}

.chart-summary {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.summary-item {
  text-align: center;
  min-width: 100px;
}

.summary-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3B82F6;
  margin-bottom: 5px;
}

.summary-label {
  font-size: 0.9rem;
  color: #6B7280;
}

/* Animations */
@keyframes barGrow {
  from { height: 0; }
  to { height: var(--final-height); }
}

/* Responsive */
@media (max-width: 768px) {
  .inquiries-growth-chart {
    padding: 25px;
  }
  
  .chart-bars {
    gap: 10px;
  }
  
  .chart-summary {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .summary-item {
    flex: 1;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .chart-header h3 {
    font-size: 1.3rem;
  }
  
  .summary-value {
    font-size: 1.5rem;
  }
}         
            

