/* ===== GLOBAL STYLES ===== */
* {
  font-family: "Open Sans", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

/* modal */

.modal-content {
  padding: 30px;
  margin-inline: auto;
  width: 70%;
}

.modal-body .form-control:focus {
  box-shadow: none;
}

.modal-body .form-control::placeholder {
  color: #9fa0a0;
  font-size: 14px;
}

.modal-title {
  color: #6fabff;
}

/* hero-section */

.ksa-hero {
  position: relative;
  /* height: 100vh; */
  background: #003681;
  overflow: hidden;
}

/* RIGHT SIDE IMAGE */
.ksa-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background-image: url("../images/ksa-banner.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: rotateY(180deg);
}

/* DARK OVERLAY */
.ksa-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background: #00368199;
  z-index: 2;
}

/* CONTENT */
.ksa-hero-content {
  position: relative;
  z-index: 3;
  width: 60%;
  padding-block: 170px 80px;
  color: #fff;
  text-align: center;
}

.ksa-eyebrow {
  color: #6fabff;
  font-size: 42px;
  line-height: 42px;
  margin-bottom: 16px;
  display: block;
}

.ksa-title {
  font-size: 62px;
  line-height: 72px;
  font-weight: 700;
  /* line-height: 1.15; */
  margin-bottom: 48px;
}

.connect-btn {
  background: #ffffff;
  color: #6fabff;
  padding: 20px 60px;
  border-radius: 100px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.5s ease;
}

.connect-btn.yellow:hover {
  background-color: #6fabff;
  color: #fff;
  border: 1px solid #6fabff;
}

.connect-btn.green {
  background-color: #6fabff;
  border: 1px solid transparent;
  color: #fff;
}

.connect-btn.green:hover {
  background-color: #ffffff;
  color: #6fabff;
  border: 1px solid #6fabff;
}

/* Feature and Benefits */

.ksa-features {
  padding: 64px 0;
  background: #ffffff;
}

.ksa-features-intro {
  max-width: 80%;
  margin-inline: auto;
  margin-bottom: 50px;
  padding-inline: 28px;
}

.ksa-features-intro p {
  font-size: 17px;
  color: #000000;
}

.ksa-features-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 60px;
  color: #003681;
}

/* CARD */
.ksa-feature-card {
  display: flex;
  column-gap: 30px;
  align-items: center;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s ease;
}

.ksa-feature-card.pink:hover {
  box-shadow:
    -6px 0 0 #ff0060,
    /* LEFT RED STRIP */ 0 10px 30px rgba(0, 0, 0, 0.08);
}
.ksa-feature-card.yellow:hover {
  box-shadow:
    -6px 0 0 #f7cb00,
    /* LEFT RED STRIP */ 0 10px 30px rgba(0, 0, 0, 0.08);
}
.ksa-feature-card.blue:hover {
  box-shadow:
    -6px 0 0 #007fcc,
    /* LEFT RED STRIP */ 0 10px 30px rgba(0, 0, 0, 0.08);
}
.ksa-feature-card.green:hover {
  box-shadow:
    -6px 0 0 #26a593,
    /* LEFT RED STRIP */ 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ksa-feature-icon {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
}

.ksa-feature-icon svg {
  width: 100%;
  height: 100%;
}

.ksa-feature-heading {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #003681;
}

.ksa-feature-text {
  font-size: 16px;
  color: #000000;
  padding-right: 7px;
}

/* ICON PLACEHOLDER */
/* .ksa-feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  border-radius: 10px;
} */

/* BACKGROUNDS */
.ksa-feature-card.pink {
  background: #fff1f4;
}

.ksa-feature-card.yellow {
  background: #fff8e6;
}

.ksa-feature-card.blue {
  background: #eef7ff;
}

.ksa-feature-card.green {
  background: #b1fbe7;
}

/* ICON COLORS */
.ksa-feature-icon svg.pink {
  fill: #ff0060;
}

.ksa-feature-icon svg.yellow {
  fill: #f7cb00;
}

.ksa-feature-icon svg.blue {
  fill: #007fcc;
}

.ksa-feature-icon svg.green {
  fill: #26a593;
}

/* CTA */
.ksa-features-cta-text {
  margin-block: 60px 20px;

  font-size: 17px;
}

/* ksa-trust */

.ksa-trust-row {
  align-items: stretch;
}

.ksa-trust-content {
  height: 100%;
  display: flex;
  padding: 0 20px;
  flex-direction: column;
  justify-content: space-between;
}

.ksa-trust {
  padding: 100px 0;
  background: #ffffff;
}

/* HEADER */
.ksa-trust-header {
  max-width: 80%;
  margin: 0 auto 80px;
}

.ksa-trust-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  color: #003681;
}

.ksa-trust-subtitle {
  font-size: 22px;
  color: #000000;
}

/* ITEMS */
.ksa-trust-item {
  text-align: center;
}

.ksa-trust-divider {
  margin-block: 35px;
  width: 100%;
  height: 1px;
  background-color: #000;
}

.ksa-trust-item-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #003681;
}

.ksa-trust-item-text {
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  display: inline-block;
  padding-inline: 10px;
}

.ksa-trust-item-left .ksa-trust-line {
  margin-left: auto;
}

/* IMAGE */
.ksa-trust-image img {
  max-width: 100%;
  height: auto;
}

/* ksa-process */
.ksa-process-section {
  background-color: #003681;
  padding: 80px 0;
  color: #ffffff;
}

.ksa-process-intro h2 {
  padding-right: 45px;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
}

.ksa-process-intro p {
  margin-top: 20px;
  font-size: 17px;
}

/* Steps */
.ksa-process-steps {
  display: flex;
  column-gap: 10px;
  justify-content: start;
}
.ksa-process-step {
  width: 30%;
  position: relative;
  padding: 18px;
}

.ksa-process-step h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 10px;
  position: relative;
}

.ksa-process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 60%;
  height: 1px;
  background-color: #ffffff;
}

.ksa-process-step p {
  font-size: 16px;
  line-height: 1.6;
}

/* Arrow */

.ksa-process-arrow {
  align-self: center;
}
.ksa-process-arrow svg {
  /* position: absolute;
  left: -30px;
  top: 20px; */
  width: 20px;
  fill: #ffffff;
}

/* form-section */

.form-section {
  padding: 96px 0px;
}

.form-detail h2 {
  font-size: 42px;
  line-height: 55px;
  font-weight: 600;
  text-align: center;
  color: #003681;
}

.form-detail p {
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
  margin: 0;
}

.form {
  margin-top: 64px;
}

.form .form-control {
  border-radius: 3px;
  border: 1px solid #6c6c6c;
  font-size: 15px;
  padding: 12px 24px;
}

.form textarea.form-control {
  height: auto;
}

.form .form-control::placeholder {
  color: #8a8a8a;
}

.form .form-control:focus {
  box-shadow: none;
}

.btn-submit {
  background-color: #6fabff;
  border: 1px solid transparent;
  color: #fff;
  padding: 12px 40px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.5s ease;
}

.btn-submit:hover {
  background-color: #fff;
  color: #6fabff;
  border: 1px solid #6fabff;
}

/* automation-css */
/* hero-section */

.automation-hero .ksa-hero-content {
  width: 62%;
}

.automation-hero::before {
  background-image: url("../images/automation-hero.png");
}

/* Digitize Section */

.digitize-section {
  padding-block: 64px;
}

/* Top paragraph */
.digitize-top-text {
  font-size: 17px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Title */
.digitize-title {
  font-size: 42px;
  font-weight: 500;
  color: #003681;
}

.digitize-title span {
  font-weight: 700;
}

/* Image */
.digitize-img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.digitize-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */

.digitize-content {
  padding-inline: 28px;
}
.digitize-content h5 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.digitize-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* workflow-section */

.workflow-section {
  background: #00368112;
  padding-block: 64px;
}

.workflow__title {
  font-size: 42px;
  font-weight: 500;
  color: #003681;
}
.workflow__title span {
  font-weight: 700;
}

.workflow__image-wrap {
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
}
.workflow__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workflow-content {
  padding-inline: 28px;
}

.workflow__heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.workflow__text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* benefit-section */
.automation-benefit {
  background-color: #003681;
  padding-block: 64px;
  color: #ffffff;
}

/* Heading */
.automation-benefit__subtitle {
  font-size: 18px;

  margin-bottom: 10px;
}

.automation-benefit__title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

/* Items */
.automation-benefit__item {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  align-items: center;
}

.automation-benefit__icon {
  width: 50px;
  height: 50px;
}

.automation-benefit__icon svg {
  width: 100%;
  height: 100%;
  fill: #f8f812;
}

.automation-benefit__heading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0px;
}

.automation-benefit__text {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .automation-benefit__title {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .automation-benefit__title {
    font-size: 26px;
  }

  .automation-benefit__icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
}

/* RESPONSIVE */
@media (max-width: 1191.98px) {
  /* ksa-process */

  .ksa-process-intro {
    margin-bottom: 50px;
  }

  .ksa-process-step {
    padding: 30px 0;
  }

  .ksa-process-step::before {
    left: 0;
  }

  .ksa-process-steps {
    column-gap: 20px;
  }
}

@media (max-width: 991.98px) {
  /* modal */

  .modal-content {
    width: 100%;
  }
  /* hero-section */

  .ksa-hero::before {
    transform: rotateY(0);
  }

  .ksa-hero::before,
  .ksa-hero::after {
    width: 100%;
  }

  .ksa-hero-content {
    width: 100%;
    padding-block: 160px 80px;
    text-align: center;
  }

  /* feature and Benefits */

  .ksa-feature-card {
    flex-direction: column;
    padding: 20px;
    row-gap: 20px;
    align-items: start;
  }

  /* ksa-trust */

  .ksa-trust-header {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .ksa-trust-divider {
    margin-block: 40px;
  }

  .ksa-trust-content {
    padding: 40px 0px;
  }

  /* automation-css */

  /* Digitize Section */
  .digitize-title {
    font-size: 28px;
  }

  .digitize-img-wrapper {
    width: 300px;
    height: 300px;
  }

  /* workflow-section */

  .workflow__image-wrap {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 768.98px) {
  /* hero-section */

  .ksa-features-intro {
    max-width: 100%;
  }

  .ksa-hero::before {
    transform: rotateY(0);
  }

  .ksa-eyebrow {
    font-size: 24px;
    line-height: 24px;
  }

  .ksa-hero::before,
  .ksa-hero::after {
    width: 100%;
  }

  .ksa-hero-content {
    width: 100%;
    padding-block: 160px 80px;
    text-align: center;
  }

  .ksa-title {
    font-size: 38px;
    line-height: 42px;
    margin-bottom: 28px;
  }

  /* feature and Benefits */

  .ksa-features {
    padding: 70px 10px;
  }

  .ksa-feature-card {
    flex-direction: column;
    padding: 20px;
    row-gap: 20px;
    align-items: start;
  }

  .ksa-feature-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
  }

  .ksa-features-intro {
    padding: 0px;
  }

  .ksa-features-title {
    font-size: 28px;
  }

  /* ksa-trust */

  .ksa-trust-header {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .ksa-trust-title {
    font-size: 32px;
  }

  .ksa-trust-subtitle {
    font-size: 20px;
  }

  .ksa-trust-item-title {
    font-size: 20px;
  }

  .ksa-trust-content {
    padding: 40px 0px;
  }

  .ksa-trust-divider {
    margin-block: 40px;
  }

  /* ksa-process */

  .ksa-process-intro {
    text-align: center;
    margin-bottom: 50px;
  }

  .ksa-process-intro h2 {
    font-size: 32px;
  }

  .ksa-process-intro p {
    font-size: 16px;
  }

  .ksa-process-steps {
    flex-wrap: wrap;
  }

  .ksa-process-step {
    width: 100%;
    position: relative;
    padding: 30px 0;
  }

  .ksa-process-step::before {
    width: 100%;
    left: 0;
  }

  /* form-section */

  .form-detail h2 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
  }

  .form-detail p {
    font-size: 16px;
    line-height: 24px;
  }

  .form {
    padding: 0px 10px;
  }

  /* automation-css */

  /* hero-section */

  .automation-hero .ksa-hero-content {
    width: 100%;
  }

  /* Digitize Section */

  .digitize-content {
    padding: 28px 0 0;
  }

  .digitize-content h5 {
    font-size: 18px;
  }

  .digitize-title {
    font-size: 28px;
  }

  .digitize-top-text {
    font-size: 16px;
  }

  /* workflow-section */

  .workflow-content {
    padding: 28px 0 0;
  }

  .workflow-content h5 {
    font-size: 18px;
  }

  .workflow__title {
    font-size: 28px;
  }
  .workflow-top-text {
    font-size: 16px;
  }

  /* benefit-section */

  .automation-benefit__text {
    font-size: 16px;
  }
}
