

    .testimonial-section {
      width:100%;
      padding:10px 20px;
      overflow: hidden;
    }

    .testimonial-container {
      max-width:900px;
      margin: auto;
      text-align: center;
    }

    .testimonial-title {
      font-size: 36px;
      margin-bottom: 40px;
      font-weight: 700;
    }

    /* Carousel */
    .testimonial-carousel {
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    .testimonial-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .testimonial-slide {
      min-width:100%;
      padding: 10px;
    }

    .testimonial-card {
      background: #ffffff;
      border-radius: 18px;
      padding: 45px 35px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      max-width:950px;
	  min-height:350px;
      margin: auto;
    }

    /* Stars */
    .stars {
      color: #f5b301;
      font-size:25px;
      letter-spacing: 3px;
      margin-bottom: 22px;
    }

    /* Feedback */
    .testimonial-feedback {
      font-size: 16px;
      line-height: 1.7;
      color: #555;
      margin-bottom: 25px;
    }

    /* Customer Name */
    .customer-name {
      font-size:20px;
      font-weight: 700;
      color: #f5b301;
    }

    /* Radio Navigation */
    .testimonial-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap:10px;
      margin-top:15px;
    }

    .testimonial-dot {
      width:14px;
      height:14px;
      border-radius: 50%;
      border:2px solid #fff;
      background: transparent;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .testimonial-dot.active {
      background: #f5b301;
      transform: scale(1.2);
    }

    .testimonial-dot:hover {
      background: #f5b301;
    }

    /* Tablet */
    @media (max-width: 768px) {

      .testimonial-section {
        padding: 50px 15px;
      }

      .testimonial-title {
        font-size: 30px;
      }

      .testimonial-card {
        padding: 35px 25px;
      }

      .testimonial-feedback {
        font-size: 17px;
      }
	  
	  /* Javed Mobile spacing mamla */
	  
	  .testimonial-card {
	  min-height:150px;
    }
	
    }

    /* Mobile */
    @media (max-width: 480px) {

      .testimonial-section {
        padding: 40px 12px;
      }

      .testimonial-title {
        font-size: 26px;
        margin-bottom: 25px;
      }

      .testimonial-card {
        padding: 30px 20px;
        border-radius: 14px;
      }

      .stars {
        font-size: 21px;
      }

      .testimonial-feedback {
        font-size: 16px;
        line-height: 1.6;
      }

      .customer-name {
        font-size: 18px;
      }
	  
	  /* Javed Mobile spacing mamla */
	  
	  .testimonial-card {
	  min-height:150px;
    }
	
    }
  