/* Landing Page Styles */

/* Global Styles */
html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

section {
    padding: 5rem 0;
}

.container {
    width: 90%;
    max-width: 1200px;
}

@media only screen and (max-width: 992px) {
    section {
        padding: 3rem 0;
    }
}

/* Navigation */
nav .brand-logo {
    font-weight: 500;
    display: flex;
    align-items: center;
}

nav .brand-logo img {
    height: 36px;
    margin-right: 10px;
}

nav ul a {
    font-weight: 500;
}

/* nav ul a.btn {
    margin-left: 15px;
    margin-top: 13px;
    height: 36px;
    line-height: 36px;
    font-weight: 500;
} */

nav ul a.btn {
    margin-left: 15px;
    margin-top: 0;  /* Remove the top margin */
    height: 36px;
    line-height: 36px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero .flow-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-cta .btn-large {
    font-weight: 500;
}

.hero img {
    max-height: 400px;
}

.hero .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5vw;
    min-height: 50px;
}

@media only screen and (max-width: 768px) {
    .hero {
        padding: 5rem 0 8rem;
        text-align: center;
    }

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

    .hero-cta {
        justify-content: center;
    }
}

/* Benefits Section */
.benefits {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.benefit-card {
    padding: 2rem 1.5rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 17px 0 rgba(0,0,0,0.1), 0 6px 20px 0 rgba(0,0,0,0.1);
}

.benefit-card i.material-icons {
    color: #1565c0;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
}

/* Video Section */
.video-section {
    padding: 5rem 0;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    cursor: pointer;
}

.video-container img {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.play-button i {
    font-size: 6rem;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.5));
}

.video-container:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

/* Features Section */
.features {
    padding: 5rem 0;
}

.feature-row {
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1565c0;
}

.feature-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.feature-list {
    padding-left: 0;
    list-style: none;
}

.feature-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: #4CAF50;
    margin-right: 0.5rem;
}

.feature-image img {
    max-height: 350px;
    margin: 0 auto;
    display: block;
}

@media only screen and (max-width: 992px) {
    .feature-row, .feature-row.reverse {
        flex-direction: column;
    }
    
    .feature-content {
        text-align: center;
        margin-top: 2rem;
    }
    
    .feature-list {
        display: inline-block;
        text-align: left;
    }
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
}

.pricing-card {
    height: 100%;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.recommended {
    border: 2px solid #1565c0;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.recommended:hover {
    transform: translateY(-10px) scale(1.05);
}

.ribbon {
    position: absolute;
    right: -30px;
    top: 20px;
    width: 150px;
    height: 25px;
    transform: rotate(45deg);
    background-color: #1565c0;
    color: white;
    text-align: center;
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 25px;
    z-index: 1;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.price {
    margin: 1.5rem 0;
    text-align: center;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 500;
}

.price .period {
    font-size: 1rem;
    color: #666;
}

/* Updated Plan Features styling for better centering */
.plan-features {
  /* Change from text-align: left to center */
  text-align: center;
  max-width: 400px;
  margin: 0 auto 2rem;
}

.plan-features li {
  margin-bottom: 1rem;
  /* Update to center the list items properly */
  display: flex;
  align-items: center;
  justify-content: center; /* Add this for centering */
}

.plan-features li i {
  color: #4CAF50;
  margin-right: 0.5rem;
}

@media only screen and (max-width: 600px) {
  .plan-features {
    /* Ensure full width on small screens */
    max-width: 100%;
  }
}

.plan-features li.unavailable {
    color: #999;
}

.plan-features li.unavailable i {
    color: #f44336;
}

.pricing-card .card-action {
    border-top: none;
    padding-top: 0;
}

.perpetual-license {
    margin-top: 3rem;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.perpetual-license h3 {
    margin-bottom: 1rem;
}

.perpetual-license p {
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
}

.testimonial-card {
    height: 100%;
}

.testimonial-quote {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.testimonial-quote .quote {
    position: absolute;
    top: -10px;
    left: -5px;
    color: #e0e0e0;
    font-size: 3rem;
}

.testimonial-quote p {
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 1rem;
}

.author-info .name {
    display: block;
    font-weight: 500;
}

.author-info .position {
    font-size: 0.8rem;
    color: #666;
}

/* About Section */
.about {
    padding: 5rem 0;
}

.about-content h3 {
    color: #1565c0;
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    text-align: center;
}

.cta h2 {
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn-large {
    margin-bottom: 1rem;
    font-weight: 500;
}

.cta .no-credit-card {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-info {
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: #1565c0;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.contact-item.social-media {
    margin-top: 2rem;
}

.contact-item.social-media a {
    margin-right: 1rem;
}

/* Footer */
.page-footer {
    padding-top: 3rem;
}

.page-footer h5 {
    margin-bottom: 1.5rem;
}

.page-footer ul {
    padding-left: 0;
}

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

/* Responsive Adjustments */
@media only screen and (max-width: 992px) {
    h2 {
        font-size: 2.2rem;
    }
    
    .pricing-card.recommended {
        transform: none;
    }
    
    .pricing-card:hover, .pricing-card.recommended:hover {
        transform: translateY(-10px);
    }
    
    .contact-info {
        margin-top: 3rem;
    }
}

@media only screen and (max-width: 600px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn-large {
        width: 100%;
    }
    
    .benefit-card {
        margin-bottom: 2rem;
    }
}
/* Additional CSS for LabelHive - Logo and Updated Pricing */

/* Logo Styles */
.brand-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.hero-logo {
    max-width: 250px;
    display: block;
    margin: 2rem auto;
}

.sidenav-logo {
    max-width: 120px;
    display: block;
    margin: 1rem auto;
    padding: 10px;
}

.footer-logo {
    margin-bottom: 1rem;
}

/* Updated Pricing Styles */
.pricing-card {
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.plan-name {
    font-size: 2rem;
    font-weight: 500;
    color: #1565c0;
}

.price {
    margin: 2rem 0;
}

.price .currency {
    font-size: 2rem;
    vertical-align: super;
    margin-right: 5px;
}

.price .amount {
    font-size: 5rem;
    font-weight: 500;
    line-height: 1;
}

.price .period {
    font-size: 1.25rem;
    color: #666;
}

.plan-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.plan-features {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 2rem;
}

.plan-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.plan-features li i {
    color: #4CAF50;
    margin-right: 1rem;
}

/* Bold styling for specific features */
.plan-features li strong {
    font-weight: 700;
    color: #1565c0;
}

.trial-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Mobile Navigation Enhancements */
.sidenav .user-view {
    padding: 32px 32px 0;
}

.sidenav li > a {
    display: flex;
    align-items: center;
}

.sidenav li > a > i {
    margin-right: 1rem;
}

/* Contact Section Enhancements */
.contact-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.contact-item i {
    color: #1565c0;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.contact-item.social-media {
    margin-top: 2rem;
}

.contact-item.social-media a {
    margin-right: 1rem;
}

/* Responsive Adjustments */
@media only screen and (max-width: 992px) {
    .pricing-card {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .plan-features {
        max-width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .price .amount {
        font-size: 4rem;
    }
    
    .price .currency {
        font-size: 1.5rem;
    }
    
    .plan-name {
        font-size: 1.8rem;
    }
}

/* Coming Soon Section Styles */
.coming-soon {
    padding: 5rem 0;
}

.future-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.future-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 17px 0 rgba(0,0,0,0.1), 0 6px 20px 0 rgba(0,0,0,0.1);
}

.future-card i.material-icons {
    color: #1565c0;
    margin-bottom: 1rem;
}

.future-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1565c0;
}

.future-card .feature-list {
    text-align: left;
    margin: 1.5rem 0;
    list-style: none;
    padding-left: 1rem;
}

.future-card .feature-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.future-card .feature-list li i {
    color: #1565c0;
    margin-right: 0.5rem;
}

.future-card .timeline {
    background-color: #1565c0;
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-top: 1rem;
}

/* Badge styling for completed features */
.future-card .feature-list li .badge {
    background-color: #4caf50;
    color: white;
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    border-radius: 10px;
    margin-left: auto;
    font-weight: bold;
    text-transform: uppercase;
    float: right;
    text-align: center;
    line-height: 1;
    vertical-align: middle;
}

/* Enhanced completed badge styling - Improved centering and attractive teal color */
.future-card .feature-list li .completed-badge {
    background: linear-gradient(135deg, #00695c, #00897b);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    margin-left: auto;
    float: right;
    text-align: center;
    line-height: 1.2;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 105, 92, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
    cursor: default;
    
    /* Improved centering with flexbox */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px; /* Ensure consistent width for better alignment */
}

/* Add checkmark icon before the text */
.future-card .feature-list li .completed-badge::before {
    content: "✓";
    margin-right: 0.4rem;
    font-size: 0.9rem;
    font-weight: bold;
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.2));
}

/* Hover effect for completed badges */
.future-card .feature-list li .completed-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 105, 92, 0.4);
    background: linear-gradient(135deg, #00796b, #009688);
}

/* Slight glow effect */
.future-card .feature-list li .completed-badge {
    animation: subtleGlow 3s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 105, 92, 0.3), 0 0 0 rgba(0, 150, 136, 0);
    }
    50% {
        box-shadow: 0 4px 12px rgba(0, 105, 92, 0.3), 0 0 10px rgba(0, 150, 136, 0.3);
    }
}

/* Responsive adjustments for completed badges */
@media only screen and (max-width: 600px) {
    .future-card .feature-list li .completed-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
        border-radius: 10px;
        min-width: 100px; /* Adjusted for mobile */
    }
    
    .future-card .feature-list li .completed-badge::before {
        margin-right: 0.3rem;
        font-size: 0.8rem;
    }
}

@media only screen and (max-width: 992px) {
    .future-card {
        margin-bottom: 2rem;
    }
}

/* Feature Icons Styling */
.feature-icon {
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon i.material-icons.large {
  font-size: 6rem;
  background-color: #e3f2fd;
  padding: 2rem;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-row:hover .feature-icon i.material-icons.large {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

@media only screen and (max-width: 992px) {
  .feature-icon {
    padding: 1rem 0;
  }
  
  .feature-icon i.material-icons.large {
    font-size: 4rem;
    padding: 1.5rem;
  }
}

/* Social Media Icons Styling */
.social-icon {
  width: 24px;
  height: 24px;
  display: block;
  margin: 8px;
}

.contact-item.social-media .btn-floating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background-color: white;
}

/* Back to Top Button */
.fixed-action-btn {
  position: fixed;
  right: 23px;
  bottom: 23px;
  z-index: 997;
}

#back-to-top {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Plan Badge Styles */
.price {
  position: relative;
  margin: 2rem 0;
  padding-top: 30px; /* Added space to prevent badge overlap */
}

.price .plan-badge {
  position: absolute;
  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
  white-space: nowrap; /* Prevent text wrapping */
  padding: 5px 15px;
  border-radius: 4px;
  top: -10px; /* Adjusted position */
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1;
  animation: pulse 2s infinite ease-in-out;
}

.price .plan-badge.popular-badge {
  background: linear-gradient(45deg, #f17e11, #ff9800);
  transform: translateX(-50%) rotate(-2deg);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  animation: pulse 2s infinite ease-in-out;
  font-size: 0.8rem; /* Smaller font for better fit */
}

/* Featured Pricing Card Styles */
.pricing-card.featured {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15) !important;
  border: 3px solid #f17e11;
  position: relative;
  z-index: 10;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card.featured:hover {
  transform: translateY(-20px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2) !important;
  border-color: #e67300;
}

/* Responsive adjustments for plan badges */
@media only screen and (max-width: 600px) {
  .price .plan-badge {
    font-size: 0.7rem; /* Smaller font on mobile */
    padding: 4px 12px;
    top: -8px; /* Adjusted position for mobile */
    transform: translateX(-50%) rotate(-1deg); /* Reduced rotation on mobile */
  }
  
  .price {
    padding-top: 25px; /* Adjusted padding for mobile */
  }
  
  .pricing-card.featured {
    transform: none;
    border: 2px solid #f17e11;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

/* Add some pulse animation to draw attention */
@keyframes pulse {
  0% { transform: translateX(-50%) rotate(-3deg) scale(1); }
  50% { transform: translateX(-50%) rotate(-3deg) scale(1.05); }
  100% { transform: translateX(-50%) rotate(-3deg) scale(1); }
}

 /* Contact Section Responsive Styles */
  .contact-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .contact-btn-wrapper {
    text-align: center;
  }
  
  .contact-note {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #666;
  }
  
  .contact-info {
    padding: 1rem 0;
  }
  
  /* Adjustments for small screens */
  @media only screen and (max-width: 600px) {
    .contact-item {
      margin-bottom: 1.2rem; /* More space between items on mobile */
    }
    
    .contact-item i {
      margin-right: 0.75rem; /* Smaller icon margin on mobile */
    }
    
    .contact-item.social-media {
      margin-top: 1.5rem;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    .btn-large {
      height: auto;
      line-height: 1.5;
      padding: 12px 24px;
    }
    
    .btn-large i {
      margin-right: 8px !important;
    }
  }
  
  /* Medium screens alignment */
  @media only screen and (min-width: 601px) {
    .contact-btn-container {
      min-height: 300px; /* Match approximate height of contact info column */
    }
  }

  /* Add this to your landing-page.css file or in a <style> tag in the head section */
@media only screen and (max-width: 600px) {
  /* Improve contact button alignment on mobile */
  .contact-btn-container {
    padding: 10px 0;
  }
  
  .contact-btn-wrapper {
    text-align: center;
    width: 100%;
  }
  
  .contact-btn-wrapper .btn-large {
    width: 90%;
    height: auto;
    line-height: 1.5;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin: 0 auto;
  }
  
  .contact-btn-wrapper .material-icons {
    margin-right: 8px !important;
  }

  /* Fix social media icons alignment */
  .contact-item.social-media {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .contact-item.social-media .btn-floating {
    margin: 5px;
  }
}

/* Back-to-top button positioning - RIGHT BOTTOM */
.fixed-action-btn {
  position: fixed !important;
  right: 23px !important;
  bottom: 23px !important;
  z-index: 997;
}

/* Tawk.to chat widget positioning - RIGHT BOTTOM WITH SPACING */
#tawkchat-minified-container,
#tawkchat-minified-box,
.widget-visible #tawkchat-container {
  bottom: 80px !important;
  right: 22px !important;
}

/* Additional tawk.to positioning for different states with precise alignment */
div[id*="tawk"] {
  bottom: 80px !important;
  right: 22px !important;
}

/* Ensure tawk widget iframe positioning with exact alignment */
iframe[src*="tawk.to"] {
  bottom: 80px !important;
  right: 22px !important;
}

/* Fine-tune tawk widget container alignment */
div[id^="tawkchat"] {
  right: 22px !important;
  bottom: 80px !important;
}

/* Additional precision for tawk widget positioning */
#tawkchat-container {
  right: 22px !important;
  bottom: 80px !important;
}

/* Equal Height Cards for Coming Soon Section */
.coming-soon .equal-height {
  display: flex;
  flex-wrap: wrap;
}

.coming-soon .equal-height > [class*="col"] {
  display: flex;
}

.future-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Badge styling for Q2 and Q3 badges in coming-soon section */
.coming-soon .badge.q2-badge {
  background-color: #ff9800 !important; /* Orange */
  color: white;
}

.coming-soon .badge.q3-badge {
  background-color: #2196f3 !important; /* Blue */
  color: white;
}

/* Optional: Add q1-badge with red color if it exists */
.coming-soon .badge.q1-badge {
  background-color: #f44336 !important; /* Red */
  color: white;
}

/* Q4 badge styling for coming-soon section */
.coming-soon .badge.q4-badge {
  background-color: #f44336 !important; /* Red */
  color: white;
}

/* Planning badge styling for coming-soon section */
.coming-soon .planning-badge {
  background-color: #757575 !important; /* Gray for planning */
  color: white !important;
}

/* General rule for all timeline badges to prevent wrapping and ensure consistency */
.coming-soon .q2-badge,
.coming-soon .q3-badge,
.coming-soon .q4-badge,
.coming-soon .planning-badge {
  white-space: nowrap !important;
  min-width: 70px !important;
  text-align: center !important;
  padding: 4px 8px !important;
  font-size: 0.75rem !important;
  display: inline-block !important;
  vertical-align: middle !important;
  line-height: 1.2 !important;
}