/* 
===========================================================================================
                    PORTFOLIO DETAILS - MODERN DESIGN
===========================================================================================
*/

/* ====== BACK BUTTON ====== */
.back-button-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 50px 20px;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--bg-color-headers);
  border: 2px solid var(--skin-color);
  border-radius: 50px;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-button:hover {
  background: var(--skin-color);
  color: var(--text-color-black);
  transform: translateX(-5px);
}

.back-button i {
  font-size: 16px;
}

/* ====== PROJECT HERO ====== */
.project-hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.project-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 20px;
  background: var(--skin-color-glow);
  border: 2px solid var(--skin-color);
  border-radius: 50px;
  color: var(--skin-color);
  font-weight: 600;
  font-size: 14px;
}

.project-badge i {
  font-size: 18px;
}

.hero-content h1 {
  font-size: clamp(48px, 6vw, 72px);
  color: var(--text-color);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.project-subtitle {
  font-size: 20px;
  color: var(--text-color-2);
  line-height: 1.6;
  margin: 0;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.project-tags .tag {
  padding: 8px 16px;
  background: var(--bg-color);
  border: 1px solid var(--skin-color);
  border-radius: 20px;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.project-tags .tag:hover {
  background: var(--skin-color);
  color: var(--text-color-black);
  transform: translateY(-2px);
}

.project-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn i {
  font-size: 16px;
}

.btn-primary {
  background: var(--skin-color);
  color: var(--text-color-black);
  box-shadow: 0 4px 15px var(--skin-color-shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--skin-color-shadow-strong);
}

.btn-secondary {
  background: transparent;
  border-color: var(--skin-color);
  color: var(--text-color);
}

.btn-secondary:hover {
  background: var(--skin-color);
  color: var(--text-color-black);
}

.btn-full {
  width: 100%;
}

/* Hero Image */
.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--skin-color);
}

.image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--skin-color);
  border-radius: 20px;
  z-index: -1;
}

/* ====== PROJECT INFO GRID ====== */
.project-info-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 50px;
  background: var(--bg-color-headers);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.info-card {
  background: var(--bg-color);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid transparent;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--skin-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--skin-color-shadow);
}

.info-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--skin-color-glow);
  border: 2px solid var(--skin-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon i {
  font-size: 24px;
  color: var(--skin-color);
}

.info-card h3 {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.info-card p {
  font-size: 16px;
  color: var(--text-color-2);
  margin: 0;
}

/* ====== PROJECT DESCRIPTION ====== */
.project-description {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 50px;
}

.description-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.description-content h2 {
  font-size: 42px;
  color: var(--text-color);
  margin-bottom: 25px;
  font-weight: 700;
}

.description-content h3 {
  font-size: 28px;
  color: var(--text-color);
  margin: 40px 0 20px;
  font-weight: 600;
}

.description-content p {
  font-size: 18px;
  color: var(--text-color-2);
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.description-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: var(--skin-color-glow);
  border-left: 4px solid var(--skin-color);
  border-radius: 10px;
  margin: 30px 0;
}

.description-highlight i {
  font-size: 32px;
  color: var(--skin-color);
  flex-shrink: 0;
}

.description-highlight h4 {
  font-size: 20px;
  color: var(--text-color);
  margin: 0 0 5px 0;
  font-weight: 600;
}

.description-highlight p {
  font-size: 16px;
  color: var(--text-color-2);
  margin: 0;
  text-align: left;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--bg-color-headers);
  border-radius: 10px;
  margin-bottom: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.features-list li:hover {
  border-color: var(--skin-color);
  transform: translateX(5px);
}

.features-list li i {
  font-size: 20px;
  color: var(--skin-color);
  flex-shrink: 0;
}

.features-list li span {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 500;
}

/* Sidebar */
.description-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-card {
  background: var(--bg-color-headers);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.sidebar-card:hover {
  border-color: var(--skin-color);
}

.sidebar-card h3 {
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.tech-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tech-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: var(--bg-color);
  border-radius: 8px;
}

.tech-label {
  font-size: 14px;
  color: var(--text-color-2);
  font-weight: 500;
}

.tech-value {
  font-size: 14px;
  color: var(--skin-color);
  font-weight: 600;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px;
  background: var(--bg-color);
  border-radius: 10px;
  color: var(--text-color);
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.link-item:hover {
  border-color: var(--skin-color);
  background: var(--skin-color-glow);
}

.link-item i:first-child {
  font-size: 18px;
  color: var(--skin-color);
}

.link-item span {
  flex: 1;
  font-weight: 500;
}

.link-item i:last-child {
  font-size: 14px;
  color: var(--text-color-2);
}

.cta-card {
  background: linear-gradient(135deg, var(--skin-color-glow) 0%, var(--bg-color-headers) 100%);
  border: 2px solid var(--skin-color);
  text-align: center;
}

.cta-card i {
  font-size: 40px;
  color: var(--skin-color);
  margin-bottom: 15px;
}

.cta-card h3 {
  margin-bottom: 10px;
}

.cta-card p {
  font-size: 14px;
  color: var(--text-color-2);
  margin-bottom: 20px;
  text-align: center;
}

/* ====== PROJECT GALLERY ====== */
.project-gallery {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 50px;
  background: var(--bg-color-headers);
}

.project-gallery h2 {
  font-size: 42px;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
}

.gallery-subtitle {
  font-size: 18px;
  color: var(--text-color-2);
  text-align: center;
  margin-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay span {
  color: white;
  font-size: 16px;
  font-weight: 600;
}

/* ====== PROJECT NAVIGATION ====== */
.project-navigation {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 50px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}

.nav-project {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 30px;
  background: var(--bg-color-headers);
  border: 2px solid transparent;
  border-radius: 15px;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-project:hover {
  border-color: var(--skin-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--skin-color-shadow);
}

.nav-prev {
  justify-content: flex-start;
}

.nav-next {
  justify-content: flex-end;
}

.nav-project i {
  font-size: 24px;
  color: var(--skin-color);
}

.nav-project div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-project span {
  font-size: 14px;
  color: var(--text-color-2);
  font-weight: 500;
}

.nav-project strong {
  font-size: 18px;
  color: var(--text-color);
  font-weight: 600;
}

.nav-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: var(--skin-color);
  border-radius: 15px;
  color: var(--text-color-black);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-center:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--skin-color-shadow-strong);
}

.nav-center i {
  font-size: 24px;
}

.nav-center span {
  font-size: 14px;
  font-weight: 600;
}

/* ====== RESPONSIVE ====== */
@media screen and (max-width: 1200px) {
  .project-hero {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .description-container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .back-button-container {
    padding: 100px 25px 20px;
  }

  .project-hero {
    padding: 40px 25px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .project-subtitle {
    font-size: 16px;
  }

  .project-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .image-decoration {
    display: none;
  }

  .project-info-section {
    padding: 60px 25px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-description {
    padding: 60px 25px;
  }

  .description-content h2 {
    font-size: 32px;
  }

  .description-content h3 {
    font-size: 24px;
  }

  .description-content p {
    font-size: 16px;
  }

  .project-gallery {
    padding: 60px 25px;
  }

  .project-gallery h2 {
    font-size: 32px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .project-navigation {
    padding: 60px 25px;
    grid-template-columns: 1fr;
  }

  .nav-center {
    order: -1;
  }
}

@media screen and (max-width: 480px) {
  .back-button-container {
    padding: 90px 15px 20px;
  }

  .project-hero {
    padding: 30px 15px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .project-info-section,
  .project-description,
  .project-gallery,
  .project-navigation {
    padding: 40px 15px;
  }

  .sidebar-card,
  .info-card {
    padding: 20px;
  }
}

/* ====== FIX BOUTON CTA - VERSION CORRIGÉE ====== */
.cta-card {
  background: var(--bg-color-headers);
  border: 2px solid var(--skin-color);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 30px !important;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--skin-color-glow) 0%, transparent 100%);
  opacity: 0.2;
  z-index: 0;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card i {
  font-size: 48px;
  color: var(--skin-color);
  margin-bottom: 20px;
  display: block;
}

.cta-card h3 {
  margin-bottom: 15px !important;
  color: var(--text-color);
  font-size: 22px !important;
}

.cta-card p {
  font-size: 16px !important;
  color: var(--text-color-2);
  margin-bottom: 25px !important;
  text-align: center !important;
  line-height: 1.6;
}

.cta-card .btn-primary {
  background: var(--skin-color) !important;
  color: var(--text-color-black) !important;
  border: 2px solid var(--skin-color) !important;
  font-weight: 600;
  padding: 16px 32px !important;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.cta-card .btn-primary:hover {
  background: transparent !important;
  color: var(--skin-color) !important;
  border: 2px solid var(--skin-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--skin-color-shadow);
}

.cta-card .btn-primary i {
  font-size: 18px !important;
  margin: 0 !important;
  color: inherit !important;
}

/* ====== MASQUER LE MENU SUR PORTFOLIO DETAILS ====== */
body.portfolio-details-page .navbar .links {
  display: none;
}

body.portfolio-details-page .navbar .right-container .button {
  display: none;
}

body.portfolio-details-page .navbar {
  justify-content: center;
}

body.portfolio-details-page .navbar .container {
  justify-content: center;
}

@media screen and (max-width: 1000px) {
  body.portfolio-details-page .navbar .toggle-btn {
    display: none;
  }
}

/* ====== LIGHTBOX GALLERY - IMAGES PLUS GRANDES ====== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.lightbox-content {
  position: relative;
  max-width: 95%;
  max-height: 95vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--skin-color);
  border: none;
  border-radius: 50%;
  color: var(--text-color-black);
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
  background: white;
  transform: rotate(90deg) scale(1.1);
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: var(--skin-color);
  border: none;
  border-radius: 50%;
  color: var(--text-color-black);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10001;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 10001;
}

.lightbox-caption {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  max-width: 80%;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 10001;
}

/* Gallery cursor pointer */
.gallery-item {
  cursor: zoom-in;
}

@media screen and (max-width: 768px) {
  .lightbox {
    padding: 10px;
  }

  .lightbox-content {
    max-width: 100%;
    max-height: 100vh;
  }

  .lightbox-image {
    max-height: 100vh;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .lightbox-close {
    width: 50px;
    height: 50px;
    font-size: 24px;
    top: 15px;
    right: 15px;
  }

  .lightbox-prev {
    left: 15px;
  }

  .lightbox-next {
    right: 15px;
  }

  .lightbox-caption {
    font-size: 14px;
    padding: 10px 20px;
    bottom: 80px;
    max-width: 90%;
  }

  .lightbox-counter {
    font-size: 14px;
    padding: 10px 20px;
    bottom: 20px;
  }
}

@media screen and (max-width: 480px) {
  .lightbox-prev,
  .lightbox-next {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .lightbox-close {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}




/* ====== WRITE-UPS SECTION ====== */
.writeups-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.writeups-content {
  width: 100%;
}

.writeups-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.writeup-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px;
  background: var(--bg-color-headers);
  border: 2px solid var(--skin-color);
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.writeup-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--skin-color-shadow);
  background: linear-gradient(135deg, var(--bg-color-headers) 0%, rgba(55, 177, 130, 0.05) 100%);
}

.writeup-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.writeup-header i {
  font-size: 32px;
  color: var(--skin-color);
  margin-top: 5px;
}

.writeup-title h4 {
  font-size: 22px;
  color: var(--text-color);
  font-weight: 700;
  margin: 0 0 8px 0;
}

.writeup-title p {
  font-size: 14px;
  color: var(--text-color-2);
  margin: 0;
}

.writeup-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.meta-badge {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid;
  letter-spacing: 0.5px;
}

.difficulty-medium {
  background: rgba(255, 152, 0, 0.1);
  color: #ff9800;
  border-color: #ff9800;
}

.difficulty-easy {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
  border-color: #4caf50;
}

.difficulty-hard {
  background: rgba(244, 67, 54, 0.1);
  color: #f44336;
  border-color: #f44336;
}

.meta-info,
.meta-date,
.meta-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-color-2);
}

.meta-info i,
.meta-date i,
.meta-link i {
  color: var(--skin-color);
  font-size: 14px;
}

.meta-link {
  margin-left: auto;
  color: var(--skin-color);
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .writeup-item {
    padding: 25px;
  }

  .writeup-header {
    gap: 15px;
  }

  .writeup-header i {
    font-size: 28px;
  }

  .writeup-title h4 {
    font-size: 18px;
  }

  .meta-link {
    margin-left: 0;
    order: -1;
    width: 100%;
  }
}

.platform-badge {
  display: inline-block;
  margin-left: 12px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1.5px solid;
}

.platform-badge.tryhackme {
  background: rgba(230, 126, 34, 0.1);
  color: #e67e22;
  border-color: #e67e22;
}

.platform-badge.rootme {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
  border-color: #3498db;
}

.platform-badge.hackthebox {
  background: rgba(155, 89, 182, 0.1);
  color: #9b59b6;
  border-color: #9b59b6;
}

/* ====== VIDEO CONTAINER ====== */
.video-container {
  max-width: 900px;
  margin: 50px auto 0;
  padding: 0 50px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  background: var(--bg-color-headers);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

@media screen and (max-width: 768px) {
  .video-container {
    padding: 0 25px;
    margin: 40px auto 0;
  }
}

.cyber {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid #f44336;
}

.web {
  background: rgba(33, 150, 243, 0.2);
  color: #2196F3;
  border: 1px solid #2196F3;
}

.iot {
  background: rgba(156, 39, 176, 0.2);
  color: #9c27b0;
  border: 1px solid #9c27b0;
}

.certif {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid #4caf50;
}
