:root {
    --light-yellow: #f0f9ee;
    --light-green: #e2f4df;
    --light-orange: #ffe8d1;
    --light-orange-bg: #fff3e6;
    --success: #6cc85d;
    --primery: #ff6d00;
    --dark-gray: #08100a;
    --dark-greay-old: #9599ab;
    --dark-gray:#424644;
    --dark-more: #1b0e35;
    --greay: #afafaf;
    --text-greay: #848484;
    --black: #000000;
    --gray:#424644;
    --bg-white: #ffffff;
    --text-white: #fff;
    --red-color: #ff0000;
    --light-greay: #dddfea;

}



/* =========== Premium Industries Section ============ */
.industries-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.industries-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primery), transparent);
}

/* Animated Stats */
.industry-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 40px 0 60px;
  padding: 30px;
  background: rgba(255, 109, 0, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 109, 0, 0.1);
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primery);
  margin-bottom: 10px;
  font-family: 'Manrope', sans-serif;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Tabs Navigation */
.industry-tabs-container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
}

.tabs-header {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #f0f0f0;
}

.tab-btn {
  padding: 15px 30px;
  border: none;
  background: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #999;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}


.tab-btn.active {
  color: var(--primery);
}

.tab-btn-secondary.active {
  color: var(--gray) !important;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primery);
  border-radius: 3px 3px 0 0;
}

.tab-btn-secondary.active.active::after {
  background: var(--dark-greay-old) !important;
}

/* Industry Cards Grid */
.industry-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 colonnes fixes */
  gap: 30px;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .industry-showcase {
    grid-template-columns: repeat(2, 1fr); /* 2 par ligne en tablette */
  }
}

@media (max-width: 600px) {
  .industry-showcase {
    grid-template-columns: 1fr; /* 1 par ligne en mobile */
  }
}


.industry-card {
    background: var(--light-orange-bg);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .service-bg{
    background: #FCFDFD !important;
  }


.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 109, 0, 0.05), transparent);
  transition: left 0.5s ease;
}

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

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primery);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 109, 0, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon-service{
  background: var(--light-greay) !important;
}

.card-icon i {
  font-size: 2rem !important;
  color: var(--primery);
}

.industry-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.industry-card p {
  color: #718096;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.card-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-stats span {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(72, 187, 120, 0.1);
  color: #48bb78;
  display: inline-block;
}

.card-stats span:nth-child(2) {
  background: rgba(245, 101, 101, 0.1);
  color: #f56565;
}

/* CTA Section */
.industry-cta-industry {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--primery) 0%, #ff8c00 100%);
  color: white;
  border-radius: 20px;
  margin-top: 40px;
}

.industry-cta-industry h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.industry-cta-industry p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons-industry {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: white;
  color: var(--primery);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: white;
  color: var(--primery);
}

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

.stat-number {
  animation: countUp 1s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .industry-stats {
    flex-direction: column;
    gap: 30px;
  }
  
  .tabs-header {
    flex-direction: column;
    align-items: center;
  }
  
  .industry-showcase {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons-industry {
    flex-direction: column;
    align-items: center;
  }
  
  .industry-cta-industry {
    padding: 40px 20px;
  }
  
  .industry-cta-industry h3 {
    font-size: 1.8rem;
  }
}