:root {
  /* Color Variables */
  --primary-color: #0056b3;
  --primary-dark: #003f80;
  --primary-light: #eef2ff;
  --accent-color: #e7d722;
  --accent-dark: #c7b91e;
  --text-color: #333;
  --text-light: #555;
  --text-dark: #1a1a1a;
  --white: #ffffff;
  --gray-light: #f4f7fc;
  --gray: #e0e0e0;
  --shadow: rgba(0, 0, 0, 0.1);

  /* Typography */
  --font-family: "Poppins", sans-serif;
  --heading-weight: 700;
  --body-weight: 400;

  /* Spacing */
  --section-spacing: 80px;
  --element-spacing: 20px;

  /* Border Radius */
  --radius-small: 8px;
  --radius-medium: 15px;
  --radius-large: 20px;
  --radius-circle: 50%;

  /* Transitions */
  --transition-fast: 0.3s ease-in-out;
  --transition-medium: 0.5s ease-in-out;
}

/*--------------------------------------------------------------
# Global Styles
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: var(--gray-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--heading-weight);
  color: var(--text-dark);
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-color);
}

.container {
  max-width: 1200px;
  padding: 0 15px;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  color: var(--text-dark);
}

.section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto;
  border-radius: var(--radius-small);
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
.header {
  padding-top: 80px; /* To account for fixed navbar */
}

.navbar {
  padding: 15px 0;
  box-shadow: 0 2px 15px var(--shadow);
  transition: all var(--transition-fast);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
}

.brand-text {
  color: var(--text-dark);
}

.brand-highlight {
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 8px 15px;
  color: var(--text-color);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-fast);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
  overflow: hidden;
  position: relative;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 500px;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius-small);
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color var(--transition-fast),
    transform var(--transition-fast);
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.cta-button:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 86, 179, 0.4);
}

.hero-image-container {
  position: relative;
  width: 400px;
  height: 400px;
  max-width: 100%;
}

.hero-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-light);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphShape 15s infinite;
  z-index: 1;
}

.hero-image-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  background-color: var(--white);
  border-radius: var(--radius-circle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@keyframes morphShape {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
  50% {
    border-radius: 30% 70% 70% 30% / 70% 70% 30% 30%;
  }
  75% {
    border-radius: 70% 30% 30% 70% / 30% 30% 70% 70%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

/*--------------------------------------------------------------
# Featured Partners Section
--------------------------------------------------------------*/
.featured-partners {
  padding: var(--section-spacing) 0;
  background-color: var(--white);
}

.partner-grid {
  margin-top: 30px;
}

.partner-card {
  background-color: var(--white);
  border-radius: var(--radius-medium);
  padding: 30px;
  box-shadow: 0 5px 20px var(--shadow);
  height: 100%;
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
  text-align: center;
}

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

.partner-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: var(--radius-circle);
  font-size: 2rem;
  overflow: hidden;
}

.partner-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-circle);
}

.fallback-logo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.partner-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.partner-card p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.partner-services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.partner-services span {
  display: inline-block;
  padding: 5px 10px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: var(--radius-small);
  font-size: 0.9rem;
}

.partner-services i {
  margin-right: 5px;
}

.partner-link {
  margin-top: auto;
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.partner-link:hover {
  color: var(--accent-color);
}

.partner-link i {
  margin-left: 5px;
  transition: transform var(--transition-fast);
}

.partner-link:hover i {
  transform: translateX(5px);
}

.website-link {
  display: block;
  margin-top: 10px;
  padding: 8px 0;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
  border-top: 1px solid var(--gray);
  transition: color var(--transition-fast);
}

.website-link:hover {
  color: var(--accent-color);
}

.website-link i {
  margin-left: 5px;
  font-size: 0.8rem;
}

.btn-view-all {
  display: inline-block;
  padding: 10px 25px;
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: var(--radius-small);
  font-weight: 600;
  transition: background-color var(--transition-fast),
    color var(--transition-fast);
}

.btn-view-all:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-view-all i {
  transition: transform var(--transition-fast);
}

.btn-view-all:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-section {
  padding: var(--section-spacing) 0;
  background-color: var(--gray-light);
  position: relative;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-medium);
  padding: 30px;
  box-shadow: 0 5px 20px var(--shadow);
  height: 100%;
  transition: transform var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  position: relative;
  margin-bottom: 20px;
}

.quote-icon {
  font-size: 2rem;
  color: var(--primary-light);
  position: absolute;
  top: -10px;
  left: -10px;
  opacity: 0.7;
}

.testimonial-content p {
  position: relative;
  z-index: 1;
  color: var(--text-color);
  font-style: italic;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.testimonial-info h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.testimonial-info p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

/*--------------------------------------------------------------
# Benefits Section
--------------------------------------------------------------*/
.benefits-section {
  padding: var(--section-spacing) 0;
  background-color: var(--white);
}

.benefit-card {
  text-align: center;
  padding: 30px;
  border-radius: var(--radius-medium);
  transition: transform var(--transition-fast),
    box-shadow var(--transition-fast);
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px var(--shadow);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: var(--radius-circle);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: background-color var(--transition-fast),
    color var(--transition-fast);
}

.benefit-card:hover .benefit-icon {
  background-color: var(--primary-color);
  color: var(--white);
}

.benefit-card h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.benefit-card p {
  color: var(--text-light);
}

/*--------------------------------------------------------------
# Call to Action Section
--------------------------------------------------------------*/
.cta-section {
  padding: var(--section-spacing) 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-circle);
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-circle);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .cta-button {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-section .cta-button:hover {
  background-color: var(--accent-color);
  color: var(--text-dark);
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
.site-footer {
  background-color: #1a1a1a;
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}

.footer-title {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.footer-subtitle {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-circle);
  text-align: center;
  line-height: 40px;
  transition: background-color var(--transition-fast),
    color var(--transition-fast);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 4px;
}

.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Back to Top Button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 99;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
}

.back-to-top:hover {
  background-color: var(--accent-color);
  color: var(--text-dark);
  transform: translateY(-3px);
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/
@media (max-width: 1199.98px) {
  :root {
    --section-spacing: 70px;
  }

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

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 991.98px) {
  :root {
    --section-spacing: 60px;
  }

  .hero-section {
    padding: 100px 0 60px;
  }

  .hero-image-container {
    width: 300px;
    height: 300px;
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --section-spacing: 50px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .partner-logo,
  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image-container {
    width: 250px;
    height: 250px;
  }

  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-avatar {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .footer-subtitle::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/*--------------------------------------------------------------
# Partner Detail Styles (for partenaires.html)
--------------------------------------------------------------*/
.partner-detail {
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-medium);
  box-shadow: 0 10px 30px var(--shadow);
  margin-bottom: 30px;
}

.founders {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.founders {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Pour la section Software Solution uniquement */
#software-solution .founder-avatar {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: fit-content;
}

#software-solution .founder-avatar img {
  display: block;
  max-width: 180px;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 0.5rem;
}

#software-solution .founder h3,
#software-solution .founder p {
  text-align: center;
}

/* Pour la section MindUp uniquement */
#mindup .founder-avatar {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: fit-content;
}

#mindup .founder-avatar img {
  display: block;
  max-width: 180px;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 0.5rem;
}

#mindup .founder h3,
#mindup .founder p {
  text-align: center;
}

/* Pour la section BEBA Empire uniquement */
#beba-empire .founder-avatar {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: fit-content;
}

#beba-empire .founder-avatar img {
  display: block;
  max-width: 180px;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 0.5rem;
}

#beba-empire .founder h3,
#beba-empire .founder p {
  text-align: center;
}

/* Pour la section Moko residence uniquement */
#moko-residence .founder-avatar {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: fit-content;
}

#moko-residence .founder-avatar img {
  display: block;
  max-width: 180px;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 0.5rem;
}

#moko-residence .founder h3,
#moko-residence .founder p {
  text-align: center;
}

.founder {
  text-align: center;
}

.founder-avatar {
  width: 150px;
  height: 150px;
  border-radius: 20px;
  margin-bottom: 10px;
  box-shadow: 0 5px 15px var(--shadow);
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.founder h3 {
  font-size: 1.5em;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.founder p {
  color: var(--text-light);
}

.founder-quote {
  font-size: 1.1em;
  color: var(--text-light);
  font-style: italic;
  margin: 20px 10px;
  padding: 15px;
  background: var(--primary-light);
  border-radius: var(--radius-small);
}

.partner-company {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 30px;
  margin-bottom: 40px;
}

.partner-company-logo {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-medium);
  box-shadow: 0 5px 15px var(--shadow);
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
}

.partner-company-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15px;
}

.partner-company-info {
  flex: 1;
}

.partner-company h2 {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.partner-company p {
  font-size: 1.1em;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 15px;
}

.services-list {
  padding-left: 20px;
}

.services-list li {
  font-size: 1.1em;
  color: var(--text-light);
  margin-bottom: 8px;
}

.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.outline-button {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.outline-button:hover {
  background-color: var(--primary-light);
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .partner-company {
    flex-direction: column;
    text-align: center;
  }

  .partner-company-logo {
    margin-bottom: 20px;
  }

  .founders {
    flex-direction: column;
  }

  .founder {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Contact Form Styles
--------------------------------------------------------------*/
.contact-form-container {
  background: var(--white);
  border-radius: var(--radius-medium);
  box-shadow: 0 10px 30px var(--shadow);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  border: 1px solid var(--gray);
  border-radius: var(--radius-small);
  padding: 12px 15px;
  font-family: var(--font-family);
  transition: border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

.form-label {
  font-weight: 500;
  margin-bottom: 8px;
}

.submit-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 25px;
  border-radius: var(--radius-small);
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.submit-btn:hover {
  background-color: var(--primary-dark);
}

.contact-info-card {
  background: var(--primary-light);
  border-radius: var(--radius-medium);
  padding: 30px;
  height: 100%;
}

.contact-info-card h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-info-item i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.2rem;
  margin-top: 4px;
}

.contact-info-text {
  color: var(--text-color);
}

/*--------------------------------------------------------------
# About Page Styles
--------------------------------------------------------------*/
.about-hero {
  padding: 120px 0 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: var(--white);
  text-align: center;
}

.about-hero h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.about-section {
  padding: var(--section-spacing) 0;
}

.about-image {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-medium);
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 4rem;
  margin-bottom: 30px;
}

.mission-vision {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.mission-card,
.vision-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-medium);
  padding: 30px;
  box-shadow: 0 5px 20px var(--shadow);
}

.mission-card h3,
.vision-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.mission-card h3 i,
.vision-card h3 i {
  margin-right: 10px;
}

.team-section {
  padding: var(--section-spacing) 0;
  background-color: var(--gray-light);
}

.team-member {
  text-align: center;
  margin-bottom: 30px;
}

.team-avatar {
  width: 150px;
  height: 150px;
  border-radius: var(--radius-circle);
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 15px;
}

.team-member h3 {
  color: var(--text-dark);
  margin-bottom: 5px;
}

.team-member p {
  color: var(--text-light);
}

.team-social {
  margin-top: 10px;
}

.team-social a {
  display: inline-block;
  color: var(--primary-color);
  margin: 0 5px;
  font-size: 1.2rem;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.team-social a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

@media (max-width: 767.98px) {
  .mission-vision {
    flex-direction: column;
  }

  .mission-card,
  .vision-card {
    margin-bottom: 30px;
  }

  .about-hero h1 {
    font-size: 2.5rem;
  }
}
/* Bouton retour à l'accueil style apropos */
.home-icon {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #0056b3;
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.8em;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: pulse 1.5s infinite;
  transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
}
.home-icon:hover {
  background: #d9e722;
  transform: translateX(-50%) scale(1.1);
  animation: bounce 0.5s;
}

/* Supprime l'ancien style du bouton dynamique */
#back-to-home,
#back-to-home:hover,
#back-to-home i,
#back-to-home span,
@keyframes slideInUp {
  display: none !important;
}
