/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Grechen+Fuemen&family=Montserrat+Alternates:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  /* 
         Change favorite color:

         Default (Red): hsl(358, 80%, 49%)
         Purple: hsl(265, 80%, 49%) - Blue: hsl(220, 80%, 49%)
         Pink: hsl(330, 80%, 49%) - Green: hsl(162, 70%, 40%)
         Orange: hsl(14, 80%, 49%)

         For more colors visit: https://htmlcolorcodes.com/
         -> Choose any color 
         -> Copy the color mode (HSL)
  */
  --hue: 212;
  --first-color: hsl(var(--hue), 80%, 49%);
  --first-color-alt: hsl(var(--hue), 76%, 45%);
  --white-color: hsl(0, 0%, 98%);
  --black-color: hsl(0, 0%, 1%);
  --text-color: hsl(var(--hue), 2%, 66%);
  --body-color: hsl(var(--hue), 100%, 1%);
  --container-color: hsl(var(--hue), 2%, 10%);
  --conic-gradient: conic-gradient(from 150deg at 50% 45%,
      hsl(var(--hue), 80%, 20%) 0deg,
      hsl(var(--hue), 80%, 48%) 140deg,
      hsl(var(--hue), 80%, 20%) 360deg);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat Alternates", sans-serif;
  --second-font: "Grechen Fuemen", cursive;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1168px) {
  :root {
    --biggest-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body,
input,
textarea,
button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--white-color);
}

input,
button,
textarea {
  border: none;
  outline: none;
}

h1,
h2,
h3,
h4 {
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1168px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 2rem 3rem;
}

.section__title {
  font-size: var(--h2-font-size);
  text-align: center;
  margin-bottom: 2rem;
}

.main {
  overflow: hidden;
}

/*=============== NAV ===============*/
.nav {
  position: fixed;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  background-color: hsla(0, 0%, 98%, .1);
  width: 88%;
  margin-inline: auto;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 2rem;
  border-radius: 3rem;
  z-index: var(--z-fixed);
}

.nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__link {
  width: 2.5rem;
  height: 2.5rem;
  background-color: transparent;
  color: var(--white-color);
  font-size: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background-color .6s;
}

.active-link {
  background-color: var(--first-color);
}

/*=============== HOME ===============*/
/*===== PERFIL =====*/
.perfil {
  position: relative;
  background: var(--conic-gradient);
  height: 415px;
  border-radius: 2rem;
  padding: 1rem;
  display: grid;
  overflow: hidden;
}

.perfil__img {
  width: 250px;
  position: absolute;
  justify-self: center;
  align-self: flex;
}

.perfil__data {
  align-self: flex-end;
  background-color: hsl(0, 0%, 1%, .1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.5rem 1rem;
  border-radius: 1.5rem;
  border: 2px solid hsl(0, 0%, 100%, .5);
}

.perfil__name {
  font: var(--font-regular) var(--biggest-font-size) var(--second-font);
  margin-bottom: 1rem;
}

.perfil__buttons {
  display: grid;
  column-gap: .5rem;
  grid-template-columns: repeat(2, 1fr);
}


/*===== INFO =====*/
.info,
.about,
.skills {
  background-color: var(--container-color);
  padding: 2rem 1.5rem;
  border-radius: 2rem;
}

.info__circle {
  width: 2rem;
  height: 2rem;
  background-color: var(--first-color);
  border-radius: 50%;
}

.info__name {
  font: var(--font-regular) var(--h1-font-size) var(--second-font);
}

.info__data {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: .5rem;
}

.info__image {
  background: var(--conic-gradient);
  height: 180px;
  border-radius: 2rem;
  display: grid;
  margin-block: 1.5rem;
  overflow: hidden;
}

.info__img {
  width: 140px;
  justify-self: center;
  align-self: flex-end;
}

.info__description {
  font-size: var(--small-font-size);
  margin: 2rem;
}

.info .button {
  width: 100%;
}

/*===== ABOUT =====*/
.about__name {
  font-size: var(--normal-font-size);
  font-weight: var(--font-regular);
  margin: 1rem;
}

.about__social {
  display: flex;
  justify-content: center;
  column-gap: 1.5rem;
  margin-block: 2rem;
}

.about__link {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--white-color);
  color: var(--black-color);
  font-size: 1.7rem;
  border-radius: 1.5rem;
  display: grid;
  place-items: center;
  transition: background-color .4s, color .4s;
}

.about__link:hover {
  background-color: var(--first-color);
  color: var(--white-color);
}

.about__image {
  background: var(--conic-gradient);
  height: 180px;
  border-radius: 2rem;
  display: grid;
  overflow: hidden;
}

.about__img {
  width: 250px;
  justify-self: center;
  transform: translate(-.1rem);
}

.about__note {
  font-size: var(--small-font-size);
  margin: 1rem 2rem;
}

.about .button {
  width: 100%;
}

/*===== SKILLS =====*/
.skills__title {
  font-size: var(--h2-font-size);
}

.skills__item {
  width: 1.5rem;
  transition: transform .4s;
  scale: 1;
}

.skills__item:hover {
  transform: translateY(-.25rem);
}

.skills__itmes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-block: 1.5rem;
}

.skills__item1 {
  width: 2rem;
  transition: transform .4s;
  scale: 1;
}

.skills__item1:hover {
  transform: translateY(-.25rem);
}

.skills__note {
  font-size: var(--small-font-size);
}

/*=============== BUTTON ===============*/
.button {
  display: inline-flex;
  justify-content: center;
  background-color: var(--first-color);
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 2.5rem;
  border-radius: 4rem;
  transition: background-color .6s;
}

.button1 {
  display: flex;
  justify-content: center;
  background-color: var(--first-color);
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 2.5rem;
  border-radius: 4rem;
  transition: background-color .6s;
}

.button1:hover {
  background-color: #fff;
  color: var(--black-color);
}

.button__black {
  background-color: var(--black-color);
}

.button:hover {
  background-color: var(--first-color-alt);
}

/*=============== PROJECTS ===============*/
.projects__card {
  background-color: var(--container-color);
  padding: 1.5rem;
  border-radius: 2rem;
}

.project__image {
  display: block;
  overflow: hidden;
  border-radius: 1.5rem;
  margin-bottom: 1.5rem;
}

.projects__img {
  transition: transform .4s;
}

.project__name {
  font-size: var(--h3-font-size);
  margin-right: 1rem;
}

.project__description {
  color: var(--text-color);
  margin: 1.5rem;
}

.projects__skill {
  width: 1.25rem;
  transition: transform .4s;
  scale: 1;
}

.projects__skill:hover {
  transform: translateY(-.25rem);
}

.project__skills {
  width: max-content;
  height: 34px;
  background-color: var(--black-color);
  padding-inline: .75rem;
  display: flex;
  align-items: center;
  column-gap: .75rem;
  border-radius: 4rem;
  margin-bottom: 1rem;
}

.projects__button {
  color: var(--whit-color);
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  transition: color .4s;
}

.projects__button i {
  font-size: 1.25rem;
}

.projects__button span {
  font-weight: var(--font-medium);
}

.project__button:hover {
  color: var(--text-color);
}

.projects__card:hover .projects__img {
  transform: scale(1.2);
}

.projects__button:hover {
  color: var(--text-color);
}

/*=============== SERVICES ===============*/
.services__card {
  background-color: var(--container-color);
  padding: 4rem 1.5rem 3.5rem 1.5rem;
  border-radius: 2rem;
}

.services__icon {
  display: inline-block;
  position: relative;
  margin-bottom: 2rem;
}

.services__icon i {
  font-size: 2.5rem;
  position: relative;
  z-index: var(--z-tooltip);
}

.services__circle {
  width: 3rem;
  height: 3rem;
  background-color: var(--first-color);
  border-radius: 50%;
  position: relative;
  top: 2rem;
  left: .5rem;
  transition: transform .4s;
}

.services__name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.services__description {
  color: var(--text-color);
}

.services__card:hover .services__circle {
  transform: translate(.5rem, -.5rem);
}

/*=============== EXPERIENCE ===============*/
.experience__container {
  row-gap: 2rem;
}

.experience__card {
  display: grid;
  row-gap: 1rem;
}

.experience__compay {
  font-size: var(--h2-font-size);
}

.experience__data {
  background-color: var(--container-color);
  padding: 1.5rem;
  border-radius: 1.5rem;
}

.experience__profession {
  font-size: var(--h3-font-size);
  margin-bottom: .7rem;
}

.experience__date {
  display: block;
  font-size: var(--smaller-font-size);
  margin-bottom: 1rem;
}

.experience__description {
  color: var(--text-color);
}

/*=============== CONTACT ===============*/
.contact__group,
.contact__form {
  gap: 1rem;
}

.contact__form {
  position: relative;
}

.contact__input {
  background-color: var(--container-color);
  padding: 1.25rem;
  border-radius: 4rem;
  color: var(--white-color);
}

.contact__input::placeholder {
  color: var(--text-color);
}

.contact__input:-webkit-autofill {
  transition: background-color 6000s ease-in-out, color 6000s ease-in-out;
}

.contact__area {
  height: 10rem;
  border-radius: 1.5rem;
  resize: none;
}

.contact__button {
  margin-top: 1.5rem;
  cursor: pointer;
}

.contact__button:hover {
  background-color: #fff;
  color: var(--black-color);
}

.contact__massege {
  position: absolute;
  left: 0;
  bottom: 4.5rem;
  font-size: var(--smaller-font-size);
}

/*=============== FOOTER ===============*/
.footer {
  padding-block: 2rem 8rem;
}

.footer__container {
  row-gap: 2.5rem;
}

.footer__logo {
  color: var(--white-color);
  font: var(--font-regular) var(--biggest-font-size) var(--second-font);
  justify-self: center;
}

.footer__links {
  display: flex;
  justify-content: center;
  column-gap: 2rem;
}

.footer__link {
  color: var(--white-color);
  font-size: var(--h3-font-size);
}

.footer__link:hover {
  color: var(--text-color);
}

.footer__social {
  display: flex;
  justify-content: center;
  column-gap: 1.5rem;
}

.footer__social-link {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--first-color);
  color: var(--white-color);
  font-size: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background-color .4s, color .4s;
}

.footer__social-link:hover {
  background-color: var(--white-color);
  color: var(--black-color);
}

.footer__copy {
  display: block;
  margin-top: 4.5rem;
  text-align: center;
  font-size: var(--small-font-size);
  color: var(--text-color);
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .6rem;
  background-color: hsl(0, 0%, 20%);
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 30%);
  border-radius: .5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(0, 0%, 50%);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: hsl(0, 0%, 98%, .1);
  display: inline-flex;
  padding: 6px;
  color: var(--white-color);
  font-size: 1.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: .5rem;
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .4s;
}

.scrollup:hover {
  transform: translateY(-.5rem);
}

/* Show Scroll Up */
.show-scroll {
  bottom: 8rem;
}

/*==================== STATS ====================*/
.stats__container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.stats__card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 225px;
    height: 225px;
    border-radius: 50%;
    border: 3px solid var(--first-color);
    text-align: center;
    flex-direction: column;
    padding: 1rem;
}

.stats__number {
    font-size: var(--h1-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
    margin-bottom: .5rem;
}

.stats__description {
    font-size: var(--normal-font-size);
    color: var(--text-color);
}

@media screen and (min-width: 400px) {
  .scrollup {
    right: 2rem;
    bottom: 4rem;
  }

  .perfil__data {
    width: 300px;
    padding: 1rem;
    border-radius: 2rem;
  }

  .perfil__buttons {
    display: grid;
    column-gap: .5rem;
    grid-template-columns: repeat(2, 1fr);

    .button,
    .button1 {
      padding: 1.25rem 2rem;
      font-size: var(--normal-font-size);
    }
  }
  .info__image {
    height: 200px;
  }

  .info__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(-3rem);
  }
  .about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(-1rem);
  }

}
/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 500px) {
  .container {
    margin-inline: 1rem;
  }

  .nav {
    padding: 1rem;
  }

  .perfil {
    height: 500px;
    width: 100%;
    padding: 1rem;

  }

  .perfil__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
  }

  .info__image {
    height: 200px;
  }

  .info__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(-4rem);
  }

  .about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(-6rem);
  }
}

/* For medium devices */
@media screen and (min-width: 768px) {
  .container {
    width: 100%;
  }

  .nav__list {
    column-gap: 1.25rem;
  }

  .home__container,
  .project__container,_container,
  .experience
  .services___container,
  .contact__container,
  .footer__container {
    grid-template-columns: 380px;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .home__container {
    grid-template-columns: repeat(2, 350px);
    align-items: flex-start;
  }

  .perfil__img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .perfil {
    height: 100%;
  }

  .info__image {
    height: 200px;
    width: 100%;
    display: grid;
    overflow: hidden;
  }

  .info__img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: translateY(-3rem);
  }

  .about__img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: translateY(-6rem);
  }

  .project__container,
  .services__container {
    grid-template-columns: repeat(2, 350px);
  }

  .experience__container {
    grid-template-columns: initial;
  }

  .experience__card {
    grid-template-columns: 44rem;
    align-items: center;
  }

  .footer__container,
  .footer__contact {
    grid-template-columns: repeat(2, max-content);
    align-items: center;
  }

  .footer__container {
    justify-content: center;
  }

  .footer__contact {
    column-gap: 4.5rem;
  }

  .show-scroll {
    bottom: 8rem;
  }
}


/* For large devices */
@media screen and (min-width: 1200px) {
  .support-me {
    position: fixed;
    bottom: 2.9rem;
    left: 50%;
    transform: (50px);
    transform: translateX(-50%);
    color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    z-index: 1000;
    cursor: pointer;
    background-color: #000000;
  }

  .container {
    margin-inline: auto;
  }

  .section {
    padding: 3rem 4rem;
  }

  .section__title {
    font-size: var(--h1-font-size);
    margin-bottom: 4rem;
  }

  .home__container {
    grid-template-columns: 390px 560px 280px;
    align-items: stretch;
  }

  .perfil {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    padding: 2rem;
  }

  .perfil__img {
    width: 100%;
    height: 100%;
    object-fit: cover;

  }

  .info__image {
    height: 250px;
    width: 100%;
    display: grid;
    overflow: hidden;
  }

  .info__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(-3rem);
  }

  .about__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateY(-3rem);
  }

  .perfil__data {
    width: 400px;
    padding: 1.5rem;
    border-radius: 2rem;
  }

  .info {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }

  .info__name {
    font: var(--h2-font-size);
  }

  .about {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    align-content: center;
  }

  .about__img {
    transform: translate(-0.0.1rem);
  }

  .skills {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .skills__title {
    font-size: var(--h2-font-size);
    text-align: center;
  }

  .project__container {
    grid-template-columns: repeat(3, 368px);
    gap: 2rem;
  }

  .projects__card {
    padding-bottom: 2rem;
  }

  .services__container {
    grid-template-columns: repeat(3, 368px);
    gap: 2rem;
  }

  .services__card {
    padding-block: 6rem 5rem;
  }

  .services__icon {
    font-size: 3.5rem;
  }

  .services__circle {
    width: 4rem;
    height: 4rem;
    right: 1.5rem;
    top: 3rem;
  }

  .experience__container {
    row-gap: 4rem;
  }

  .experience__card {
    grid-template-columns: 350px 510px;
    column-gap: 8rem;
  }

  .experience__compay {
    font-size: var(--h1-font-size);
  }

  .experience__data {
    padding: 2rem;
    border-radius: 2rem;
  }

  .contact__container {
    grid-template-columns: 620px;
  }

  .contact__group {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__area {
    height: 15rem;
  }

  .contact__button {
    width: 40%;
    justify-self: center;
  }

  .footer {
    padding: 3rem;
  }

  .footer__links {
    column-gap: 3rem;
  }

  .footer__copy {
    margin-bottom: 3rem;
  }
}



@media screen and (min-width: 1200px) {
  .nav {
    width: max-content;
    height: max-content;
    padding: 2rem 1rem;
    left: initial;
    right: 2.5rem;
    top: 0;
    bottom: 0;
    margin-block: auto;
  }

  .nav__list {
    flex-direction: column;
    row-gap: 1.25rem;
  }

  .footer {
    padding-block: 3rem;
  }

  .scrollup {
    right: 4rem;
  }
}

#contact__message {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.support-me {
  position: fixed;
  bottom: 4.9rem;
  left: 0;
  color: #ffffff;
  padding: 10px;
  border-radius: 10px;
  margin: 20px;
  z-index: 1000;
  cursor: pointer;
  background-color: #006cc4;
}

.support-me:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 50px;
  transition: .8s;
  transform: rotate(360deg);
}



body {
  width: 100%;
  height: 100%;
  background-color: #111111;
  background-image: linear-gradient(32deg,
      rgba(8, 8, 8, 0.74) 30px,
      transparent);
  background-size: 60px 60px;
  background-position: -5px -5px;
}


/*=============== CERTIFICATE SECTION ===============*/

.certificates {
  padding: 2rem 0;

}

.certificate__card {
  background-color: #070101;
  /* White card background */
  border: 2px solid #212222;
  /* Light blue border */
  color: #ffffff;
  /* Dark blue text */
}

.certificate__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.certificate__name {
  color: #d3d3d3;
}

.certificate__description {
  color: #1e88e5;
}

.certificates__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.certificate__card {
  background-color: #000000;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.certificate__img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.certificate__name {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.certificate__description {
  font-size: 1rem;
  color: #868686;
}

.about__note {
  font-size: var(--h4-font-size);
  margin: 1rem 2rem;
}

.lang-switcher {
   display: flex;
   gap: 15px;
   position: absolute;
   top: 35px;
   right: 30px;
   z-index: 200;
}

.lang-btn {
   text-decoration: none;
   padding: 10px 20px;
   background-color: #333;
   color: white;
   border-radius: 8px;
   border: none;
   cursor: pointer;
   font-size: 1rem;
   transition: background-color 0.3s ease;
}

.lang-btn:hover {
   background-color: #555;
}

#lang-options {
   display: none;
   position: absolute;
   background: #333;
   border-radius: 8px;
   margin-top: 51px;
   z-index: 100;
   min-width: 120px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

#lang-options .lang-btn {
   display: block;
   width: 100%;
   text-align: left;
   background: none;
   border-radius: 0;
   padding: 10px 20px;
   color: white;
}

#lang-options .lang-btn:hover {
   background-color: #444;
}
.testimonials { 
         padding: 2rem 0;
      }

      .testimonials__container {
         grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap: 2rem;
         padding: 2rem 0;
      }

      .testimonial__card {
         background-color: var(--body-color);
         padding: 2rem;
         border-radius: 1rem;
         border: 2px solid var(--border-color);
         position: relative;
         transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .testimonial__card:hover {
         transform: translateY(-5px);
         box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }

      .testimonial__quote {
         position: absolute;
         top: -10px;
         left: 20px;
         background-color: var(--first-color);
         color: var(--white-color);
         width: 40px;
         height: 40px;
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         font-size: 1.5rem;
      }

      .testimonial__description {
         font-size: var(--normal-font-size);
         line-height: 1.6;
         margin: 1.5rem 0 2rem;
         color: var(--text-color);
         font-style: italic;
      }

      .testimonial__data {
         display: flex;
         align-items: center;
         gap: 1rem;
         margin-bottom: 1rem;
      }

      .testimonial__img {
         width: 60px;
         height: 60px;
         border-radius: 50%;
         object-fit: cover;
         border: 3px solid var(--first-color);
      }

      .testimonial__name {
         font-size: var(--h3-font-size);
         font-weight: var(--font-semi-bold);
         color: var(--title-color);
         margin-bottom: 0.25rem;
      }

      .testimonial__client {
         font-size: var(--small-font-size);
         color: var(--text-color-light);
      }

      .testimonial__stars {
         display: flex;
         gap: 0.25rem;
         color: #ffd700;
         font-size: 1.2rem;
      }

      /* Responsive */
      @media screen and (max-width: 768px) {
         .testimonials__container {
            grid-template-columns: 1fr;
            gap: 1.5rem;
         }

         .testimonial__card {
            padding: 1.5rem;
         }

         .testimonial__description {
            font-size: var(--small-font-size);
         }
      }

      @media screen and (max-width: 350px) {
         .testimonial__card {
            padding: 1rem;
         }

         .testimonial__img {
            width: 50px;
            height: 50px;
         }
      }