/* ==========================================
GOOGLE FONT
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ==========================================
RESET
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#F5FBFF;
}

/* ==========================================
NAVBAR
========================================== */

.navbar{

    width:100%;
    height:80px;

    background:white;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 40px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    position:sticky;
    top:0;
    z-index:1000;

}

.logo img{

    height:60px;

}

.navbar h2{

    color:#2196F3;
    font-size:30px;

}

.homeBtn{

    width:50px;
    height:50px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#2196F3;
    color:white;

    text-decoration:none;

    font-size:22px;

}

/* ==========================================
HERO
========================================== */

.hero{

    text-align:center;

    padding:70px 20px;

    background:linear-gradient(135deg,#E3F2FD,#FFFDE7);

}

.hero h1{

    font-size:45px;
    color:#1976D2;
    margin-bottom:20px;

}

.hero p{

    max-width:700px;
    margin:auto;

    color:#555;
    line-height:1.8;

}

/* ==========================================
GRID
========================================== */

.testimonialSection{

    width:90%;
    max-width:1300px;

    margin:auto;

    padding:70px 0;

}

.testimonialGrid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

/* ==========================================
CARD
========================================== */

.review-card{

    background:white;

    padding:30px;

    border-radius:25px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;

}

.review-card:hover{

    transform:translateY(-10px);

}

.review-name{

    font-size:24px;
    font-weight:600;

    color:#2196F3;

}

.review-stars{

    font-size:24px;

    color:#FFD54F;

    margin:15px 0;

}

.review-text{

    color:#555;

    line-height:1.8;

    margin-bottom:20px;

}

.review-date{

    color:#888;

    font-size:14px;

}

/* ==========================================
WRITE REVIEW
========================================== */

.reviewSection{

    text-align:center;

    padding:70px 20px;

    background:#E8F5E9;

}

.reviewSection h2{

    font-size:38px;

    color:#2E7D32;

    margin-bottom:15px;

}

.reviewSection p{

    color:#555;

    margin-bottom:30px;

}

.reviewBtn{

    display:inline-block;

    padding:15px 35px;

    background:#43A047;

    color:white;

    text-decoration:none;

    border-radius:40px;

    transition:.35s;

}

.reviewBtn:hover{

    background:#2E7D32;

}

/* ==========================================
LOADING
========================================== */

.loading-card{

    grid-column:1/-1;

    text-align:center;

    padding:60px;

    font-size:22px;

    color:#777;

}

/* ==========================================
FOOTER
========================================== */

footer{

    background:#2196F3;

    color:white;

    text-align:center;

    padding:30px;

    line-height:2;

}

/* ==========================================
MOBILE
========================================== */

@media(max-width:768px){

.navbar{

    padding:0 15px;

    height:70px;

}

.logo img{

    height:45px;

}

.navbar h2{

    font-size:20px;

}

.homeBtn{

    width:42px;
    height:42px;

    font-size:18px;

}

.hero h1{

    font-size:32px;

}

.testimonialGrid{

    grid-template-columns:1fr;

}

.review-card{

    padding:22px;

}

.reviewSection h2{

    font-size:28px;

}

}