/* =========================================
   INNER HERO
========================================= */

.inner-hero {

  position: relative;

  padding: 220px 0 120px;

  background:
    linear-gradient(
      rgba(8,20,38,0.82),
      rgba(8,20,38,0.88)
    ),
    url('../images/hero/scbanner2.png');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;

}

.inner-hero-content {

  max-width: 850px;

  color: #fff;

}

.inner-tag {

  display: inline-block;

  padding: 10px 18px;

  border-radius: 50px;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(10px);

  font-size: 13px;

  margin-bottom: 25px;

  letter-spacing: 1px;

}

.inner-hero h1 {

  font-size: 68px;

  line-height: 1.08;

  margin-bottom: 22px;

}

.inner-hero p {

  max-width: 650px;

  color: rgba(255,255,255,0.75);

  font-size: 17px;

}






/* =========================================
   TESTIMONIAL INTRO
========================================= */

.testimonial-intro{

  padding-bottom:20px;

}

.testimonial-intro .section-title{

  max-width:850px;

  margin:auto;

  text-align:center;

}


/* =========================================
   TESTIMONIAL GRID
========================================= */

.testimonial-section{

  padding-bottom:120px;

}

.testimonial-grid{

  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:30px;

}

.testimonial-card{

  background:#fff;

  border-radius:24px;

  padding:35px;

  border:1px solid rgba(0,0,0,.06);

  box-shadow:
  0 10px 35px rgba(0,0,0,.05);

  transition:.4s ease;

}

.testimonial-card:hover{

  transform:translateY(-8px);

  box-shadow:
  0 18px 45px rgba(0,0,0,.08);

}

.stars{

  color:#c62828;

  font-size:20px;

  margin-bottom:20px;

  letter-spacing:2px;

}

.testimonial-card p{

  color:#5f6b7a;

  line-height:1.9;

  margin-bottom:30px;

}

.client{

  display:flex;

  align-items:center;

  gap:15px;

}

.client-avatar{

  width:55px;
  height:55px;

  border-radius:50%;

  background:#0f2e57;

  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-weight:700;

  font-size:18px;

}

.client h4{

  margin-bottom:5px;

  font-size:17px;

}

.client span{

  color:#6b7280;

  font-size:14px;

}


/* =========================================
   TRUST STATS
========================================= */

.trust-stats{

  background:#f8fafc;

}

.stats-grid{

  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:25px;

}

.stat-box{

  background:#fff;

  text-align:center;

  padding:45px 20px;

  border-radius:22px;

  border:1px solid rgba(0,0,0,.05);

  box-shadow:
  0 8px 25px rgba(0,0,0,.04);

}

.stat-box h3{

  font-size:48px;

  color:#c62828;

  margin-bottom:12px;

}

.stat-box span{

  color:#5f6b7a;

  font-size:15px;

}


/* =========================================
   CLIENT MESSAGE
========================================= */

.client-message{

  background:#fff;

}

.message-box{

  max-width:900px;

  margin:auto;

  text-align:center;

}

.message-box i{

  font-size:55px;

  color:#c62828;

  margin-bottom:25px;

}

.message-box h2{

  font-size:48px;

  line-height:1.15;

  margin-bottom:22px;

}

.message-box p{

  color:#5f6b7a;

  font-size:18px;

  line-height:1.9;

}


/* =========================================
   CTA SECTION
========================================= */

.testimonial-cta{

  background:#0f2e57;

}

.cta-box{

  text-align:center;

  max-width:850px;

  margin:auto;

  color:#fff;

}

.cta-box h2{

  font-size:52px;

  line-height:1.15;

  margin-bottom:20px;

}

.cta-box p{

  color:rgba(255,255,255,.75);

  margin-bottom:35px;

  font-size:17px;

}

.cta-box .primary-btn{

  display:inline-flex;

}


/* =========================================
   TABLET
========================================= */

@media(max-width:991px){

  .testimonial-grid{

    grid-template-columns:repeat(2,1fr);

  }

  .stats-grid{

    grid-template-columns:repeat(2,1fr);

  }

  .message-box h2{

    font-size:40px;

  }

  .cta-box h2{

    font-size:42px;

  }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width:767px){

  .testimonial-grid{

    grid-template-columns:1fr;

  }

  .stats-grid{

    grid-template-columns:1fr;

  }

  .testimonial-card{

    padding:28px;

  }

  .message-box h2{

    font-size:32px;

  }

  .message-box p{

    font-size:16px;

  }

  .cta-box h2{

    font-size:34px;

  }

  .cta-box p{

    font-size:15px;

  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

  .testimonial-card{

    padding:24px;

  }

  .stars{

    font-size:18px;

  }

  .stat-box h3{

    font-size:40px;

  }

}