/* ============================================================
   ebpt9 — ISO Compliance & Business Services Section
   Namespace  : ebpt9
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400;500;600;700&display=swap');

/* 1. Variables & Colors */
.ebpt9 {
  --ebpt9-bg:              #204A7B;
  --ebpt9-text:            #ffffff;
  --ebpt9-title:           #ffffff;
  --ebpt9-border:          rgba(255, 255, 255, 0.15);

  --ebpt9-item-text:       #dce8f8;
  --ebpt9-dot-color:       #ffffff;

  --ebpt9-padding-top:     3.5rem;
  --ebpt9-padding-bottom:  3.5rem;
}

/* 2. Reset داخل الـ namespace */
.ebpt9 *,
.ebpt9 *::before,
.ebpt9 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* 3. Base Styles — Mobile */
.ebpt9 {
  font-family: "El Messiri", sans-serif;
  background-color: var(--ebpt9-bg);
  color: var(--ebpt9-text);
  direction: ltr;
  padding-top: var(--ebpt9-padding-top);
  padding-bottom: var(--ebpt9-padding-bottom);
  width: 100%;
}

/* Container */
.ebpt9__container {
  width: 92%;
  max-width: 78rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Header / Title */
.ebpt9__header {
  text-align: center;
}

.ebpt9__title {
  font-size: clamp(1rem, 4.5vw, 1.35rem);
  font-weight: 700;
  color: var(--ebpt9-title);
  line-height: 1.5;
  font-family: "El Messiri", sans-serif;
}

/* Grid — single column on mobile */
.ebpt9__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* List */
.ebpt9__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Item */
.ebpt9__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

/* Dot */
.ebpt9__dot {
  color: var(--ebpt9-dot-color);
  font-size: 0.6rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

/* Text */
.ebpt9__item-text {
  font-size: clamp(0.8rem, 3vw, 0.92rem);
  color: var(--ebpt9-item-text);
  line-height: 1.7;
  font-family: "El Messiri", sans-serif;
}

/* 4. Breakpoints */

@media (min-width: 481px) {
  .ebpt9__item-text {
    font-size: clamp(0.82rem, 2.2vw, 0.93rem);
  }
}

@media (min-width: 601px) {
  .ebpt9__title {
    font-size: clamp(1.05rem, 3vw, 1.3rem);
  }
}

@media (min-width: 769px) {
  .ebpt9__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 4rem;
    align-items: start;
  }

  .ebpt9__container {
    gap: 2.5rem;
  }

  .ebpt9__title {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
  }

  .ebpt9__item-text {
    font-size: clamp(0.82rem, 1.3vw, 0.93rem);
  }

  .ebpt9__list {
    gap: 0.9rem;
  }
}

@media (min-width: 1025px) {
  .ebpt9__container {
    width: 80%;
    gap: 3rem;
  }

  .ebpt9__grid {
    gap: 1.5rem 5rem;
  }

  .ebpt9__title {
    font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  }

  .ebpt9__item-text {
    font-size: 0.93rem;
  }

  .ebpt9__list {
    gap: 1rem;
  }
}

@media (min-width: 1281px) {
  .ebpt9__container {
    width: 70%;
  }

  .ebpt9__title {
    font-size: 1.4rem;
  }

  .ebpt9__item-text {
    font-size: 0.95rem;
  }

  .ebpt9__grid {
    gap: 1.5rem 6rem;
  }
}

@media (min-width: 1441px) {
  .ebpt9__container {
    width: 70%;
    max-width: 75rem;
  }

  .ebpt9__title {
    font-size: 1.5rem;
    line-height: 1.55;
  }

  .ebpt9__item-text {
    font-size: 1rem;
  }

  .ebpt9__list {
    gap: 1.1rem;
  }

  .ebpt9__dot {
    font-size: 0.65rem;
    margin-top: 0.35rem;
  }
}

@media (min-width: 1921px) {
 

  .ebpt9__title {
    font-size: 1.7rem;
  }

  .ebpt9__item-text {
    font-size: 1.08rem;
  }

  .ebpt9__dot {
    font-size: 0.7rem;
  }
}