/* ===================================
revoew banner
=================================== */

.page-banner4 {
    position: relative;
    min-height: 450px;
    background-image: url("../images/review/review.jpg");
    background-size:cover;
    background-position: center top; /* adjust image focus */
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner-content h1 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb i {
  font-size: 14px;
}

@media (max-width: 992px) {
  .page-banner4 {
    height: 350px;
  }

  .banner-content h1 {
    font-size: 55px;
  }

  .breadcrumb {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
    .page-banner4 {
        min-height: 280px;
        background-position: 55% center; /* keeps people visible */
    }

  .banner-content h1 {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .breadcrumb {
    gap: 8px;
    font-size: 14px;
    flex-wrap: wrap;
  }

  .breadcrumb i {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
   .page-banner4 {
        min-height: 280px;
        background-position: 15% center; /* keeps people visible */
    }
  .banner-content h1 {
    font-size: 25px;
  }

  .breadcrumb {
    font-size: 11px;
  }
}


/*=================================
CUSTOMER REVIEW SECTION
=================================*/
.customer-review-section{
    max-width:1400px;
    margin:30px auto;
    padding:0 40px;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}


/*=================================
CARD
=================================*/
.customer-review-card{
    background:#edf1f7;
    border-radius:30px;
    padding:20px;
    position:relative;

    display:flex;
    gap:25px;

    transition:.3s ease;
}

.customer-review-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}


/*=================================
IMAGE
=================================*/
.customer-review-image img{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:50%;
    border:6px solid #fff;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}


/*=================================
CONTENT
=================================*/
.customer-review-content{
    flex:1;
}

.customer-review-content h3{
    font-size:20px;
    font-weight:700;
    margin-bottom:15px;
    color:#111;
}

.customer-review-content p{
    font-size:15px;
    color:#555;
    line-height:1.7;
}

.customer-review-stars{
    color:#ffb400;
    font-size:28px;
    margin-top:17px;
}


/*=================================
QUOTE ICON
=================================*/
.customer-review-quote{
    position:absolute;
    right:25px;
    top:20px;
    font-size:90px;
    color:#e7c4cf;
}


/*=================================
TABLET
=================================*/
@media(max-width:992px){

    .customer-review-card{
        padding:25px;
    }

    .customer-review-content h3{
        font-size:26px;
    }

    .customer-review-content p{
        font-size:16px;
    }

}


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

    .customer-review-section{
        grid-template-columns:1fr;
        gap:20px;
    }

    .customer-review-card{
        flex-direction:column;
        align-items:center;
        text-align:center;
        padding:25px 20px;
    }

    .customer-review-content h3{
        font-size:22px;
    }

    .customer-review-content p{
        font-size:15px;
    }

    .customer-review-stars{
        font-size:24px;
    }

    .customer-review-quote{
        top:10px;
        right:20px;
        font-size:65px;
    }

}


/*=================================
SMALL MOBILE
=================================*/
@media(max-width:480px){

    .customer-review-card{
        padding:42px 15px;
        border-radius:20px;
    }

    .customer-review-image img{
        width:80px;
        height:80px;
    }

    .customer-review-content h3{
      text-align: left;
        font-size:18px;
    }

    .customer-review-content p{
      text-align: left;
        font-size:12px;
    }

    .customer-review-stars{
      text-align: left;
        font-size:18px;
    }

}