/*---------------------Fonts-----------------*/
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
/*---------------------Fonts-----------------*/
/*---------------------Roots-----------------*/

:root {
    ---yellow: #c29b22;
    ---white: #ffffff;
    ---Background: #000000;
    ---black: #222222;
    ---border: #e5e5e5;
}





    section.testimonial {
      width: 100%;
      padding: 60px 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .slider-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      position: relative;
      margin-top: 50px;
    }

    .testimonial-slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .testimonial-card {
      flex: 0 0 100%;
      max-width: 100%;
      padding: 30px;
      background-color: #111;
      color: white;
      border: 1px solid var(---yellow);
      border-radius: 16px;
      box-shadow: 0 0 15px #FFD70055;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }

    .testimonial-inner {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .profile-img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid white;
    }

    .testimonial-content {
      flex: 1;
    }

    .facebook {
      color: #1877f2;
      font-size: 24px;
      margin-bottom: 10px;
    }

    .review-text {
      font-size: 14px;
      color: #ccc;
      margin-bottom: 15px;
      line-height: 1.6;
    }

    .stars {
      color: gold;
      margin-bottom: 10px;
    }

    .reviewer {
      font-weight: bold;
      letter-spacing: 1px;
    }

    .location {
      color: #aaa;
      font-weight: normal;
      margin-left: 5px;
    }

    .nav-btns {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
    }

    .nav-btn {
      background: var(---yellow);
      border: none;
      padding: 10px 15px;
      font-size: 18px;
      cursor: pointer;
      color: black;
      border-radius: 50%;
    }

    @media (min-width: 768px) {
      .testimonial-card {
        flex-direction: row;
        gap: 20px;
      }

      .testimonial-slider {
        flex-wrap: nowrap;
      }

      .testimonial-card {
        flex: 0 0 48%;
        max-width: 48%;
        margin: 1%;
      }
    }

    @media (max-width:450px) {
          .slider-container {
      margin-top: 30px;
    }
    }