@font-face {
  font-family: "Tajawal";
  src: url("../fonts/Tajawal/Tajawal-Regular.woff2");
  font-display: swap;
}

@font-face {
  font-family: "Tajawal-Bold";
  src: url("../fonts/Tajawal/Tajawal-Bold.woff2");
  font-display: swap;
}

@font-face {
  font-family: "Tajawal-Medium";
  src: url("../fonts/Tajawal/Tajawal-Medium.woff2");
  font-display: swap;
}

body {
  font-family: "Tajawal", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  direction: rtl;
  overflow-x: hidden;
  text-align: right;
}

*,
::after,
::before {
  box-sizing: border-box;
}

a,
a:hover {
  text-decoration: unset;
}

h1,
h2,
h3,
h4,
h5,
h6,
figure {
  margin: 0;
}

.cus-container {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  padding: 0 15px;
  margin: 0 auto !important;
}

picture {
  display: flex;
  width: 100%;
}

.page-title-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 100px 0;
  background-color: #1a1a1a;
}

h1 {
  font-family: "Tajawal-Bold", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  /* color: #1a1a1a; */
  color: #fff;
  margin: 0 !important;
}

.page-content-wrapper {
  max-width: 60%;
  margin: 70px auto;
}

.page-content-wrapper p {
  font-size: 18px;
  line-height: 28px;
  text-align: justify;
  color: #1a1a1a;
  margin: 0 0 32px 0;
}

h2 {
  font-family: "Tajawal-Bold", sans-serif;
  color: #1a1a1a;
  font-size: 26px;
  margin: 0 0 20px 0 !important;
}
.methodology-notes-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.methodology-img-div {
  width: 100%;
  margin: 32px auto;
}
.methodology-img-div img {
  width: 100%;
  height: auto;
}
.main-elements-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 50px 0;
}
.main-element {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main-element-title {
  display: flex;
  gap: 8px;
  align-items: center;
}
.main-element-title h3 {
  font-family: "Tajawal-Bold", sans-serif;
  color: #1a1a1a;
  font-size: 22px;
  margin: 0;
}
.main-element-title img {
  position: relative;
  bottom: 6px;
  width: 32px;
  height: 32px;
}
.main-element-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 15px;
}
.main-element-list h3 {
  font-family: "Tajawal-Bold", sans-serif;
  color: #c52e30;
  font-size: 20px;
  margin: 0;
  display: flex;
  gap: 12px;
}
.main-element-list h3::before {
  content: "-";
}

.types-of-data-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.data-type {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.data-type span {
  font-family: "Tajawal-Bold", sans-serif;
  font-size: 18px;
  color: white;
  background-color: #1a1a1a;
  display: inline;
  width: fit-content;
  padding: 12px;
  margin-bottom: 15px;
}
.ul-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}
.ul-list li {
  font-size: 18px;
  color: #1a1a1a;
}
.aspects-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.aspect-div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.aspect-div span {
  font-family: "Tajawal-Bold", sans-serif;
  font-size: 18px;
  color: white;
  background-color: #c52e30;
  display: inline;
  width: fit-content;
  padding: 12px;
  margin-bottom: 15px;
}
.bold {
  font-family: "Tajawal-Bold", sans-serif !important;
}
.ai-examples-boxes-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}
.ai-examples-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 49%;
  background: white;
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.2);
  padding: 30px 20px;
}
.ai-examples-box span {
  font-family: "Tajawal-Bold", sans-serif;
  font-size: 18px;
  color: #c52e30;
  text-align: center;
  line-height: 26px;
}
.ai-examples-box p {
  font-size: 16px;
  text-align: center;
  margin: 0;
}
.ai-investigations-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin-top: 50px;
}
.ai-investigations-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}
.ai-investigation-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 49%;
  border-radius: 8px;
 
}
.ai-investigation-card-img-div{
    width: 100%;
    height: 300px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}
.ai-investigation-card:hover img{
    transform: scale(1.1);
    transition: all 0.4s ease-in-out;
    border-radius: 8px 8px 0 0;
}
.ai-investigation-card img {
    border-radius: 8px 8px 0 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.4s ease-in-out;
}
.ai-investigation-card-body {
  background: white;
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 0 0 8px 8px;
  min-height: 175px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ai-investigation-card-body p {
  font-family: "Tajawal-Bold", sans-serif;
}
.loc-time-wrapper { 
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: row;
    gap: 5px;
}
.loc-time-wrapper span {
  font-family: "Tajawal-Bold", sans-serif;
  font-size: 14px;
  background-color: #c52e30;
  color: white;
  display: inline;
  width: fit-content;
  padding: 12px;
  border-radius: 8px;
}

/* Media Queries */


@media (max-width: 992px) {

  h1{
    font-size: 32px;
  }
  h2{
    font-size: 22px;
  }
  .page-content-wrapper{
    max-width: 90%;
    margin: 20px auto;
  }
  .methodology-notes-container{
    gap: 10px;
  }
  
  .main-element-list h3{
    font-size: 20px;
    line-height: 28px;
}
  .ai-examples-box,.ai-investigation-card{max-width: 100%;}
}

/* End Media Queries */
