/* ================================================
   ABOUT PAGE – CUSTOM STYLES
   ================================================ */

/* ---------- Reset & Base overrides ---------- */
body {
  background-color: #f5f6f8;
}

/* ---------- Top Banner Section ---------- */
.at-banner {
  background-image: url('../images/about-banner.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #031131;
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 48px 0;
}



/* ---------- Content Container & Card ---------- */
.at-ceo-container {
  width: 100%;
  padding: 36px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}

.at-ceo-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.at-ceo-card__section {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 14px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .10196078431372549);
  padding: 25px;
}

.at-ceo-card__title {
  font-size: 22px;
  font-weight: 600;
  color: #0a218d;
  margin-bottom: 16px;
}

.at-ceo-card__text {
  font-size: 14px;
  font-weight: 400;
  color: #070707;
  line-height: 25px;
  text-align: justify;
}

/* ---------- CEO Section ---------- */


.at-ceo__title {
  font-size: 25px;
  font-weight: 600;
  color: #0a218d;
}

.at-ceo__top {
  display: flex;
  gap: 32px;
  align-items: center;
}

.at-ceo__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;

}

.at-ceo__image {
  flex: 0 0 500px;
  border-radius: 8px;
  overflow: hidden;
}

.at-ceo__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.at-ceo__gallery {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.at-ceo__gallery img {
  width: calc(50% - 8px);
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.at-ceo__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---------- RESPONSIVE OVERRIDES ---------- */

@media (max-width: 1024px) {
  .at-banner__brand-title {
    font-size: 38px;
  }

  .at-banner__brand-sub {
    font-size: 22px;
  }

  .at-banner__arabic-title {
    font-size: 38px;
  }


  .at-ceo__image {
    flex: 0 0 350px;
  }

  .at-ceo__top {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .at-banner {
    padding: 40px 0;
    min-height: 100%;
  }

  .at-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 36px;
  }

  .at-banner__col {
    align-items: center;
    width: 100%;
  }

  .at-banner__brand {
    align-items: center;
  }

  .at-banner__arabic-wrapper {
    border-right: none;
    border-bottom: 3px solid #d32f2f;
    padding-right: 0;
    padding-bottom: 12px;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 320px;
  }

  .at-banner__seal-wrapper {
    justify-content: center;
    width: 100%;
  }

  .at-ceo-container {
    padding: 24px 16px;
  }

  .at-ceo-card {
    gap: 28px;
  }

  .at-ceo-card__title {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .at-ceo-card__text {
    font-size: 14px;
    line-height: 1.65;
    text-align: left;
  }

  .at-ceo__top {
    flex-direction: column;
  }

  .at-ceo__image {
    flex: 0 0 auto;
    width: 100%;
  }

  .at-ceo__gallery {
    flex-direction: column;
  }

  .at-ceo__gallery img {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .at-banner__brand-title {
    font-size: 32px;
  }

  .at-banner__brand-sub {
    font-size: 18px;
  }

  .at-banner__arabic-title {
    font-size: 32px;
  }

  .at-banner__arabic-sub {
    font-size: 16px;
  }

  .at-banner__seal-domain {
    font-size: 16px;
  }

  .at-ceo-card__section {
    padding: 15px;
  }

  .at-ceo-card__title {
    font-size: 20px;
  }
}