@charset "UTF-8";
/* --- Variables de Couleurs Globales (à harmoniser avec votre index.scss) --- */
a {
  text-decoration: none;
}

/* Mixins */
html {
  background-color: #343a40;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #343a40;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.mobile-intro-section {
  display: none;
}

/* Header */
.header {
  background-color: transparent;
  position: fixed;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 30px;
  box-sizing: border-box;
}
.header .logo-top {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.header .main-nav-new {
  position: relative;
}
.header .nav-toggle {
  display: block;
  font-size: 1.8rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  transition: color 0.3s ease;
}
.header .nav-toggle:hover {
  color: #00BCD4;
}
.header .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: rgba(52, 58, 64, 0.95);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  flex-direction: column;
  padding: 80px 30px 20px;
  transition: right 0.4s ease-in-out;
  box-sizing: border-box;
}
.header .nav-menu.active {
  right: 0;
}
.header .nav-menu li {
  margin: 15px 0;
}
.header .nav-menu li a {
  color: #f4f4f4;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  display: block;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s ease;
}
.header .nav-menu li a:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #00FF00;
  transition: width 0.3s ease-out;
}
.header .nav-menu li a:hover:after {
  width: 100%;
}
.header .nav-menu li a:hover {
  color: #00FF00;
}

.highlight {
  color: #00BCD4;
  font-weight: bold;
}

/* Section Héro Séparée */
.split-hero {
  display: flex;
  max-height: 100vh;
  position: relative;
  overflow: hidden;
}

.split-left-panel, .split-right-panel {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition: filter 0.5s ease-out, opacity 0.5s ease;
}

.split-left-panel {
  background-color: #E0F7FA;
  color: #263238;
}

.split-right-panel {
  background-color: #1A202C;
  color: #00FF00;
}

/* Effets de survol (déclenchés par JS) */
.split-left-panel.dimmed, .split-right-panel.dimmed {
  filter: brightness(0.7) grayscale(0.5);
  opacity: 0.8;
}

/* Canvas pour les animations de fond */
canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: block;
}

/* Contenu des panneaux */
.panel-content {
  max-width: 450px;
  z-index: 2;
  position: relative;
  color: inherit;
}
.panel-content h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
.panel-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* Styles généraux pour le code display */
.code-text-display {
  background-color: #282c34; /* Couleur de fond sombre typique des terminaux (par ex. Dracula) */
  color: #abb2bf; /* Couleur de texte par défaut claire pour le contraste */
  font-family: "Fira Code", "JetBrains Mono", "Source Code Pro", monospace; /* Police de caractères monospace */
  font-size: 0.95rem; /* Taille de police légèrement ajustée */
  padding: 0 10px; /* Espace interne pour le contenu */
  border-radius: 8px; /* Bords légèrement arrondis */
  overflow-x: auto; /* Permet le défilement horizontal si le code est trop long */
  white-space: pre-wrap; /* Préserve les retours à la ligne et les espaces, mais gère le wrap */
  word-wrap: break-word; /* Casse les mots longs si nécessaire */
  max-width: 100%; /* S'assure qu'il ne déborde jamais de son conteneur */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Ombre pour donner de la profondeur */
  line-height: 1.5; /* Espacement des lignes pour la lisibilité */
  text-align: left; /* Aligner le texte à gauche, comme dans un terminal */
}
.code-text-display .comment {
  color: #5c6370; /* Gris pour les commentaires */
  font-style: italic;
}
.code-text-display .keyword {
  color: #c678dd; /* Violet pour les mots-clés */
}
.code-text-display .green-text {
  color: #98c379; /* Vert plus vif pour les balises/fonctions principales */
}
.code-text-display .light-green-text {
  color: #e5c07b; /* Jaune/orange doux pour d'autres éléments, comme une variable ou un commentaire secondaire */
}

/* Portrait Central & Nom */
.portrait-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.central-portrait {
  width: 160px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}
.central-portrait:hover {
  transform: scale(1.08);
}
@media (max-width: 992px) {
  .central-portrait {
    width: 180px;
    height: 180px;
    border-width: 4px;
  }
}

.central-name-wrapper {
  text-align: center;
  margin-top: 20px;
  z-index: 51;
  position: relative;
}

.central-name {
  font-family: "Dancing Script", cursive;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
  line-height: 1;
}
@media (max-width: 992px) {
  .central-name {
    font-size: 2.5rem;
    color: #343a40;
    text-shadow: none;
  }
}

/* Boutons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
}
.btn i {
  transition: transform 0.2s ease;
}
.btn:hover i {
  transform: translateX(5px);
}
@media (max-width: 992px) {
  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

.btn-left {
  background-color: #00BCD4;
  color: #fff;
  border: 2px solid #00BCD4;
  box-shadow: 0 5px 15px rgba(0, 188, 212, 0.4);
}
.btn-left:hover {
  background-color: #008fa1;
  box-shadow: 0 8px 20px rgba(0, 188, 212, 0.6);
}

.btn-right {
  background-color: #00FF00;
  color: #1A202C;
  border: 2px solid #00FF00;
  box-shadow: 0 5px 15px rgba(0, 255, 0, 0.4);
}
.btn-right:hover {
  background-color: #00cc00;
  box-shadow: 0 8px 20px rgba(0, 255, 0, 0.6);
}

.btn-primary {
  background-color: #00BCD4;
  color: #fff;
  border: 2px solid #00BCD4;
  box-shadow: 0 5px 15px rgba(0, 188, 212, 0.4);
}
.btn-primary:hover {
  background-color: #008fa1;
  box-shadow: 0 8px 20px rgba(0, 188, 212, 0.6);
}

/* Sections du bas (services-overview, testimonials-section, cta-section) */
.section-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #343a40;
  text-align: center;
}
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-description {
  font-size: 1.2rem;
  color: #343a40;
  margin-bottom: 60px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 992px) {
  .section-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}

/* Nouvelle section: Why Choose Me */
.why-choose-me {
  background-color: #fff;
  padding: 1rem 0px 4em 0px;
}
@media (max-width: 992px) {
  .why-choose-me {
    padding: 4rem 0;
  }
}
.why-choose-me h2 {
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: #343a40;
  text-align: center;
}
@media (max-width: 992px) {
  .why-choose-me h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.why-choose-me h2 .highlight {
  color: #00BCD4;
}
.why-choose-me .choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
@media (max-width: 992px) {
  .why-choose-me .choice-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.why-choose-me .choice-grid .choice-item {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-choose-me .choice-grid .choice-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}
.why-choose-me .choice-grid .choice-item i {
  font-size: 4rem;
  color: #00BCD4;
  margin-bottom: 25px;
}
.why-choose-me .choice-grid .choice-item h3 {
  font-size: 1.8rem;
  color: #343a40;
  margin-bottom: 15px;
}
.why-choose-me .choice-grid .choice-item p {
  font-size: 1.1rem;
  color: #343a40;
  line-height: 1.6;
}

.services-overview {
  background-color: #fff;
  padding: 8rem 0;
}
.services-overview .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.services-overview .services-grid .service-item {
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-overview .services-grid .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.services-overview .services-grid .service-item .service-icon {
  font-size: 3.5rem;
  color: #00BCD4;
  margin-bottom: 20px;
}
.services-overview .services-grid .service-item h3 {
  font-size: 1.6rem;
  color: #343a40;
  margin-bottom: 15px;
}
.services-overview .services-grid .service-item p {
  font-size: 1rem;
  color: #343a40;
}

/* Section Témoignages (Testimonials Section) - NOUVELLE VERSION GRILLE DUALE */
.testimonials-section {
  background: linear-gradient(135deg, #E0F7FA 0%, #D8EEF2 100%);
  padding: 2rem 0;
  text-align: center;
}
@media (max-width: 992px) {
  .testimonials-section {
    padding: 4rem 0;
  }
}
.testimonials-section .section-title {
  margin-bottom: 20px;
  font-size: 2.8rem;
  color: #343a40;
}
@media (max-width: 992px) {
  .testimonials-section .section-title {
    font-size: 2rem;
  }
}
.testimonials-section .section-title .highlight {
  color: #00BCD4;
}
.testimonials-section .section-description {
  margin-bottom: 60px;
  color: #222629;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.15rem;
}
@media (max-width: 992px) {
  .testimonials-section .section-description {
    margin-bottom: 40px;
    font-size: 1rem;
  }
}
.testimonials-section .testimonials-dual-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media (max-width: 992px) {
  .testimonials-section .testimonials-dual-container {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 30px;
  }
}
.testimonials-section .testimonial-category {
  background-color: #fff;
  padding: 0 40px 20px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials-section .testimonial-category h3 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: center;
}
.testimonials-section .testimonial-category h3 i {
  font-size: 2.5rem;
}
@media (max-width: 992px) {
  .testimonials-section .testimonial-category h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  .testimonials-section .testimonial-category h3 i {
    font-size: 2rem;
  }
}
.testimonials-section .testimonial-category.cours h3 {
  color: #00BCD4;
}
.testimonials-section .testimonial-category.info h3 {
  color: #00FF00;
}
.testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 100%;
  justify-content: center;
}
.testimonials-section .testimonial-card {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 220px;
}
.testimonials-section .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.testimonials-section .testimonial-card .quote-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}
.testimonials-section .testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  color: #343a40;
  flex-grow: 1;
}
@media (max-width: 992px) {
  .testimonials-section .testimonial-card p {
    font-size: 1rem;
  }
}
.testimonials-section .testimonial-card .author {
  font-size: 0.95rem;
  font-weight: bold;
  text-align: right;
  display: block;
}
.testimonials-section .testimonial-card.type-cours {
  border-left: 5px solid #00BCD4;
}
.testimonials-section .testimonial-card.type-cours .quote-icon {
  color: #00BCD4;
}
.testimonials-section .testimonial-card.type-cours .author {
  color: #00BCD4;
}
.testimonials-section .testimonial-card.type-info {
  border-left: 5px solid #00FF00;
}
.testimonials-section .testimonial-card.type-info .quote-icon {
  color: #00FF00;
}
.testimonials-section .testimonial-card.type-info .author {
  color: #00FF00;
}

.cta-section {
  background-color: #1A202C;
  color: #f4f4f4;
  padding: 1rem 20px 4rem 20px;
  text-align: center;
}
@media (max-width: 992px) {
  .cta-section {
    padding: 4rem 20px;
  }
}
.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cta-section h2 {
    font-size: 2.2rem;
  }
}
.cta-section h2 .highlight {
  color: #00FF00;
}
.cta-section p {
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto 50px;
}
@media (max-width: 992px) {
  .cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
}
.cta-section .btn-large {
  padding: 20px 60px;
  font-size: 1.3rem;
}
@media (max-width: 992px) {
  .cta-section .btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
  }
}

/* Footer */
.footer {
  background-color: #343a40;
  color: #fff;
  padding-top: 3rem;
  font-size: 0.9rem;
}
.footer .footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 2rem;
}
@media (max-width: 992px) {
  .footer .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
.footer .footer-content .footer-brand h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.footer .footer-content .footer-brand p {
  color: #ccc;
}
.footer .footer-content .footer-nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-content .footer-nav-links ul li {
  margin-bottom: 8px;
}
.footer .footer-content .footer-nav-links ul li a {
  color: #fff;
  text-decoration: none;
}
.footer .footer-content .footer-nav-links ul li a:hover {
  color: #00BCD4;
}
.footer .footer-content .footer-social {
  display: flex;
  gap: 20px;
}
@media (max-width: 992px) {
  .footer .footer-content .footer-social {
    justify-content: center;
  }
}
.footer .footer-content .footer-social a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
.footer .footer-content .footer-social a:hover {
  color: #00BCD4;
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}
.footer .footer-bottom p {
  margin: 5px 0;
  color: #ccc;
}
.footer .footer-bottom p a {
  color: #ccc;
  text-decoration: none;
}
.footer .footer-bottom p a:hover {
  text-decoration: underline;
}

/* Indicateur de Défilement (Scroll Indicator) */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  color: red;
  font-size: 2rem;
  text-align: center;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.scroll-indicator:hover {
  opacity: 1;
}
.scroll-indicator i:nth-child(1) {
  animation: bounce 2s infinite;
}
.scroll-indicator i:nth-child(2) {
  animation: bounce 2s infinite 0.2s;
  margin-top: -10px;
  display: block;
}
.scroll-indicator.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Keyframes pour l'animation de rebond */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@media (min-width: 992px) {
  .split-hero {
    height: 100vh;
  }
}
@media (max-width: 992px) {
  .portrait-container {
    display: none;
  }
  .mobile-intro-section {
    display: block;
    background: linear-gradient(135deg, #00BCD4 0%, #55ecff 100%);
    text-align: center;
    position: relative;
    z-index: 20;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  .mobile-intro-section .mobile-intro-text {
    font-family: "Dancing Script", cursive;
    font-size: 1.8rem;
    color: #fff;
    line-height: 1.3;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }
  .mobile-intro-section .mobile-intro-text .text-cours {
    color: #343a40;
  }
  .mobile-intro-section .mobile-intro-text .text-services {
    color: #1A202C;
  }
  .split-hero {
    flex-direction: column;
    display: flex;
  }
  .split-left-panel,
  .split-right-panel {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
  }
  .split-left-panel .panel-content,
  .split-right-panel .panel-content {
    max-width: 100%;
    text-align: center;
  }
  .split-left-panel .panel-content h2,
  .split-right-panel .panel-content h2 {
    font-size: 1.6rem;
  }
  .split-left-panel .panel-content p,
  .split-right-panel .panel-content p {
    font-size: 1rem;
  }
  .split-left-panel .panel-content .btn,
  .split-right-panel .panel-content .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  .split-left-panel {
    padding-bottom: 120px;
  }
  .split-right-panel {
    padding-top: 100px;
  }
  .code-text-display {
    height: auto;
    font-size: 0.85rem;
    padding: 10px 15px;
    display: none;
  }
  .central-name-wrapper {
    display: none;
  }
  /* Masquer l'indicateur de défilement sur mobile */
  .scroll-indicator {
    display: none;
  }
  .description-left {
    display: none;
  }
  .why-choose-me,
  .testimonials-section,
  .cta-section {
    padding: 1rem 20px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .why-choose-me .choice-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  /* Section Témoignages (Testimonials Section) - Ajustements Mobile */
  .testimonials-section .section-title {
    font-size: 2rem;
  }
  .testimonials-section .section-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }
  .testimonials-section .testimonials-dual-container {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 30px;
  }
  .testimonials-section .testimonial-category {
    padding: 0 20px 20px 20px;
  }
  .testimonials-section .testimonial-category h3 {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
  }
  .testimonials-section .testimonial-category h3 i {
    font-size: 2rem;
  }
  .testimonials-section .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonials-section .testimonial-card {
    min-height: auto;
    padding: 25px;
  }
  .testimonials-section .testimonial-card p {
    font-size: 0.95rem;
  }
  .testimonials-section .testimonial-card .author {
    font-size: 0.85rem;
  }
  /* Footer adjustments for mobile */
  .footer .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .footer-nav-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
}
/* --- Styles spécifiques pour la page "Qui suis-je ?" --- */
main {
  padding: 0;
}

/* --- Section "Hero" - Introduction Principale (Qui suis-je ?) --- */
.who-hero-section {
  background-color: #343a40;
  color: #f4f4f4;
  padding: 50px 20px;
  text-align: center;
  position: relative;
}
.who-hero-section h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5em;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #f4f4f4;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 992px) {
  .who-hero-section h1 {
    font-size: 2.8em;
  }
}
@media (max-width: 768px) {
  .who-hero-section h1 {
    font-size: 2.2em;
  }
}
@media (max-width: 480px) {
  .who-hero-section h1 {
    font-size: 1.8em;
  }
}
.who-hero-section .intro-text {
  font-size: 1.3em;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
  opacity: 0.9;
}
.who-hero-section .intro-text strong {
  color: #6f42c1;
  font-weight: 600;
}

/* --- Section "Mon Parcours Académique" --- */
.parcours-section {
  background-color: #f8f9fa;
  padding: 10px 20px;
  text-align: center;
  color: #343a40;
}
.parcours-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5em;
  color: #343a40;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .parcours-section h2 {
    font-size: 2em;
  }
}
@media (max-width: 480px) {
  .parcours-section h2 {
    font-size: 1.8em;
  }
}
.parcours-section .parcours-details {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.parcours-section .parcours-details p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 15px;
}
.parcours-section .parcours-details p strong {
  color: #00BCD4;
}
.parcours-section .parcours-details ul {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}
.parcours-section .parcours-details li {
  font-size: 1.15em;
  margin-bottom: 12px;
  position: relative;
  padding-left: 35px;
  color: #343a40;
}
.parcours-section .parcours-details li .fas {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #28a745;
  font-size: 1.2em;
}

/* --- Section "Ma Méthodologie" et "Mon Profil Informatique" (les deux colonnes du bas) --- */
.who-split-section {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #ced3d8;
}

.split-left-panel,
.split-right-panel {
  flex: 1;
  padding: 10px 40px;
  min-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.split-left-panel .panel-content,
.split-right-panel .panel-content {
  max-width: 600px;
  text-align: left;
}
@media (max-width: 992px) {
  .split-left-panel,
  .split-right-panel {
    flex-basis: 100%;
    padding: 40px 20px;
    text-align: center;
  }
  .split-left-panel .panel-content,
  .split-right-panel .panel-content {
    text-align: center;
  }
}

.light-panel {
  background-color: #f8f9fa;
  color: #343a40;
}
.light-panel h2 {
  color: #00BCD4;
  font-family: "Montserrat", sans-serif;
  font-size: 2.2em;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(0, 188, 212, 0.3);
  padding-bottom: 10px;
  display: inline-block;
}
.light-panel p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 15px;
}
.light-panel ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.light-panel li {
  font-size: 1.05em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}
.light-panel li .fas {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #00BCD4;
  font-size: 1.1em;
}

.dark-panel {
  background-color: #343a40;
  color: #f4f4f4;
}
.dark-panel h2 {
  text-align: center;
  color: #f4f4f4;
  font-family: "Montserrat", sans-serif;
  font-size: 2.2em;
  margin-bottom: 25px;
  border-bottom: 2px solid rgba(244, 244, 244, 0.3);
  padding-bottom: 10px;
  display: inline-block;
}
.dark-panel p {
  text-align: center;
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 15px;
}
.dark-panel ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.dark-panel li {
  font-size: 1.05em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}
.dark-panel li .fas {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #00BCD4;
  font-size: 1.1em;
}

.content-section {
  padding: 10px 0;
  text-align: center;
}
.content-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.content-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5em;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
}
.content-section h2 .icon-left {
  margin-right: 15px;
  color: #00BCD4;
}
.content-section h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #263238;
}
.content-section h3 .icon-left {
  margin-right: 10px;
  color: #00BCD4;
}
.content-section p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.light-panel {
  background-color: #E0F7FA;
  color: #263238;
}
.light-panel h2 {
  color: #263238;
  border-bottom: 2px solid rgba(38, 50, 56, 0.2);
}
.light-panel h3 {
  color: #263238;
}
.light-panel p {
  color: #263238;
}

.dark-panel {
  background-color: #343a40;
  color: #f4f4f4;
}
.dark-panel h2 {
  color: #f4f4f4;
  border-bottom: 2px solid rgba(244, 244, 244, 0.3);
}
.dark-panel h3 {
  color: #f4f4f4;
}
.dark-panel p {
  color: #f4f4f4;
}

.cours-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../img/fond2.png") no-repeat center center/cover;
  background-attachment: fixed;
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f4f4f4;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  padding: 40px 15px;
}
.cours-hero .container {
  text-align: center;
}
.cours-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #f4f4f4;
  line-height: 1.2;
}
.cours-hero .lead {
  font-size: 1.3em;
  margin-bottom: 0px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}
.cours-hero .highlight-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4em;
  font-weight: 600;
  color: #00BCD4;
  background-color: rgba(52, 58, 64, 0.7);
  padding: 12px 25px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.cours-hero .btn.btn-primary.btn-large {
  padding: 15px 35px;
  font-size: 1.2em;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  background-color: #00BCD4;
  color: #f4f4f4;
  display: inline-block;
  text-decoration: none;
}
.cours-hero .btn.btn-primary.btn-large:hover {
  background-color: #008fa1;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.styled-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
}
.styled-list li {
  font-size: 1.05em;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}
.styled-list li .fas {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #00BCD4;
  font-size: 1.1em;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 15px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.price-cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.price-card {
  background-color: #f4f4f4;
  color: #263238;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 300px;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
}
.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.price-card h3 {
  font-size: 1.8em;
  color: #00BCD4;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 188, 212, 0.3);
  padding-bottom: 10px;
}
.price-card .price {
  font-size: 2.5em;
  font-weight: bold;
  color: #343a40;
  margin-bottom: 5px;
}
.price-card .price span {
  font-size: 1.2em;
  color: #00BCD4;
}
.price-card .sub-price {
  font-size: 1.1em;
  color: #777;
  margin-bottom: 20px;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}
.price-card ul li {
  font-size: 1em;
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}
.price-card ul li .fas {
  color: #00BCD4;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.price-card.featured {
  background-color: #00BCD4;
  color: #f4f4f4;
  box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
  transform: translateY(-10px);
}
.price-card.featured h3 {
  color: #f4f4f4;
  border-bottom-color: rgba(244, 244, 244, 0.5);
}
.price-card.featured .price {
  color: #f4f4f4;
}
.price-card.featured .price span {
  color: #343a40;
}
.price-card.featured .sub-price, .price-card.featured .note {
  color: rgba(244, 244, 244, 0.8);
}
.price-card.featured ul li .fas {
  color: #343a40;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.container .note {
  font-size: 0.7em;
  margin-top: auto;
  z-index: 3;
}

.testimonial-item {
  background-color: #f4f4f4;
  color: #263238;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-item p {
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
}
.testimonial-item .author {
  font-weight: bold;
  color: #00BCD4;
  margin-top: auto;
}

.contact-cta .contact-details {
  margin-top: 30px;
}
.contact-cta .contact-details p {
  font-size: 1.3em;
  margin-bottom: 0px;
}
.contact-cta .contact-details p i {
  margin-right: 10px;
  color: #00BCD4;
}
.contact-cta .contact-details p a {
  color: #f4f4f4;
  text-decoration: none;
}
.contact-cta .contact-details p a:hover {
  text-decoration: underline;
  color: #00BCD4;
}

.price-after {
  margin: 0px;
}

.price-cards-container .white .price-after {
  color: #00BCD4;
}

@media (max-width: 992px) {
  .content-section h2 {
    font-size: 2em;
  }
  .content-section h3 {
    font-size: 1.5em;
  }
  .cours-hero {
    min-height: 60vh;
  }
  .cours-hero h1 {
    font-size: 2.5em;
  }
  .cours-hero .lead {
    font-size: 1.2em;
  }
  .cours-hero .highlight-text {
    font-size: 1.2em;
  }
  .cours-hero .btn.btn-primary.btn-large {
    padding: 12px 30px;
    font-size: 1.1em;
  }
}
@media (max-width: 768px) {
  .content-section {
    padding: 40px 0;
  }
  .content-section h2 {
    font-size: 1.8em;
  }
  .content-section h2 .icon-left {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .cours-hero {
    min-height: 50vh;
  }
  .cours-hero h1 {
    font-size: 2.2em;
  }
  .cours-hero .lead {
    font-size: 1.1em;
  }
  .cours-hero .highlight-text {
    font-size: 1.1em;
    padding: 10px 20px;
  }
  .cours-hero .btn.btn-primary.btn-large {
    padding: 10px 25px;
    font-size: 1em;
  }
  .row {
    flex-direction: column;
  }
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .price-cards-container, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .price-card, .testimonial-item {
    max-width: 100%;
    width: auto;
  }
}
@media (max-width: 480px) {
  .content-section {
    padding: 30px 0;
  }
  .content-section h2 {
    font-size: 1.5em;
  }
  .content-section p {
    font-size: 1em;
  }
  .cours-hero {
    min-height: 45vh;
  }
  .cours-hero h1 {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
  .cours-hero .lead {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .cours-hero .highlight-text {
    font-size: 0.95em;
    padding: 8px 15px;
    margin-bottom: 30px;
  }
  .cours-hero .btn.btn-primary.btn-large {
    font-size: 0.9em;
    padding: 8px 20px;
  }
}
.btn-primary-infos {
  background-color: #00FF00;
  color: #1A202C;
  border: 2px solid #00FF00;
}
.btn-primary-infos:hover {
  background-color: transparent;
  color: #00FF00;
}

.info-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../img/fond_info.png") no-repeat center center/cover;
  color: #f4f4f4;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.info-hero h1, .info-hero h2 {
  color: #6AFF6A;
  font-size: 3em;
  margin-bottom: 20px;
  line-height: 1.2;
}
.info-hero .intro-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #f4f4f4;
}

.dark-panel-info {
  background-color: #1A202C;
  color: #f4f4f4;
}
.dark-panel-info h2, .dark-panel-info h3 {
  color: #6AFF6A;
  text-align: center;
}
.dark-panel-info .icon-highlight {
  color: #00FF00;
}

.light-panel {
  background-color: #f8f9fa;
  color: #343a40;
}
.light-panel h2, .light-panel h3 {
  color: #343a40;
}
.light-panel .icon-highlight {
  color: #00BCD4;
}

.service-cards-container, .price-cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.service-card, .price-card-info {
  background-color: #343a40;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  transition: transform 0.3s ease;
  border: 1px solid #1A202C;
  color: #f4f4f4;
}
.service-card:hover, .price-card-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.service-card h3, .price-card-info h3 {
  color: #6AFF6A;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.4em;
}
.service-card .icon-large, .price-card-info .icon-large {
  font-size: 3em;
  color: #00FF00;
}

.price-card-info {
  background-color: #2c3447;
}
.price-card-info .price-display {
  margin: 20px 0;
}
.price-card-info .price-display .price {
  font-size: 2.5em;
  font-weight: bold;
  color: #00FF00;
}
.price-card-info .price-display .frequency {
  font-size: 1em;
  color: #f4f4f4;
}
.price-card-info .info-accent-icon {
  color: #00FF00;
}
.price-card-info .info-list li i {
  color: #00FF00;
}

.pricing-note {
  margin-top: 30px;
  font-style: italic;
  color: #f4f4f4;
  font-size: 0.9em;
}

.contact-cta.info-cta {
  background-color: #00FF00;
  color: #1A202C;
  text-align: center;
  padding: 60px 20px;
}
.contact-cta.info-cta h2 {
  color: #1A202C;
}
.contact-cta.info-cta .btn-primary-infos {
  background-color: #1A202C;
  color: #00FF00;
  border: 2px solid #1A202C;
}
.contact-cta.info-cta .btn-primary-infos:hover {
  background-color: #1A202C;
  color: #00FF00;
  box-shadow: 0 0 10px #00FF00;
}

.pricing-section {
  text-align: center;
}
.pricing-section h2 {
  text-align: center;
}

.service-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-section .content-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero {
  background-color: #343a40;
  color: #f4f4f4;
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url("https://via.placeholder.com/1600x600.png?text=Contact+Background");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 58, 64, 0.7);
  z-index: 1;
}
.contact-hero .container {
  position: relative;
  z-index: 2;
}
.contact-hero h1 {
  font-size: 3em;
  color: #f4f4f4;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.contact-hero .intro-text {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.6;
  color: #f4f4f4;
}

.contact-info-section {
  padding: 60px 0;
  background-color: #E0F7FA;
  color: #263238;
}
.contact-info-section h2, .contact-info-section h3 {
  color: #343a40;
  text-align: center;
  margin-bottom: 20px;
}
.contact-info-section p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px;
}

.contact-center-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  background-color: #f8f9fa;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(52, 58, 64, 0.15);
}

.contact-details {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.contact-details li {
  margin-bottom: 25px;
  font-size: 1.2em;
  text-align: center;
}
.contact-details li i {
  margin-right: 15px;
  color: #00BCD4;
  font-size: 1.4em;
}
.contact-details li a {
  color: #343a40;
  text-decoration: none;
  font-weight: 600;
}
.contact-details li a:hover {
  text-decoration: underline;
  color: #00BCD4;
}

.social-links-contact {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.social-links-contact a {
  font-size: 3em;
  color: #343a40;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-links-contact a:hover {
  color: #00BCD4;
  transform: scale(1.1);
}/*# sourceMappingURL=style.css.map */