/**
* Template Name: Personal
* Template URL: https://bootstrapmade.com/personal-free-resume-bootstrap-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  background-color: #040404;
  color: black;
  position: relative;
  background: transparent;
}

body::before {
  content: "";
  position: fixed;
  background: #040404 url("../img/bg.jpg") top right no-repeat;
  background-size: cover;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: -1;
}

@media (min-width: 1024px) {
  body::before {
    background-attachment: fixed;
  }
}

a {
  color: #35b6c8;
  text-decoration: none;
}

a:hover {
  color: #0097b2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: ease-in-out 0.3s;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  z-index: 997;
  overflow-y: auto;
}

#header * {
  transition: ease-in-out 0.3s;
}

#header h1 {
  font-size: 48px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

#header h1 a,
#header h1 a:hover {
  color: black;
  line-height: 1;
  display: inline-block;
}

#header h2 {
  font-size: 24px;
  margin-top: 20px;
  color: rgba(0, 0, 0, 0.8);
}

#header h2 span {
  border-bottom: 2px solid #35b6c8;
  padding-bottom: 6px;
}

#header img {
  padding: 0;
  margin: 0;
}

#header .social-links {
  margin-top: 40px;
  display: flex;
}

#header .social-links a {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: black;
  line-height: 1;
  margin-right: 8px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
}

#header .social-links a:hover {
  background: #35b6c8;
}

@media (max-width: 992px) {
  #header h1 {
    font-size: 36px;
  }

  #header h2 {
    font-size: 20px;
    line-height: 30px;
  }

  #header .social-links {
    margin-top: 15px;
  }

  #header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/* Header Top */
#header.header-top {
  height: 80px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
}

#header.header-top .social-links,
#header.header-top h2 {
  display: none;
}

#header.header-top h1 {
  margin-right: auto;
  font-size: 36px;
}

#header.header-top img {
  max-height: 60px;
  margin-right: 20px !important;
}

#header.header-top .container {
  display: flex;
  align-items: center;
}

#header.header-top .navbar {
  margin: 0;
}

@media (max-width: 768px) {
  #header.header-top {
    height: 60px;
  }

  #header.header-top h1 {
    font-size: 26px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  margin-top: 35px;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar li+li {
  margin-left: 30px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #35b6c8;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 25px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: black;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: black;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  position: fixed;
  right: 15px;
  top: 15px;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  transition: 0.3s;
  z-index: 999;
  margin-top: 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 45px;
  left: 15px;
  padding: 10px 0;
  overflow-y: auto;
  transition: 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.navbar-mobile li {
  padding: 12px 20px;
}

.navbar-mobile li+li {
  margin: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  font-size: 16px;
  position: relative;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 140px;
  bottom: 100%;
  opacity: 0;
  transition: ease-in-out 0.4s;
  z-index: 2;
}

section.section-show {
  top: 100px;
  bottom: auto;
  opacity: 1;
  padding-bottom: 45px;
}

section .container {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  section {
    top: 120px;
  }

  section.section-show {
    top: 80px;
  }
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 20px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #4cceeb;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: -15px 0 15px 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: black;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-me {
  border-radius: 10px;
}

.about-me .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #35b6c8;
}

.about-me .content ul {
  list-style: none;
  padding: 0;
}

.about-me .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about-me .content ul strong {
  margin-right: 10px;
}

.about-me .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #35b6c8;
  line-height: 0;
}

.about-me .content p:last-child {
  margin-bottom: 0;
}

.about-me .content {
  padding-left: 20px;
}

.about-me .content h3 {
  margin-bottom: 20px;
}

.about-me .content .row {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.about-me .content ul {
  padding-left: 0;
  margin-bottom: 0;
}

.about-me .content ul li {
  margin-bottom: 12px;
}

.about-me .content p {
  margin-top: 15px;
  line-height: 1.6;
  font-size: 15.5px;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  color: #35b6c8;
  border-radius: 50px;
  line-height: 0;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: black;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills-section {
  margin-bottom: 40px;
}

.skills-category {
  text-align: center;
  margin-bottom: 25px;
}

.skills-category h3 {
  background: #35b6c8;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin: 0;
  box-shadow: 0 2px 10px rgba(53, 182, 200, 0.3);
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.skill-bubble {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 15px;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 110px;
  height: 120px;
  justify-content: center;
}

.skill-bubble img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 12px;
}

.skill-bubble span {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #000;
}

.skill-bubble:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.skill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  padding: 25px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  justify-content: center;
  transform: rotateZ(var(--angle, 0deg));
}

.skill-title {
  position: absolute;
  top: -14px;
  left: 20px;
  font-size: 14px;
  font-weight: bold;
  background: #35b6c8;
  padding: 2px 10px;
  border-radius: 5px;
  color: #fff;
  transform: rotateZ(calc(-1 * var(--angle, 0deg)));
}

/* Rotations des containers avec contenu maintenu droit */
.skill-group:nth-child(1) { --angle: -2deg; }
.skill-group:nth-child(2) { --angle: 2.5deg; }
.skill-group:nth-child(3) { --angle: -1.5deg; }

/* Contre-rotation pour maintenir le contenu droit */
.skill-group .skill-bubble {
  transform: rotateZ(calc(-1 * var(--angle, 0deg)));
}

.skill-group .skill-bubble:hover {
  transform: rotateZ(calc(-1 * var(--angle, 0deg))) translateY(-5px);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.icon-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding: 20px;
  background: #f8f8f8;
  text-align: center;
  transition: all ease-in-out 0.3s;
}

.icon-box h4 {
  font-weight: 700;
  margin: 20px 0 10px;
  font-size: 24px;
}

.icon-box p {
  text-align: justify;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 30px; /* ← ajoute une bonne marge */
  flex-grow: 1; /* ← prend l'espace restant */
}

.services .icon-box {
  text-align: center;
  background: #f8f8f8;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #35b6c8;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.services .icon-box .icon i {
  color: black;
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .icon-box h4 {
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: black;
}

.services .icon-box:hover {
  background: #ebebeb;
}

.services .icon-box:hover .icon {
  background: black;
}

.services .icon-box:hover .icon i {
  color: #35b6c8;
}

.services .icon-box:hover .icon::before {
  background: #35e888;
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: black;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #333333;
  padding: 20px;
  width: 100%;
  background: rgba(204, 204, 204, 0.2);
}

.contact .info-box i.bx {
  font-size: 24px;
  color: #35b6c8;
  border-radius: 50%;
  padding: 14px;
  float: left;
  background: #f8f9fa;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #2c3e50;
  font-weight: 700;
  margin: 10px 0 8px 68px;
}

.contact .info-box p {
  padding: 0;
  color: #666666;
  line-height: 24px;
  font-size: 18px; /* Augmenté de 14px à 18px pour le texte (email, téléphone, ville) */
  margin: 0 0 0 68px;
}

.contact .info-box .social-links {
  margin: 5px 0 0 68px;
  display: flex;
}

.contact .info-box .social-links a {
  font-size: 24px; /* Augmenté de 18px à 24px pour l'icône LinkedIn */
  display: inline-block;
  color: #666666;
  line-height: 1;
  margin-right: 12px;
  transition: 0.3s;
}

.contact .info-box .social-links a:hover {
  color: #35b6c8;
} 

/*--------------------------------------------------------------
# Project Actions & Mockups Section
--------------------------------------------------------------*/
.project-actions {
  margin-top: auto;
  padding-top: 15px; /* espace entre texte et bouton */
}

.btn-view-mockups {
  color: #584e4e;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-view-mockups:hover {
  transform: translateY(-2px);
}

.btn-view-mockups i {
  font-size: 14px;
}

/* Effet hover inverse : quand on survole la section, le bouton change de couleur */
.services .icon-box:hover .btn-view-mockups {
  border: none;
  background: #f8f8f8; /* Couleur de fond similaire à la section avant hover */
  color: #584e4e; /* Texte en bleu */
}

/*--------------------------------------------------------------
# Mockups Section
--------------------------------------------------------------*/
.mockups .project-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-back-projects {
  background: transparent;
  color: #35b6c8;
  border: 1px solid #35b6c8;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-back-projects:hover {
  border: 1px solid #0097b2;
  color: #0097b2;
}

.mockups .project-header h3 {
  margin: 0;
  color: #444;
  font-size: 26px;
  font-weight: 700;
}

.project-info-section {
  margin-bottom: 40px;
  padding: 20px;
  background: rgba(204, 204, 204, 0.1);
  border-radius: 5px;
}

.project-info-section .row {
  align-items: flex-start;
}

.project-info-section p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  text-align: justify;
  margin: 0;
}

.project-tags-section {
  text-align: center;
}

.project-tags-section h5 {
  color: #35b6c8;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.project-tag {
  background: transparent;
  color: #35b6c8;
  border: 1px solid #35b6c8;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Carousel
--------------------------------------------------------------*/
.carousel-section {
  background: rgba(204, 204, 204, 0.1);
  padding: 30px;
  border-radius: 5px;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.carousel-track-container {
  flex: 1;
  overflow: hidden;
  border-radius: 5px;
  background: white;
  margin: 0 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.carousel-slide img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 5px;
}

.carousel-btn {
  background: #35b6c8;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #0097b2;
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.carousel-btn:disabled:hover {
  background: #35b6c8;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7c7c7c;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: #35b6c8;
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Modal pour les images en plein écran
--------------------------------------------------------------*/
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-modal.active {
  display: flex;
  opacity: 1;
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #35b6c8;
}

#modalImage {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.modal-nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: auto;
  backdrop-filter: blur(10px);
}

.modal-nav-btn:hover {
  background: rgba(53, 182, 200, 0.8);
  transform: scale(1.1);
}

.modal-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.modal-nav-btn:disabled:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: none;
}

.modal-indicators {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.modal-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-indicator.active {
  background: #35b6c8;
  transform: scale(1.2);
}

.modal-indicator:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* Empêcher le scroll du body quand le modal est ouvert */
body.modal-open {
  overflow: hidden;
}

/*--------------------------------------------------------------
# Responsive Mockups
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .mockups .project-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .mockups .project-header h3 {
    font-size: 22px;
  }
  
  .project-info-section {
    padding: 15px;
  }
  
  .project-info-section p {
    font-size: 14px;
  }
  
  .carousel-section {
    padding: 20px 15px;
  }
  
  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .carousel-track-container {
    margin: 0 10px;
  }
  
  .carousel-slide {
    padding: 15px;
  }
  
  .carousel-slide img {
    max-height: 300px;
  }
  
  .project-tags {
    justify-content: center;
  }
  
  /* Modal responsive */
  .modal-content {
    max-width: 95%;
    max-height: 95%;
  }
  
  .modal-close {
    top: -40px;
    font-size: 30px;
  }
  
  #modalImage {
    max-height: 75vh;
  }
  
  .modal-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .modal-indicators {
    margin-top: 15px;
  }
  
  .modal-indicator {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 576px) {
  .project-info-section .row {
    flex-direction: column;
  }
  
  .project-tags-section {
    margin-top: 20px;
    text-align: center;
  }
  
  .carousel-track-container {
    margin: 0 5px;
  }
  
  .carousel-slide {
    padding: 10px;
  }
  
  .btn-view-mockups {
    padding: 6px 16px;
    font-size: 13px;
  }
  
  /* Modal responsive mobile */
  .modal-content {
    max-width: 98%;
    max-height: 98%;
  }
  
  .modal-close {
    top: -35px;
    font-size: 25px;
  }
  
  #modalImage {
    max-height: 70vh;
  }
  
  .modal-nav-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Project Description Scrollable
--------------------------------------------------------------*/
.project-description-scrollable {
  max-height: 250px; /* Réduit de 400px à 250px */
  overflow-y: auto;
  padding: 15px;
  background: rgba(248, 248, 248, 0.5);
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  text-align: justify;
  margin: 0;
  white-space: pre-line;
}

/* Scrollbar personnalisée */
.project-description-scrollable::-webkit-scrollbar {
  width: 6px;
}

.project-description-scrollable::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.project-description-scrollable::-webkit-scrollbar-thumb {
  background: #35b6c8;
  border-radius: 3px;
}

.project-description-scrollable::-webkit-scrollbar-thumb:hover {
  background: #0097b2;
}

/* Responsive */
@media (max-width: 768px) {
  .project-description-scrollable {
    max-height: 200px; /* Réduit de 300px à 200px sur mobile */
    padding: 12px;
    font-size: 14px;
  }
}