    /*=============== GOOGLE FONTS ===============*/
/*@import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Asimovian&family=Baloo+2:wght@400..800&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(14, 98%, 50%);
  --black-color: hsl(0, 0%, 0%);
  --black-color-light: hsl(0, 0%, 40%);
  --white-color: hsl(0, 0%, 95%);
  --title-color: hsl(0, 0%, 0%);
  --text-color: hsl(0, 0%, 35%);
  --text-color-light: hsl(0, 0%, 64%);
  --body-color: hsl(0, 0%, 87%);
  --container-color: hsl(0, 0%, 83%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Urbanist', sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.75rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 4.5rem;
    --h1-font-size: 3rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  transition: background-color .4s; /* Pour le Dark theme */
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-bold);
}


a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== THEME ===============*/
.nav__buttons {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.change-theme {
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
  transition: color .3s;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 4rem 2rem;
}

.section__title-1,
.section__title-2 {
  position: relative;
  font-size: var(--h1-font-size);
  width: max-content;
  margin: 0.75rem auto 2rem;
   font-family: "Baloo 2", sans-serif;
}

.section__title-1 span,
.section__title-2 span {
  z-index: 5;
  position: relative;
}


.section__title-2::after {
  top: initial;
  bottom: -4px;
}

.geometric-box {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--first-color);
  rotate: -30deg;
}

.geometric-box::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 3px solid var(--black-color);
  left: -5px;
  top: -5px;
}

.main {
  overflow: hidden; /* For animation ScrollReveal */
}

/*=============== BUTTON ===============*/
.button,
.button__ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
}

.button {
  background-color: var(--black-color);
  padding: 1.1rem 1.5rem;
  color: var(--white-color);
  font-weight: var(--font-medium);
  border-radius: 0.75rem;
  transition: background-color 0.4s;
}

.button i {
  font-size: 1.25rem;
}

.button:hover {
  background-color: var(--first-color);
}

.button__ghost {
  border: 3px solid var(--black-color);
  color: var(--black-color);
  padding: 0.5rem;
  border-radius: 0.7rem;
  transition: border 0.4s, color 0.4s;
}

.button__ghost i {
  font-size: 1.25rem;
}

.button__ghost:hover {
  border: 3px solid var(--first-color);
}

/*=============== ABOUT ===============*/
.about {

  transition: background-color 0.4s;
}

.about__container {
  row-gap: 0;
}

.about__perfil {
  position: relative;
  justify-self: center;
  margin-block: 2.5rem 4.5rem;
}

.about__image {
  width: 220px;
}

.about__img {
  position: relative;
  border: 4px solid var(--white-color);
  z-index: 1;
  border-radius: 0.75rem;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 24px;
}

.about__shadow,
.about__line,
.about__box {
  position: absolute;
  border-radius: 0.75rem;
}

.about__shadow {
  width: 150px;
  height: 385px;
  background-color: var(--body-color);
  top: -2.5rem;
  right: -3.5rem;
  border-bottom: 4px solid var(--first-color);
  transition: background-color 0.4s;
  
}

.about__perfil .geometric-box {
  top: 1.5rem;
  right: -2.8rem;
}

.about__line {
  filter: invert(1);
  right: -1.25rem;
  top: 6rem;
  width: 50px;
  transition: filter 0.4s;
}

.about__box {
  width: 40px;
  height: 40px;
  background-color: var(--first-color);
  right: -0.5rem;
  bottom: 1.5rem;
}

.about__info {
  padding-left: 1.25rem;
}

.about__description {
  position: relative;
  color: var(--title-color);
  margin-bottom: 1.5rem;
   padding: 0px 4em;
    text-align: center;
           font-family: "Baloo 2", sans-serif;
}
.about__item{
    padding: 0px 4em;
    text-align: center;
     font-family: "Baloo 2", sans-serif;
    line-height: 26px;
}

.about__description::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: var(--title-color);
  position: absolute;
  left: -1.75rem;
  top: 0.5rem;
}

.about__list {
  list-style: square;
  color: var(--title-color);

}

.about__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
}

.itempara{
     
    text-align: left;
    padding: 0px;
    margin-bottom: 2%;
     color:#392424;
}
.marginBox {
    margin-bottom: 2rem;
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }
  .about__image {
    width: 180px;
  }
  .about__shadow {
    height: 330px;
    right: -2.5rem;
  }
}

@media screen and (min-width: 1600px) {

.card-container {
    position: relative;
    max-width: 389px !important;
    width: 89%;
    margin: 4%;
    padding: 30px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: -40px -40px hsla(14, 98%, 50%, 0.2);
}
}
@media screen and (min-width: 576px) {
  .about__container{
    grid-template-columns: 350px;
    justify-content: center;
  }
 
}


@media only screen and (max-width: 600px) {

    .team-name {
    color: #fff;
    font-size: 10px !important;
    font-weight: 500;
    position: relative;
    z-index: 1;
    letter-spacing: 0;
    font-family: "Baloo 2", sans-serif;
    margin-left: 2rem;
}

.main-btn {
    color: #ec7561;
    cursor: pointer;
    font-size: 16px !important;
}

    .about__item {
    padding: 0px 2em;
    text-align: center;
     font-family: "Baloo 2", sans-serif;
    line-height: 26px;
    text-align: justify;
} 
p {
        line-height: 1.5em;
        font-size: 1em !important;
        font-weight: 500;
        margin-top: 1rem;
    }
.cardwhy {
    display: block !important;
    padding: 0px 4em;
    margin: 2rem 0rem;
}
.card-container {
    position: relative;
    max-width: 361px !important;
    width: 100% !important;
    margin: 25% 4% !important;
    padding: 29px !important;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: -40px -40px hsla(14, 98%, 50%, 0.2);
}
.team-row {
    display: block !important;
}
.section__title-1, .section__title-2 {
    position: relative;
    font-size: var(--h1-font-size);
    width: max-content;
    margin: 3rem auto 0rem;
    font-family: "Baloo 2", sans-serif;
}

.marginBox {
    margin-bottom: 6rem;
}
}

/* For large devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }
   .about__container {
    /* grid-template-columns: 460px 525px; */
    gap: 1rem 4rem;
    align-items: center;
    padding-block: 1rem;
  }
  .about__perfil {
    order: -1;
    grid-row: 1 / 3;
  }
  .about__image {
    width: 350px;
  }
  .about__img {
    border: 6px solid var(--white-color);
  }
  .about__shadow {
    width: 330px;
    height: 370px;
    top: -4rem;
    right: -5.5rem;
    border-bottom: 6px solid var(--first-color);
  }
  .about__perfil .geometric-box {
    right: -4rem;
    top: 4.5rem;
  }
  .about__line {
    width: 80px;
    right: -2rem;
    top: 10rem;
  }
  .about__box {
    width: 64px;
    height: 64px;
    right: -.75rem;
  }
  .about__container .section__title-1 {
    align-self: flex-end;
    margin-inline: 0;
  }
  .about__info {
    align-self: flex-start;
    padding-left: 3rem;
  }
  .about__description {
    font-size: var(--h2-font-size);
    margin-bottom: 2rem;
  }
  .about__description::after {
    width: 32px;
    height: 2px;
    left: -3rem;
    top: 14px;
  }

  .about__buttons {
    justify-content: initial;
  }
  .button__ghost {
    padding: 0.75rem;
  }
  .button__ghost i {
    font-size: 1.5rem;
  }
}
.cardwhy{
    display:flex;
        padding: 0px 4em;
}
.card-container {
  position: relative;
    max-width: 285px;
    width: 89%;
    margin: 4%;
  padding: 30px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: -40px -40px hsla(14, 98%, 50%, 0.2);
}
   
.card-container h1 {
    font-size: 23px;
    text-align: center;
    margin-bottom: 8%;
       font-family: "Baloo 2", sans-serif;
    line-height: 28px;
}
.card-container p {
 
    text-align: center;
        font-family: "Baloo 2", sans-serif;
    line-height: 28px;

}

.progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.progress-circle {
  font-family: "Baloo 2", sans-serif;
  font-weight: 900;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  color: #1b1a34;
  border: 6px solid #d5d4f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #3d3d5c;
}

.progress-text {
  margin-left: 15px;
}



.progress-text p {
  font-size: 14px;
  color: #1b1a34;
}

@media (max-width: 390px) {
  .progress {
    flex-wrap: wrap;
    gap: 30px;
  }
}

/* Reset */
a, a:hover, a:focus, a:active { text-decoration: none; outline: none; }
a { transition: all 0.3s ease; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; }

/* Section */
.team-section {
  position: relative;
padding: 2em;

}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-title {
  text-align: center;
  margin-bottom: 60px;
}

.team-subtitle {
  display: block;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 5px;
  background: linear-gradient(to left, #f70068, #441066, #f70068, #441066);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.team-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1e1f36;
}

/* Grid Layout */
.team-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Team Card */
.team-card .team-inner {
  background: #fff;
  padding-bottom: 12px;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
  box-shadow: 0 20px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom:3em;
}

.team-card .team-inner:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

/* Image */
.team-image-box {
  position: relative;
  padding: 40px 0;
}

.team-image-box::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: -4px;
  bottom: 0;
  background: url(https://i.ibb.co/LSL9C6r/shape-5.png) no-repeat right top/cover;
  transform: scale(-1);
}

.team-image {
  position: relative;
  display: inline-block;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ec7561;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  z-index: 1;
  transition: all 0.4s ease;
}

.team-inner:hover .team-image {
  border-radius: 0;
}

.team-image img {
  width: 100%;
  transition: transform 0.3s ease;
}

.team-inner:hover .team-image img {
  transform: scale(1.1);
}

/* Info */
.team-info {
     background: #ec7561;
    display: inline-block;
    padding: 10px 25px;
    margin-top: 10px;
    position: relative;
    left: -95px;
    width: 75%;
     margin-bottom: 15px;
}

.team-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: -30px; /* stick to edge */
  height: 100%;
  background: #ec7561;
  transform: skew(-30deg);
  border-radius: 0 14px 14px 0;
}

.team-name {

    color: #fff;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    letter-spacing: 0;
  font-family: "Baloo 2", sans-serif;
    margin-left: 2rem;
       
}

.team-role {
  color: #fff;
  font-size: 14px;
  display: block;
  position: relative;
  z-index: 1;
}

/* Social */
.team-social {
  position: absolute;
  top: 90px;
  left: 0;
  transform: translateX(-60px); /* hidden left side */
  transition: all 0.4s ease;
}

.team-inner:hover .team-social {
  transform: translateX(10px); /* slide in on hover */
}

.team-social-links li {
  margin-bottom: 5px;
}

.team-social-links li a i {
  display: block;
  width: 32px;
  height: 32px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #eee;
  background: #fff;
  transition: all 0.3s ease;
}

.team-social-links li a:hover i {
  background: #ec7561;
  color: #fff;
}
