@import url('https://fonts.googleapis.com/css2?family=Kode+Mono:wght@400..700&family=Madimi+One&family=Metrophobic&family=Mina:wght@400;700&family=Nanum+Myeongjo:wght@400;700;800&display=swap');

.feedback-container {
      padding: 4rem 2rem;
      width: 100%;
      max-width: 1200px;
      margin: auto auto;


    }

    .feedback-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .feedback-title-section {
      position: relative;
    }

    .feedback-title {
      font-size: 4rem;
      font-weight: 300;
      line-height: 1.2;
      letter-spacing: 0.1em;
      color: #00bcd4;
      font-family: 'Courier New', monospace;
      text-transform: uppercase;
      animation: glow 2s ease-in-out infinite alternate;

       font-family: "Kode Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
    }

    @keyframes glow {
      from {
        text-shadow: 0 0 20px #00bcd4;
      }

      to {
        text-shadow: 0 0 30px #00bcd4, 0 0 40px #00bcd4;
      }
    }

    .feedback-testimonial-container {
      position: relative;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      padding: 3rem;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(0, 188, 212, 0.2);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .feedback-card {
      display: none;
      animation: fadeIn 0.8s ease-in-out;
    }

    .feedback-card.active {
      display: block;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .feedback-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .feedback-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #00bcd4, #0097a7);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: bold;
      color: white;
      border: 2px solid rgba(0, 188, 212, 0.5);
    }

    .feedback-client-info h3 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: #00bcd4;
    }

    .feedback-client-info p {
      color: #b0b0b0;
      font-size: 0.9rem;
    }

    .feedback-designation {
      font-size: 1.8rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      color: #ffffff;
    }

    .feedback-text {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #e0e0e0;
      font-style: italic;
    }

    .feedback-navigation {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-top: 2rem;
    }

    .feedback-nav-btn {
      background: rgba(0, 188, 212, 0.2);
      border: 2px solid #00bcd4;
      color: #00bcd4;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 1.5rem;
    }

    .feedback-nav-btn:hover {
      background: #00bcd4;
      color: white;
      transform: scale(1.1);
      box-shadow: 0 0 20px rgba(0, 188, 212, 0.5);
    }

    .feedback-nav-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .feedback-nav-btn:disabled:hover {
      transform: none;
      background: rgba(0, 188, 212, 0.2);
      color: #00bcd4;
      box-shadow: none;
    }

    .feedback-dots {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }

    .feedback-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(0, 188, 212, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .feedback-dot.active {
      background: #00bcd4;
      transform: scale(1.2);
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .feedback-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
      }

      .feedback-title {
        font-size: 2.5rem;
      }

      .feedback-testimonial-container {
        padding: 2rem;
      }

      .feedback-container {
        padding: 2rem 1rem;
      }

      .feedback-header {
        flex-direction: column;
        text-align: center;
      }

      .feedback-designation {
        font-size: 1.4rem;
      }

      .feedback-text {
        font-size: 1rem;
      }

      .feedback-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
      }

      .feedback-navigation {
        gap: 1rem;
      }
    }

    @media (max-width: 480px) {

      .feedback-container {
        margin: 20px;
      }
      .feedback-title {
        font-size: 2rem;
      }

      .feedback-testimonial-container {
        padding: 1.5rem;
      }

      .feedback-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
      }

      .feedback-client-info h3 {
        font-size: 1.2rem;
      }

      .feedback-designation {
        font-size: 1.2rem;
      }

      .feedback-text {
        font-size: 0.9rem;
      }
    }