
/* Hero Section Start */

.about-section{
    background:#f5f4f2;
    padding:120px 0;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.about-header{
    display:flex;
    justify-content:space-between;
    gap:80px;
    margin-bottom:60px;
}

.heading-content{
    flex:1;
}

.section-tag{
    position:relative;
    display:inline-block;
    color:#55ABE1;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    padding-left:45px;
    text-transform:uppercase;
}

.section-tag::before{
    content:"";
    width:30px;
    height:2px;
    background:#55ABE1;
    position:absolute;
    left:0;
    top:50%;
}

.heading-content h2{
    margin-top:15px;
    font-size:70px;
    line-height:1.05;
    color:#101010;
}

.heading-content h2 span{
    display:block;
    font-weight:300;
}

.about-description{
    max-width:420px;
    color:#666;
    line-height:1.9;
    margin-top:10px;
}

/* GRID */

.about-grid{
    display:grid;
    grid-template-columns:1.4fr .9fr;
    gap:30px;
}

/* VISION CARD */

.vision-card{
    position:relative;
    border-radius:24px;
    overflow:hidden;
    min-height:560px;
}

.vision-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s;
}

.vision-card:hover img{
    transform:scale(1.08);
}

.overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.2)
    );
}

.vision-content{
    position:absolute;
    left:40px;
    right:40px;
    bottom:40px;
    color:white;
    z-index:2;
}

.icon-circle{
    width:56px;
    height:56px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(10px);

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;
}

.icon-circle i{
    color:white;
}

.vision-content h3{
    font-size:42px;
    margin-bottom:18px;
}

.vision-content p{
    line-height:1.9;
    color:#e7e7e7;
    max-width:90%;
}

/* RIGHT SIDE */

.right-cards{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.info-card{
    border-radius:24px;
    padding:45px;
    transition:.4s;
}

.info-card:hover{
    transform:translateY(-8px);
}

.mission-card{
    background:#ece8e4;
}

.philosophy-card{
    background:#55ABE1;
    color:white;
}

.small-icon{
    font-size:22px;
    margin-bottom:40px;
}

.mission-card .small-icon{
    color:#55ABE1;
}

.philosophy-card .small-icon{
    color:white;
}

.info-card h3{
    font-size:40px;
    margin-bottom:18px;
}

.info-card p{
    line-height:1.8;
    font-size:16px;
}

.mission-card p{
    color:#666;
}

.philosophy-card p{
    color:rgba(255,255,255,.9);
}

/* RESPONSIVE */

@media(max-width:992px){

    .about-header{
        flex-direction:column;
        gap:30px;
    }

    .about-grid{
        grid-template-columns:1fr;
    }

    .heading-content h2{
        font-size:55px;
    }

}

@media(max-width:768px){

    .heading-content h2{
        font-size:42px;
    }

    .vision-content h3,
    .info-card h3{
        font-size:30px;
    }

    .info-card{
        padding:30px;
    }

}

/* Hero Section End */




/* Our Team About */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: "Poppins", sans-serif;
  background:#f7f7f7;
}

.testimonial-section{
  padding:100px 5%;
}

.container{
  max-width:1300px;
  margin:auto;
}

.section-header{
  text-align:center;
  margin-bottom:60px;
}

.badge{
  display:inline-block;
  background:#ffe9e2;
  color:#55ABE1;
  padding:8px 20px;
  border-radius:30px;
  font-size:14px;
  margin-bottom:15px;
}

.section-header h2{
  font-size:56px;
  font-weight:700;
  color:#021b2f;
}

.testimonial-wrapper{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.testimonial-slider{
  display:flex;
  gap:30px;
}

.testimonial-card{
  width:370px;
  background:#fff;
  border-radius:12px;
  padding:35px 28px;
  box-shadow:0 8px 25px rgba(0,0,0,.05);
  transition:.4s;
}

.testimonial-card.active{
  border-bottom:4px solid #55ABE1;
}

.quote{
  font-size:40px;
  color:#7b8d97;
  margin-bottom:15px;
}

.active-quote{
  color:#55ABE1;
}

.testimonial-card p{
  color:#6f7e86;
  line-height:2;
  font-size:17px;
  margin-bottom:30px;
}

.client{
  display:flex;
  align-items:center;
  gap:15px;
}

.client img{
  width:60px;
  height:60px;
  border-radius:50%;
  object-fit:cover;
}

.client h4{
  font-size:22px;
  color:#081f33;
}

.client span{
  font-size:14px;
  color:#83939b;
}

.nav-btn{
  width:55px;
  height:55px;
  border-radius:50%;
  /* border:1px solid #d9d9d9; */
  /* background:#fff; */
  cursor:pointer;
  font-size:22px;
  transition:.3s;
}

.nav-btn:hover{
  color:#55ABE1;
}

.prev{
  margin-right:20px;
}

.next{
  margin-left:20px;
}

/* Tablet */

@media(max-width:992px){

  .testimonial-slider{
    flex-wrap:wrap;
    justify-content:center;
  }

  .section-header h2{
    font-size:42px;
  }
}

/* Mobile */

@media(max-width:768px){

  .testimonial-card{
    width:100%;
  }

  .section-header h2{
    font-size:34px;
  }

  .nav-btn{
    display:none;
  }
}

/* Our Team ABout End */

