/* banner start */
.tj-breadcrumb-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 230px 0 120px;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.tj-breadcrumb-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(7 124 234 / .5);
    z-index: -2
}

.tj-breadcrumb-area::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(1 15 52 / .3);
    z-index: -1
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .tj-breadcrumb-area {
        padding: 200px 0 100px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tj-breadcrumb-area {
        padding: 180px 0 80px
    }
}

@media (max-width:575px) {
    .tj-breadcrumb-area {
        padding: 180px 0 80px
    }
}

.tj-breadcrumb-bg-shape {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(4%, -30%);
    -ms-transform: translate(4%, -30%);
    transform: translate(4%, -30%);
    z-index: -1
}

.tj-breadcrumb-title {
    color: var(--tj-color-common-white);
    font-weight: var(--tj-fw-bold);
    margin-bottom: 12px
}

.tj-breadcrumb-body {
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-medium);
    font-size: 18px;
    color: var(--tj-color-common-white);
    margin-bottom: 0
}

.tj-breadcrumb-body .spacing {
    margin: 0 10px 0
}
/* banner  closed */


/* TESTIMONIAL SECTION */
.testimonial-section {
  padding: 80px 20px;
  background: #f9fbff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

/* GRID */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.testimonial-card {
  background: #f9fbff;
  border-radius: 18px;
  padding: 35px 28px;
  text-align: center;
border: 1px solid #077cea;
  box-shadow: 0 5px 10px #f9fbff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 5px 10px #077cea;
}

/* IMAGE */
.testimonial-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* NAME */
.names{
  font-size: 18px;
  font-weight: 600;
  color: black;
  margin-bottom: 6px;
}

/* STARS */
.stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 15px;
}

/* TEXT */
.testimonial-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }
}


