*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#f5f3f1;
    font-family:Inter,sans-serif;
    color:#231f20;
}

main{
    padding-top:150px;
}

/* =========================
   PAGE TITLE
========================= */

.page-title{
    text-align:center;
    margin-bottom:20px;
}

.page-title h1,
.heading h1{
    font-family:"Cormorant Garamond",serif;
    font-size:3rem;
    font-weight:500;
    line-height:1.1;
    color:#231f20;
}

/* =========================
   SECTION HEADING
========================= */

.heading{
    display:flex;
    justify-content:center;
    align-items:baseline;
    gap:10px;
    margin-bottom:30px;
}

.a,
.b{
    font-family:"Cormorant Garamond",serif;
    font-size:3.5rem;
    font-weight:500;
    line-height:1.1;
}

.a{
    color:#231f20;
}

.b{
    color:#00a499;
    font-style:normal;
}

/* =========================
   CATEGORY BUTTONS
========================= */

.testimonial-category{
    margin-bottom:40px;
}

.testimonial-category-list{
    list-style:none;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.testimonial-category-list li{
    margin:0;
}

.testimonial-category-list a{
    display:inline-block;
    padding:12px 24px;
    text-decoration:none;
    color:#231f20;
    border:1px solid #00a499;
    transition:.3s ease;
    font-size:14px;
    font-weight:600;
}

.testimonial-category-list a:hover,
.testimonial-category-list a.active{
    background:#00a499;
    color:#fff;
}

/* =========================
   REVIEW CARD
========================= */

.review-box{
    background:#fff;
    border-radius:12px;
    margin-bottom: 20px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s ease;
}

.review-box:hover{
    transform:translateY(-5px);
}

.review-top{
    display:flex;
    align-items:center;
    gap:15px;
}

.client-img{
    position:relative;
    width:65px;
    height:65px;
    flex-shrink:0;
}

.client-photo{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover;
}

.google-icon{
    position:absolute;
    right:-3px;
    bottom:-3px;
    width:24px;
    height:24px;
    background:#fff;
    border-radius:50%;
    padding:2px;
    box-shadow:0 2px 8px rgba(0,0,0,.15);
}

.client-details h4{
    font-size:20px;
    font-weight:600;
    margin:0;
}

/* =========================
   REVIEW CONTENT
========================= */

.review-des{
    margin-top:20px;
    
}

.stars{
    color:#00a499;
    font-size:20px;
    margin-bottom:15px;
    letter-spacing:2px;
}

.review-content{
    font-size:16px;
    line-height:1.9;
    color:#555;
}

/* =========================
   TABLET
========================= */

@media(max-width:768px){

    main{
        padding:60px 20px;
    }

    .heading h1{
        font-size:2.5rem;
    }

    .a,
    .b{
        font-size:2.4rem;
    }

    .review-box{
        padding:25px;
    }

    .review-content{
        font-size:15px;
        line-height:1.8;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:480px){
    .page-title{
            padding-top:120px;
    }

    main{
        padding:50px 15px;
    }

    .heading{
        flex-wrap:wrap;
        justify-content:center;
    }

    .heading h1{
        font-size:2rem;
    }

    .a,
    .b{
        font-size:1.8rem;
    }

    .testimonial-category-list{
        flex-direction:column;
        gap:10px;
    }

    .testimonial-category-list a{
        width:100%;
        text-align:center;
    }

    .review-box{
        padding:20px;
    }

    .client-img{
        width:55px;
        height:55px;
    }

    .client-details h4{
        font-size:17px;
    }

    .stars{
        font-size:18px;
    }

    .review-content{
        font-size:14px;
        line-height:1.7;
    }
}