/* =========================
   ROOT VARIABLES
========================= */

:root {

  /* text colors */
  --ebserv10-main-title-color: #00045F;
  --ebserv10-primary-text-color: #00045F;
  --ebserv10-secondary-text-color: #555555;
  --ebserv10-light-text-color: #FFFFFF;

  /* backgrounds */
  --ebserv10-main-background-color: #FFFFFF;
  --ebserv10-light-blue-background: #EDF5FF;
  --ebserv10-testimonial-background: #DDEBFF;
  --ebserv10-card-background: #FFFFFF;

  /* borders */
  --ebserv10-card-border-color: #E6ECF5;

  /* icons */
  --ebserv10-icon-background-color: #E83A15;
  --ebserv10-icon-color: #FFFFFF;

  /* check icon */
  --ebserv10-check-background-color: #E83A15;
  --ebserv10-check-color: #FFFFFF;

  /* quote mark */
  --ebserv10-quote-mark-color: #C7DBFF;

  /* shadows */
  --ebserv10-card-shadow-color: rgba(0, 4, 95, 0.06);

  /* radius */
  --ebserv10-card-radius: 1rem;
  --outer-ring: #dbe5e1;
  /* Thin outer circle border */
  --inner-circle: #c4d4ce;
  /* Solid pale green inner circle */
  --checkmark-color: #111111;
  /* Dark checkmark */

}




/* =========================
 SECTION
========================= */

.ebserv10-about-section {
  background-color: var(--ebserv10-main-background-color);

  display: flex;
  flex-direction: column;
  gap: 30px;
}


/* =========================
 TOP SECTION
========================= */

.ebserv10-about-top {
  display: flex;
  justify-content: center;

  padding: 3rem 1rem 2rem;
}


.ebserv10-about-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;

  text-align: center;

  max-width: 75rem;
}


.ebserv10-about-main-title {
  color: var(--ebserv10-main-title-color);

  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.1;
}


.ebserv10-about-main-desc {
  color: var(--ebserv10-secondary-text-color);

  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  line-height: 2;
}


/* =========================
 BOTTOM SECTION
========================= */

.ebserv10-about-bottom {
  display: flex;
  flex-direction: column-reverse;
}


/* =========================
 RIGHT SIDE
========================= */

.ebserv10-about-right-side {
  display: flex;
  flex-direction: column;
}


/* =========================
 STATS
========================= */

.ebserv10-stats-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 2rem;

  padding: 2rem 1rem;
}


.ebserv10-single-stat {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 1rem;
}


.ebserv10-stat-icon {

  border-radius: 50%;

  /* background-color: var(--ebserv10-icon-background-color); */
  color: var(--ebserv10-icon-color);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: clamp(1rem, 2vw, 1.3rem);

  flex-shrink: 0;
}

.ebserv10-stat-icon-home {
  width: 3.7rem;
  height: 3.7rem;

}

.ebserv10-stat-icon-contact {
  width: 5rem;
  height: 5rem;
}

.ebserv10-stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.ebserv10-stat-text {
  display: flex;
  flex-direction: column;

  gap: 0.3rem;
}


.ebserv10-stat-text h3 {
  color: var(--ebserv10-primary-text-color);

  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
}


.ebserv10-stat-text span {
  color: var(--ebserv10-secondary-text-color);

  font-size: clamp(0.9rem, 2vw, 1rem);
}


/* =========================
 TESTIMONIAL
========================= */

.ebserv10-testimonial-box {
  background-color: var(--ebserv10-testimonial-background);

  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;

  gap: 1.5rem;

  padding: 4rem 1.5rem;
}


.ebserv10-testimonial-mark {
  position: absolute;

  top: 1rem;
  left: 1rem;

  color: var(--ebserv10-quote-mark-color);

  font-size: clamp(6rem, 10vw, 11rem);
  line-height: 1;
}


.ebserv10-testimonial-text {
  color: var(--ebserv10-primary-text-color);

  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 2;

  position: relative;
  z-index: 2;
}


.ebserv10-testimonial-author {
  color: var(--ebserv10-secondary-text-color);

  font-size: clamp(1rem, 2vw, 1.2rem);
}


/* =========================
 LEFT SIDE
========================= */

.ebserv10-about-left-side {
  background-color: var(--ebserv10-light-blue-background);

  display: flex;
  flex-direction: column;
}


/* =========================
 FEATURES
========================= */

.ebserv10-features-box {
  width: 100%;

  display: flex;
  flex-direction: column;

  gap: 2rem;

  padding: 3rem 1rem;
}


.ebserv10-features-heading {
  display: flex;
  flex-direction: column;

  gap: 1rem;

  text-align: center;
}


.ebserv10-features-title {
  color: var(--ebserv10-primary-text-color);

  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.3;
  font-weight: 700;
}


.ebserv10-features-desc {
  color: var(--ebserv10-secondary-text-color);

  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 2;
}


.ebserv10-features-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  margin: auto;
}


.ebserv10-feature-card {
  background-color: var(--ebserv10-card-background);

  border: 1px solid var(--ebserv10-card-border-color);
  border-radius: var(--ebserv10-card-radius);

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: .5rem;

  box-shadow: 0 0 20px var(--ebserv10-card-shadow-color);

  padding: 1.2rem 1.4rem;

  width: 100%;
}

/* Outer Ring Container */
.checkmark-container {
  width: 50px;
  height: 50px;
  border: 1.5px solid var(--outer-ring);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: transparent;
  /* Lets the page background show through the gap */
}

/* Inner Solid Circle */
.checkmark-circle {
  width: 40px;
  height: 40px;
  background-color: var(--inner-circle);
  border-radius: 50%;
  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* The Checkmark Graphic */
.checkmark-icon {
  width: 20px;
  height: 20px;
  color: var(--checkmark-color);
}


.ebserv10-feature-card p {
  color: var(--ebserv10-primary-text-color);

  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 600;
  line-height: 1.8;
}

/* =========================
 TABLET
========================= */



@media (min-width: 768px) {

  .ebserv10-stats-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .ebserv10-features-grid {
    /* grid-template-columns: repeat(2, 1fr); */
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    width: 80%;
    margin: auto;
  }

}

@media (min-width: 1440px) {

  .ebserv10-stats-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =========================
 DESKTOP
========================= */

@media (min-width: 992px) {

  .ebserv10-about-bottom {
    flex-direction: row;
    align-items: stretch;

  }

  .ebserv10-about-right-side,
  .ebserv10-about-left-side {
    width: 50%;
  }

  .ebserv10-about-right-side {
    display: flex;
    flex-direction: column;
  }

  .ebserv10-stats-wrapper {
    min-height: 28rem;

    align-content: center;

    padding: 3rem;
  }

  .ebserv10-testimonial-box {
    min-height: 32rem;

    padding: 4rem;
    margin-top: auto;
  }

  .ebserv10-features-box {
    justify-content: center;

    padding: 4rem;
  }

  .ebserv10-features-heading {
    text-align: right;
  }

}