/* Root reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white-text: #ffffff;
  --blue-txt: #00197e;
  --light-blue: #263238;
  --black-bg: #000000;
  --blue-bg: #00197e;
  --yellow-bg: #fee823;
  --alltyDark-blue-yellow: #2f6dff;
  --allty-black-text: #000000;
  --allty-yellow-txt: #fee823;
  --blue-border: #00197e;
  --yellow-border: #fee823;
  --standerd-white: #ffffff;
  --standerd-black: #000000;
  --standerd-grey: #4a4a4a;
}

body.theme-dark .abt-content,
body.theme-yellow .abt-content,
body.theme-cyan .abt-content,
body.theme-red .abt-content {
  background-image: none;
}

body.theme-dark .mission-content,
body.theme-yellow .mission-content,
body.theme-cyan .mission-content,
body.theme-red .mission-content {
  background-image: none;
}

.ab-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.ab-wrapper-container {
  width: 1440px;
  height: auto;
  border-radius: 12px;
  display: flex;
  align-items: center;
  margin: 50px 100px;
  position: relative;
}

/* Left content */
.abt-content {
  margin-top: 160px;
  height: auto;
  background-color: var(--blue-bg);
  width: 100%;
  display: flex;
  border-radius: 12px;
}

.abt-content {
  background-image:
    url("../../assets/images/Ellipse-blur.png"),
    url("../../assets/images/elips-top-blur.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 100% 100%;
}
.ab-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(70px);
}

.ab-card {
  width: 630px;
  background: var(--standerd-white);
  padding: 34px;
  border-radius: 8px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.18);
  border: 1px solid var(--blue-border);
  display: flex;
  gap: 24px;
  transform: translateY(-130px);
}

.ab-card-icon img {
  width: 80px;
  height: auto;
  background: #0a2fb8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ab-card-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

.ab-card-content p {
  font-size: 1rem;
  line-height: 34px;
}

/* Right image */
.ab-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-right: 75px;
  align-items: center;
}

/* Responsive (only for < 768px) */
@media (max-width: 1280px) {
  .ab-wrapper-container {
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 50px 0;
    margin: 0;
    gap: 24px;
  }

  .abt-content {
    display: flex;
    flex-direction: column;
  }

  .ab-content {
    display: flex;
    flex-direction: column;
    justify-content: end;
    transform: none;
  }
  .ab-card {
    width: 90%;
  }
  .ab-image {
    display: flex;
    justify-content: center;
    padding-right: 0;
    padding-bottom: 20px;
    margin-top: -100px;
  }
  .ab-card-content p {
    font-size: 1.2rem;
  }
}

@media (max-width: 680px) {
  .ab-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 18px 14px;
    gap: 18px;
  }
  .ab-card-content {
    text-align: center;
  }
  .ab-card-content h3 {
    margin-bottom: 12px;
  }
  .ab-card-content p {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .ab-card {
    width: 100%;
    max-width: 327px;
    transform: translateY(-480px);
  }
  .abt-content {
    margin-top: 480px;
  }
  .ab-image {
    margin-top: -450px;
  }
  .ab-card-content h3 {
    font-size: 20px;
  }
  .ab-card-content p {
    font-size: 1.3334rem;
  }
}

/* Our Mission Section */

.our-mission {
  width: 100%;
  display: flex;
  justify-content: center;
}

.our-mission-wrapper {
  width: 1440px;
  height: 521px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  margin: 50px 100px;
  position: relative;
}

/* Mission content wrapper */
.mission-content {
  margin-top: 160px;
  height: 356px;
  background-color: var(--blue-bg);
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-radius: 12px;
}

.mission-content {
  background-image:
    url("../../assets/images/Ellipse-blur.png"),
    url("../../assets/images/elips-top-blur.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 100% 100%;
}
/* Left image - opposite of Who We Are */
.mission-image {
  display: flex;
  justify-content: flex-start;
  padding-left: 120px;
  align-items: center;
}

/* Right content - opposite of Who We Are */
.mission-card-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transform: translateX(-70px);
}

.mission-card {
  width: 630px;
  background: var(--standerd-white);
  padding: 34px;
  border-radius: 8px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.18);
  border: 1px solid var(--blue-border);
  display: flex;
  gap: 24px;
  transform: translateY(-130px);
}

.mission-card-icon img {
  width: 80px;
  height: auto;
  background: #0a2fb8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mission-card-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

.mission-card-content p {
  font-size: 1rem;
  line-height: 34px;
}

/* Responsive for Our Mission */

@media (max-width: 1280px) {
  .our-mission-wrapper {
    padding-bottom: 50px;
    padding-top: 0;
    margin: 0;
    height: auto;
  }
  .mission-card-wrapper {
    display: flex;
    justify-content: center;
    transform: none;
  }
  .mission-content {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }

  .mission-card {
    width: 90%;
    transform: translateY(-120px);
  }

  .mission-image {
    display: flex;
    justify-content: center;
    padding-left: 0;
    padding-bottom: 20px;
    margin-top: -100px;
  }
  .mission-card-content p {
    font-size: 1.2rem;
  }
}

@media (max-width: 680px) {
  .mission-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 18px 14px;
    gap: 18px;
  }
  .mission-card-content {
    text-align: center;
  }
  .mission-card-content h3 {
    margin-bottom: 12px;
  }
  .mission-card-content p {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .mission-card-content p {
    font-size: 1.3334rem;
  }
  .mission-card {
    width: 100%;
    max-width: 327px;
    transform: translateY(-400px);
  }
  .mission-content {
    margin-top: 400px;
  }
  .mission-image {
    margin-top: -370px;
  }
}
