<section class="testimonials">
    <h2 class="testimonials-title">Testimonials</h2>
    <div class="testimonials-container">

        
        <div class="testimonial-card">
            <div class="stars">★★★★★</div>
            <div class="quote-icon">❞</div>
            <h3 class="testimonial-title">Feels Like It Was Made for Me</h3>
            <p class="testimonial-text">
                The clothes fit me perfectly and felt really comfortable. Rochaldas makes looking good so easy.
            </p>
            <p class="testimonial-author"><em>Arjun S.</em></p>
        </div>

        
        <div class="testimonial-card">
            <div class="stars">★★★★★</div>
            <div class="quote-icon">❞</div>
            <h3 class="testimonial-title">Awesome Quality and Help</h3>
            <p class="testimonial-text">
                The fabric feels amazing and the details are great. The staff helped me pick the right size and style
                with a smile.
            </p>
            <p class="testimonial-author"><em>Sandeep D.</em></p>
        </div>

        
        <div class="testimonial-card">
            <div class="stars">★★★★★</div>
            <div class="quote-icon">❞</div>
            <h3 class="testimonial-title">Ideal for Special Occasions</h3>
            <p class="testimonial-text">
                Wore a kurta for my brother’s wedding and got many compliments. Felt confident all day.
            </p>
            <p class="testimonial-author"><em>Nikhil R.</em></p>
        </div>

    </div>
</section><style>/* ✅ General Section */
    .testimonials {
        text-align: center;
        padding: 50px 20px;
        font-family: 'Arial', sans-serif;
    }

    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 30px;
        font-weight: bold;
    }

    /* ✅ Grid Layout */
    .testimonials-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        max-width: 1470px;
        margin: 0 auto;
    }

    /* ✅ Testimonial Card */
    .testimonial-card {
        background: #fff;
        border-radius: 15px;
        padding: 12px 20px;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
        position: relative;
        transition: transform 0.3s ease-in-out;
    }

    .testimonial-card:hover {
        transform: translateY(-6px);
    }

    .stars {
        color: #f7c800;
        font-size: 25px;
        margin-bottom: 10px;
    }

    .quote-icon {
        position: absolute;
        top: 15px;
        right: 15px;
        background: #ff3b00;
        color: #fff;
        font-size: 32px;
        font-weight: bold;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonial-title {
        font-weight: bold;
        font-size: 21px;
        margin-bottom: 15px;
    }

    .testimonial-text {
        font-size: 17px;
        color: #444;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .testimonial-author {
        font-weight: bold;
        font-size: 16px;
        border-top: 1px solid #ddd;
        padding-top: 10px;
    }

    /* ✅ Responsive */
    @media (max-width: 768px) {
        .testimonials {
            padding: 30px 15px;
        }

        .testimonial-title {
            font-size: 1rem;
        }

        .testimonial-text {
            font-size: 0.9rem;
        }
    }</style>
				
			
Scroll to Top