.about {
    background-color: #0D0B17;
    color: #ffffff;
    padding: 3rem 1rem;
  }

  .about__container {
    display: flex;
    flex-wrap: wrap;
  }

  .about__column {
    width: 100%;
    padding: 1rem;
  }

  .about__text {
    font-size: 22px;
    font-family: "Cerapro_Medium";
    line-height: 32px;
    margin: 0;
  }
  .about__services h4{
    font-family: "Recoleta_Bold";
    font-size: 45px;
  }
  .services__subtitle{
    font-family: "Cerapro_Medium";
    font-size: 20px;
  }
  .about__services .services__subtitle{
    font-family: "Recoleta_Bold";
    font-size: 20px;
    margin-bottom: 0;
  }

  /* For medium screens and up: 50% layout */
  @media (max-width: 1200px) {
    .about__services .services__subtitle {
      font-size: 18px !important;
      margin-bottom: 0;
  }
  }
  @media (min-width: 768px) {
    .about__column {
      width: 50%;
    }
  }


  .media-section {
    padding: 3rem 1rem;
  }

  .media-section__wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .media-section__image--main {
    width: 100%;
    border-radius: 20px;
    max-width: 100%;
    height: auto;
  }

  .media-section__image--video-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 20px;
    padding: 6px;
    max-width: 100%;
  }

  .media-section__image--video {
    border-radius: 18px;
    display: block;
    width: 100%;
    height: auto;
  }

  .media-section__play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px; 
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .media-section__play-button i {
    color: white;
    font-size: 1.5rem;
  }

  /* Responsive spacing */
  .media-section__col {
    padding: 1rem;
  }
/* 
  @media (min-width: 768px) {
    .media-section__col {
      flex: 0 0 50%;
      max-width: 50%;
    }
} */


body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #0c0a14;
    color: #fff;
    /* padding: 40px 0; */
  }

  .team-section {
    /* max-width: 1200px; */
    margin: auto;
    overflow: hidden;
    text-align: center;
    margin: 100px 0 0 0;
  }

  .team__title {
    font-size: 32px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-align: left;
    position: relative;
  }
  .team__title::before{
    content: "";
    position: absolute;
    border-bottom: 3px solid white;
    background-color: #fff;
    width: 100px;
    height: 2px;
    bottom: 0;
  }

  .team__slider-container {
    overflow: hidden;
    position: relative;
  }

  .team__slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .team__card {
    flex: 0 0 25%;
    padding: 20px;
    text-align: center;
  }

   .team__card img {
    width: 180px;
    height: 180px;
  } 

  .team__name {
    font-size: 24px;
    font-family: "Recoleta_Bold";
  }

  .team__role {
    font-family: "Cerapro_bold", sans-serif;
    font-size: 18px;
    color: white;
  }

  .dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
  }

  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
  }

  .dot.active {
    background: linear-gradient(135deg, #00c6ff, #ff00ff);
  }

  @media (max-width: 1024px) {
    .team__card {
      flex: 0 0 50%;
    }
  }

  @media (max-width: 600px) {
    .team__card {
      flex: 0 0 100%;
    }
  }