/* ABOUT BANNER */
.about-banner{
  position: relative;
  height: 200px;
  background:
  url("../images/about-banner.jpg")
  center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 95px;
}
/* OVERLAY */
.about-overlay{
  position: absolute;
  inset: 0;
  background:
  linear-gradient(
    rgba(101, 99, 99, 0.6),
    rgba(0,0,0,0.60)
  );
}
.about-banner-content{
  position: relative;
  z-index: 2;
  text-align: center;
}
.about-banner-content h1{
  font-size: 34px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
}

/*  BREADCRUMB*/
.about-breadcrumb{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.about-breadcrumb a,
.about-breadcrumb span,
.about-breadcrumb i{
  color: #fff;
  font-size: 16px;
}
.about-breadcrumb a{
  text-decoration: none;
  transition: 0.3s;
}

.about-breadcrumb a:hover{
  color: #f0b90b;
}

/* COMMON */
.about-intro,
.about-team,
.about-services,
.why-care,
.quality-section{
  padding: 100px 0;
}

.section-heading{
  text-align: center;
  margin-bottom: 60px;
}

.section-heading span{
  color: #f0b90b;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}

.section-heading h2{
  font-size: 48px;
  color: #11195b;
  margin-bottom: 18px;
}

.section-heading p{
  max-width: 780px;
  margin: auto;
  color: #666;
  line-height: 1.9;
}

.about-mini-title{
  color: #f0b90b;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 18px;
}

/*  ABOUT INTRO */

.about-intro-wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-intro-content h2{
  font-size: 52px;
  line-height: 1.3;
  color: #11195b;
  margin-bottom: 24px;
}

.about-intro-content p{
  color: #666;
  line-height: 1.9;
  margin-bottom: 18px;
}

.about-intro-image img{
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

/* TEAM */

.about-team{
  padding: 40px 0;
  /* background: #f7f8fc; */
}

.about-team-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.about-team-card{
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.about-team-card:hover{
  transform: translateY(-10px);
}

.about-team-image img{
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.about-team-content{
  padding: 22px;
}

.about-team-content h3{
  font-size: 22px;
  color: #11195b;
  margin-bottom: 10px;
}

.about-team-content p{
  color: #666;
}

/* =========================
   SERVICES
========================= */

.service-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 35px;
}

.service-card{
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.service-card:hover{
  transform: translateY(-10px);
}

.service-image img{
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.service-content{
  padding: 30px;
}

.service-content h3{
  font-size: 28px;
  color: #11195b;
  margin-bottom: 16px;
}

.service-content p{
  color: #666;
  line-height: 1.9;
}

/* =========================
   WHY CARE
========================= */

.why-care{
  background: #f7f8fc;
}

.why-care-wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.why-care-content h2{
  font-size: 50px;
  color: #11195b;
  line-height: 1.3;
  margin-bottom: 35px;
}

.why-box{
  display: flex;
  gap: 22px;
  margin-bottom: 28px;
}

.why-icon{
  min-width: 65px;
  height: 65px;
  background: #f0b90b;
  color: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
}

.why-box h3{
  color: #11195b;
  margin-bottom: 10px;
  font-size: 24px;
}

.why-box p{
  color: #666;
  line-height: 1.8;
}

.why-care-image img{
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

/* =========================
   QUALITY
========================= */

.quality-wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.quality-image img{
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.quality-content h2{
  font-size: 52px;
  line-height: 1.3;
  color: #11195b;
  margin-bottom: 25px;
}

.quality-content p{
  color: #666;
  line-height: 1.9;
  margin-bottom: 30px;
}

.quality-content a{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 180px;
  height: 58px;

  background: #f0b90b;
  color: #fff;

  text-decoration: none;
  border-radius: 10px;

  font-weight: 600;

  transition: 0.3s;
}

.quality-content a:hover{
  background: #11195b;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

  .about-intro-wrapper,
  .why-care-wrapper,
  .quality-wrapper{
    grid-template-columns: 1fr;
  }

  .about-team-grid{
    grid-template-columns: repeat(2,1fr);
  }

  .service-grid{
    grid-template-columns: 1fr;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .about-intro,
  .about-team,
  .about-services,
  .why-care,
  .quality-section{
    padding: 70px 0;
  }

  .section-heading{
    margin-bottom: 40px;
  }

  .section-heading h2{
    font-size: 34px;
  }

  .about-intro-content h2,
  .why-care-content h2,
  .quality-content h2{
    font-size: 36px;
  }

  .about-team-grid{
    grid-template-columns: 1fr;
  }

  .about-team-image img{
    height: 260px;
  }

  .service-image img{
    height: 240px;
  }

  .service-content h3{
    font-size: 24px;
  }

  .why-box{
    gap: 16px;
  }

  .why-icon{
    min-width: 55px;
    height: 55px;
    font-size: 18px;
  }

}