@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

:root {
  --main-green: #1b786f;
  --ink: #0f1f47;
}

html {
  scroll-padding: 10%;
}

a {
  text-decoration: none;
  transition: color 500ms ease;

  i {
    transition: color 500ms ease;
  }
}

a:hover {
  color: #000 !important;

  i {
    color: #000 !important;
  }
}

.btn-theme1 {
  background-color: var(--main-green);
  color: #fff;
  padding-left: 2rem;
  padding-right: 2rem;
  transition: all 300ms ease;
}

.btn-theme1:hover {
  background-color: var(--main-green);
  color: #fff !important;
  opacity: 0.8;
}

body {
  font-family: "Arimo", sans-serif;
}

.navbar {
  padding-top: 0;
  padding-bottom: 0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  background-color: #fff;

  .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    width: 30%;
  }

  .nav-links-cont {
    display: none;

    a {
      text-align: center;
      font-size: 0.9rem;
      padding-top: 0.5rem;
      color: var(--main-green);
      text-decoration: none;

      .d-md-block {
        width: 75px;
        margin: 0 auto;
      }

      /* img {
                display: block;
                width: 40%;
                margin: 0 auto;
            } */
    }

    .dc-icon-itm {
      cursor: pointer;
    }

    a.active {
      border-bottom: 3px solid var(--main-green);
    }
  }

  .contact-links-cont {
    display: flex;
    flex-direction: row-end;
    gap: 2rem;
    align-items: center;

    .hotline-link {
      .hotline {
        display: flex;
        gap: 1rem;
        align-items: center;
        color: var(--main-green);
      }

      i {
        font-size: 1.2rem;
      }

      .hl-txt {
        display: none;

        h6 {
          margin-bottom: 0;
          font-size: 0.9rem;
        }

        font-weight: bold;
      }
    }

    .search-btn {
      background-color: var(--main-green);
      color: #fff;
      padding: 0.3rem 0.5rem;
      border-radius: 0.4rem;
      border: 1px solid var(--main-green);
      transition: all ease 300ms;
      margin: 0 0.5rem;
    }

    .search-btn:hover {
      color: #fff;
      opacity: 0.8;
    }
  }

  .nav-link {
    color: var(--main-green);
    font-weight: bold;
  }

  .nav-link.active {
    color: #000;
  }
}

.download-btn {
  background-color: var(--main-green);
  color: #fff !important;
  padding: 0.3rem 0.5rem;
  border-radius: 0.4rem;
  border: 1px solid var(--main-green);
  transition: all ease 300ms;
  width: fit-content;
  font-size: 1rem !important;
  margin-top: 1rem;

  i {
    color: #fff !important;
    font-size: 1.3rem !important;
  }
}

.download-btn:hover {
  color: #fff !important;

  i {
    color: #fff !important;
  }

  opacity: 0.8 !important;
  background-color: var(--main-green) !important;
  /* background-color: #1b9286; */
}

.hero-sec {
  height: 60vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;

  .hero-vid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
  }

  .title-cont {
    position: absolute;
    bottom: 0%;
    left: 5%;
    text-transform: uppercase;
    padding: 2% 0;

    img {
      width: 70%;
      margin: 2rem auto 2rem auto;
    }

    /* h1 {
            color: #000;
            font-size: 4rem;
            line-height: 3.5rem;
            margin-bottom: 0rem;
            font-weight: 900;
        }

        h6 {
            color: #000;
            font-size: 1.5rem;
            letter-spacing: 0.62rem;
            font-weight: 600;
            margin-bottom: 2rem;
        } */

    a {
      display: flex;
      flex-direction: column-reverse;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-weight: bold;
      color: #737373;
      font-size: 1.3rem;
      margin-bottom: 2rem;

      i {
        color: var(--main-green);
        line-height: normal;
        font-size: 1.8rem;
      }
    }
  }
}

.hlights-of-the-year-sec,
.why-learnmore-vid-sec {
  background-image: url(hlights-of-the-year-bg.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  height: 50vh;

  .hoty-vid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .image-cont {
    display: flex;
    align-items: center;
    justify-content: center;

    img {
      position: relative;
      z-index: 2;
      width: 60%;
    }
  }

  .about-archerfish-cont {
    position: relative;

    h2 {
      color: var(--main-green);
      font-weight: bolder;
      text-align: center;
      margin-bottom: 2rem;
    }

    .why-learnmore-cont {
      .why-learnmore-itm-cont {
        margin-bottom: 1rem;

        .why-archfish,
        .learn-archfish {
          border: 1px solid #dbae9c;
          position: relative;
          border-radius: 1rem;
          overflow: hidden;
          cursor: pointer;
          transition: transform 0.3s ease, box-shadow 0.3s ease;

          &:hover {
            transform: scale(1.02);
            box-shadow: 0 0 6px 1px #dbae9c;

            .bi-play-circle-fill {
              opacity: 0.8;
            }
          }

          h5 {
            position: absolute;
            top: 0.75rem;
            left: 0.75rem;
            margin: 0;
            color: var(--main-green);
            font-weight: bold;
          }

          .bi-play-circle-fill {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 2rem;
            color: var(--main-green);
          }
        }
      }
    }
  }

  .bi-play-circle-fill {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: #1b786f8c;
    cursor: pointer;
    transition: opacity 0.2s;
    z-index: 999;

    &:hover {
      opacity: 0.8;
    }
  }
}

.why-learnmore-vid-sec {
  display: flex;
  justify-content: center;
  height: 70vh;
  align-items: center;

  .about-archerfish-cont {
    .why-learnmore-cont {
      .why-learnmore-itm-cont {
        width: fit-content;
      }
    }
  }
}

#videoModal,
#whyArchfishModal,
#learnArchfishModal,
#intPresModal,
#bSvideoItmModal,
#susVideoItmModal,
#ceoVideoModal,
#archerfishVideoModal {
  .modal-content {
    background: transparent;
    border: none;
  }

  .btn-close {
    position: absolute;
    top: -2rem;
    right: 0;
    filter: invert(1);
    z-index: 1;
  }
}

.ratio-9x16 {
  --bs-aspect-ratio: 177.77777778%;
}

.navigating-ar-sec {
  padding: 3rem 0 0 0;
  text-align: center;

  .vid-desk {
    inset: 0;
    width: 80%;
    height: 50%;
  }

  .sec-intro {
    margin-bottom: 1rem;

    h3 {
      color: var(--main-green);
      font-weight: bold;
      margin-bottom: 1rem;
    }

    p {
      width: 100%;
      margin: 0 auto 1.5rem auto;
    }
  }

  .navigating-ar-row {
    .navigating-ar-col {
      margin-bottom: 2rem;

      p {
        width: 100%;
      }
    }
  }
}

.three-addons-sec {
  padding: 3rem 0 0 0;

  .three-addon-itm-cont {
    margin-bottom: 2rem;

    .addon-itm {
      position: relative;
      background-color: #f1f8f6;
      border: 1px solid #b2d2ce;
      border-radius: 1rem;
      height: 275px;
      overflow: hidden;

      h5 {
        color: var(--main-green);
        text-align: centerF;
        width: 50%;
        text-align: center;
        font-weight: bold;
        position: absolute;
        right: 3%;
        top: 5%;
      }

      a {
        position: absolute;
        right: 3%;
        bottom: 5%;
      }

      video {
        position: absolute;
        bottom: -40%;
        left: 50%;
        width: 80%;
        height: auto;
        border-radius: 0.5rem;
      }
    }

    .addon-itm.itm1 {
      video {
        transform: translate(-75%, -50%);
      }
    }

    .addon-itm.itm2 {
      video {
        transform: translate(-65%, -50%);
      }
    }

    .addon-itm.itm3 {
      video {
        transform: translate(-65%, -55%);
      }
    }
  }
}

.leadership-sec {
  padding: 2rem 0 0 0;
  /* background-image: url("img/about-us-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */

  .content-col {
    display: flex;
    justify-content: center;
    align-items: start;

    .content-cont {
      padding-top: 2rem;
      margin-bottom: 2rem;
      text-align: center;

      h2 {
        color: var(--main-green);
        font-size: 2.5rem;
        line-height: 2.5rem;
        font-weight: bold;
        text-transform: uppercase;
      }

      a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-weight: bold;
        color: #737373;
        text-transform: uppercase;
        margin-bottom: 20px;

        i {
          color: var(--main-green);
          line-height: normal;
          font-size: 1.7rem;
        }
      }
    }
  }

  .leader-cont {
    margin-top: 0;

    .chairperson-col,
    .ceo-col {
      border: 1rem solid #ffffff8a;
      position: relative;
      padding: 0;
      margin-bottom: 2rem;

      .img-cont {
        width: 100%;

        img {
          margin-bottom: 1rem;
        }
      }

      h5 {
        color: #737373;
        text-transform: uppercase;
        font-weight: bold;
        margin-bottom: 0;
        line-height: normal;
        /* width: 65%; */
      }

      .leader-name {
        h5 {
          color: #737373;
          text-transform: uppercase;
          font-weight: bold;
          margin-bottom: 0;
          line-height: normal;
          /* width: 65%; */
        }

        P {
          height: 35%;
        }

        small {
          color: #737373;
          text-transform: uppercase;
          line-height: normal;
          display: block;
        }
      }

      .downloads-cont {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0;
        width: 100%;

        .accordion {
          display: flex;
          flex-direction: column;
          gap: 0.5rem;
          margin-bottom: 3rem;
        }

        .accordion-item {
          border: none;
          border-radius: 2rem !important;
          overflow: hidden;
          background-color: var(--main-green);
        }

        .accordion-button {
          background-color: #749f88;
          color: #fff;
          font-weight: 500;
          border-radius: 2rem !important;
          padding: 0.75rem 1.25rem;
          box-shadow: none;

          &::after {
            filter: brightness(0) invert(1);
          }

          &:not(.collapsed) {
            background-color: var(--main-green);
            color: #fff;
            border-radius: 2rem 2rem 0 0 !important;
            box-shadow: none;
          }

          &:focus {
            box-shadow: none;
          }
        }

        .accordion-collapse {
          background-color: var(--main-green);
        }

        .accordion-body {
          display: flex;
          flex-direction: column;
          gap: 0.4rem;
          padding: 0.5rem 1.25rem 1rem;

          a {
            color: #fff;
            font-size: 0.9rem;
            text-decoration: none;
            opacity: 0.85;
            transition: opacity 0.2s;

            &:hover {
              opacity: 1;
              color: #fff !important;
              cursor: pointer;
            }
          }
        }
      }
    }

    .ceo-col {
      .downloads-cont {
        h5 {
          text-align: right;
          margin-left: auto;
        }

        P {
          text-align: right;
        }

        small {
          text-align: right;
        }
      }
    }
  }
}

.strategy-resources-sec {
  /* background-image: url("img/strategy-res-bg.jpg");
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat; */
  padding: 10% 0 20% 0;
  position: relative;

  video {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
  }

  .content-col {
    text-align: center;
    background-color: #ffffffc4;
    padding: 5%;

    h2 {
      color: var(--main-green);
      font-size: 2.5rem;
      line-height: 2.5rem;
      font-weight: bold;
      text-transform: uppercase;
    }

    a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-weight: bold;
      color: #737373;
      text-transform: uppercase;

      i {
        color: var(--main-green);
        line-height: normal;
        font-size: 1.7rem;
      }
    }
  }
}

.intrnal-perspective-sec {
  padding: 4rem 0;

  h2 {
    text-align: center;
    color: var(--main-green);
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 2rem;
  }

  .int-pres-itm {
    cursor: pointer;
    text-align: center;

    .thumb-wrap {
      position: relative;
      border-radius: 1rem;
      overflow: hidden;
      margin-bottom: 0.75rem;

      img {
        display: block;
        width: 100%;
        object-fit: cover;
      }

      .play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 3rem;
        height: 3rem;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.2s;

        i {
          font-size: 1.2rem;
          color: #333;
          margin-left: 3px;
        }
      }
    }

    &:hover .play-btn {
      opacity: 0.8;
    }

    p {
      font-size: 0.85rem;
      color: #444;
      margin: 0;
    }
  }

  .owl-nav {
    button.owl-prev,
    button.owl-next {
      position: absolute;
      top: 40%;
      transform: translateY(-50%);
      background: none !important;
      font-size: 1.5rem;
      color: #888;

      &:hover {
        color: #333;
      }
    }

    button.owl-prev {
      left: -1.5rem;
    }

    button.owl-next {
      right: -1.5rem;
    }
  }

  .owl-carousel {
    position: relative;
  }
}

.val-creation-model-sec {
  padding: 3rem 0;
  /* background-image: url("img/val-creation-model-bg.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; */

  h2 {
    text-align: center;
    color: var(--main-green);
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 2rem;
  }

  p {
    text-align: center;
  }
}

.stakeholder-eng-sec {
  /* background-image: url("img/stakeholder-eng-bg.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat; */
  padding: 5% 0 20% 0;
  text-align: center;
  position: relative;

  video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .info-cont {
    background-color: #ffffff8a;
    padding: 5%;

    h2 {
      color: var(--main-green);
      font-size: 2.5rem;
      line-height: 2.5rem;
      font-weight: bold;
      text-transform: uppercase;
    }

    p {
      line-height: 1.2rem;
    }

    a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-weight: bold;
      color: #737373;
      text-transform: uppercase;

      i {
        color: var(--main-green);
        line-height: normal;
        font-size: 1.7rem;
      }
    }
  }
}

.business-reports-sec {
  padding: 3rem 0;

  .intro-cont {
    h2 {
      text-align: center;
      color: var(--main-green);
      text-transform: uppercase;
      font-weight: bold;
      margin-bottom: 1rem;
    }

    p {
      text-align: center;
    }

    a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-weight: bold;
      color: #737373;
      text-transform: uppercase;

      i {
        color: var(--main-green);
        line-height: normal;
        font-size: 1.7rem;
      }
    }
  }
}

.video-itms-cont {
  gap: 0;

  .col-md-3 {
    padding: 0.6rem;
  }

  .video-itm,
  .bs-video-itm {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #c8d9d6;
    border-radius: 1rem;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 1.2rem;
    cursor: pointer;
    transition: opacity 0.2s;

    i {
      font-size: 1.6rem;
      color: #5a7a76;
    }

    &:hover {
      opacity: 0.85;
    }

    .vitm1 {
      /* background-image: url(); */
    }
  }
}

.cap-report-operating-sec {
  /* background-image: url("img/cap-rport-op-sec-bg.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat; */
  position: relative;
  padding: 3rem 0;

  video {
    height: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    object-fit: contain;
    z-index: -1;
    transform: translate(-50%, -50%);
  }

  .cro-itm {
    margin-bottom: 2rem;

    h2 {
      text-align: center;
      color: var(--main-green);
      text-transform: uppercase;
      font-weight: bold;
      margin-bottom: 1rem;
    }

    p {
      text-align: center;
    }

    a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-weight: bold;
      color: #737373;
      text-transform: uppercase;

      i {
        color: var(--main-green);
        line-height: normal;
        font-size: 1.7rem;
      }
    }
  }
}

.risk-man-sec {
  background-image: url("img/risk-managemenet-bg.jpg");
  background-size: cover;

  video {
    height: 100%;
    width: 100%;
  }

  .fimg-cont {
    padding-left: 0;

    .fimg-itm {
      width: 100%;
    }
  }

  .info-cont {
    display: flex;
    align-items: center;

    .info-itm {
      width: 100%;
      display: flex;
      flex-direction: column;

      h2 {
        text-align: center;
        color: var(--main-green);
        text-transform: uppercase;
        font-weight: bold;
        margin-bottom: 1rem;
      }

      p {
        text-align: center;
      }

      a {
        text-align: center;
        text-decoration: none;
        font-weight: bold;
        color: #737373;
        text-transform: uppercase;

        i {
          color: var(--main-green);
          line-height: normal;
          font-size: 1.7rem;
          display: block;
        }
      }
    }
  }
}

.our-sustain-sec {
  padding: 3rem 0;

  .intro-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    h2 {
      text-align: center;
      color: var(--main-green);
      text-transform: uppercase;
      font-weight: bold;
      margin-bottom: 1rem;
    }

    p {
      text-align: center;
    }

    a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-weight: bold;
      color: #737373;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
      text-align: center;

      i {
        color: var(--main-green);
        line-height: normal;
        font-size: 1.7rem;
      }
    }
  }

  .video-itms-cont {
    gap: 0;

    .col-md-3 {
      padding: 0.6rem;
    }

    .suSvideo-itm {
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      background-color: #c8d9d6;
      border-radius: 1rem;
      aspect-ratio: 16 / 9;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-left: 1.2rem;
      cursor: pointer;
      transition: opacity 0.2s;

      i {
        font-size: 1.6rem;
        color: #5a7a76;
      }

      &:hover {
        opacity: 0.85;
      }

      .vitm1 {
        background-image: url();
      }
    }
  }
}

.our-performance-sec {
  /* background-image: url(img/our-performance-sec-bg.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat; */
  padding: 5% 0;
  position: relative;

  video {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: -1;
  }

  background-color: #ffffffc4;

  .info-cont {
    padding: 5%;
    display: flex;
    flex-direction: column;

    h2 {
      text-align: center;
      color: var(--main-green);
      text-transform: uppercase;
      font-weight: bold;
      margin-bottom: 1rem;
    }

    p {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    h4 {
      text-align: right;
      width: 100%;
      color: var(--main-green);
      text-transform: uppercase;
      font-weight: bold;
      margin: 2rem 0 1rem auto;
    }

    a {
      display: flex;
      flex-direction: row;
      gap: 0.8rem;
      align-items: center;
      justify-content: end;
      text-decoration: none;
      font-weight: bold;
      color: #737373;
      text-transform: uppercase;
      margin-bottom: 0.5rem;

      i {
        color: var(--main-green);
        line-height: normal;
        font-size: 1.2rem;
      }
    }

    .main-dl-link {
      flex-direction: column;
    }
  }
}

.esg-highlights-sec,
.fin-highlights-sec {
  padding: 5% 0;

  h2 {
    color: var(--main-green);
    font-size: 2.5rem;
    line-height: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;

    margin-bottom: 2rem;
  }

  .esg-hi-itm-cont {
    .title {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--main-green);
      margin-bottom: 0;
      text-transform: uppercase;
      font-weight: 600;
      font-size: 1.8rem;

      img {
        width: 15%;
      }
    }

    .esg-hi-itm {
      padding: 1rem 0;
      border-bottom: 1px solid black;
      margin-bottom: 1rem;

      p {
        margin-bottom: 0;
        font-size: 1.2rem;

        &:last-child {
          font-size: 0.9rem;
        }
      }

      h6 {
        /* font-size: 1.8rem; */
        margin: 0;
        font-weight: 600;

        span {
          color: #829073;
          font-size: 2.3rem;
          font-weight: normal;
        }
      }

      &:last-child {
        border-bottom: 0px solid black;
      }
    }
  }

  .esg-hi-itm-cont.brown {
    .esg-hi-itm {
      h6 {
        span {
          color: #a2997e;
        }
      }
    }
  }

  .esg-hi-itm-cont.green {
    .esg-hi-itm {
      h6 {
        span {
          color: #749f88;
        }
      }
    }
  }

  .esg-hi-itm-cont.lblue {
    .esg-hi-itm {
      h6 {
        span {
          color: #81bfd1;
        }
      }
    }
  }
}

.fin-highlights-sec {
  /* padding: 1% 0 35% 0; */
  margin-bottom: 0;

  .esg-hi-itm-cont {
    .esg-hi-itm {
      h6 {
        span {
          color: #d67e61;
        }
      }
    }
  }
}

.bar-chart-sec {
  background-color: #e4f9f5;
  padding: 5% 0;

  h2 {
    color: var(--main-green);
    font-size: 2.5rem;
    line-height: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
  }
}

/* Chamath - Start */

.ai-assistant-sec,
.precision-quest-sec {
  background-image: url("img/ai-assistant-bg.jpg");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.ai-assistant-sec {
  background-image: none;
  .vid-cont {
    display: flex;
    align-items: center;
    position: relative;

    padding: 2rem;

    .vid-itm {
      video {
        position: relative;
        inset: 0;
        width: 100%;
        height: 100%;
      }
    }
  }

  .text-cont {
    h2 {
      color: var(--main-green);
      font-weight: 600;
      text-align: center;
      margin-bottom: 2rem;
    }

    p {
      text-align: center;
    }

    ul {
      li {
        span {
          font-weight: 600;
        }
      }
    }
  }
}

.header-text {
  color: #006b5d;
  font-weight: 600;
}

.phone-mockup {
  position: absolute;
  top: 130px;
  left: 50px;
  max-height: 55vh;
  width: auto;
}

.text-sec {
  position: relative;
  top: -50px;
  left: -100px;
}

.game-panel {
  width: 100%;
  max-width: 350px;
  height: 75vh;
  max-height: 450px;
  min-height: 600px;
  background-color: black;
}

.game-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.our-governance-sec {
  background-image: url("img/our-governance-bg.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 5% 0;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;

  .our-gov-vid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .info-cont {
    position: absolute;
    z-index: 6;
    top: 30%;
    bottom: 30%;
    width: 100%;
    margin-bottom: 0;

    .info-itm {
      display: flex;
      flex-direction: column;

      h2 {
        text-align: center;
        color: var(--main-green);
        text-transform: uppercase;
        font-weight: bold;
        margin-bottom: 1rem;
      }

      p {
        text-align: center;
        margin-bottom: 1rem;
      }

      a {
        display: flex;
        flex-direction: row;
        gap: 0.8rem;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-weight: bold;
        color: #737373;
        text-transform: uppercase;
        margin-bottom: 0.5rem;

        i {
          color: var(--main-green);
          line-height: normal;
          font-size: 1.2rem;
        }
      }
    }
  }
}

.assurances-disclosures-sec {
  padding: 5% 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;

  .info-cont {
    display: flex;
    flex-direction: column;

    h2 {
      text-align: center;
      color: var(--main-green);
      text-transform: uppercase;
      font-weight: bold;
      margin-bottom: 1rem;
    }

    p {
      text-align: center;
      margin-bottom: 1.5rem;
    }
  }
}

.pdf-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-decoration: none;
  margin-bottom: 20px;

  i {
    font-size: 2.5rem;
    color: #d32f2f;
    /* Red PDF icon color */
    line-height: 1;
  }

  p {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.4;
    text-align: left;
  }

  &:hover p {
    color: #333333;
  }
}

.investor-info {
  p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 1rem;
  }

  .investor-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #737373;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;

    i {
      font-size: 1.5rem;
      color: var(--main-green, #4e9a85);
      /* Adjust based on your theme */
    }

    &:hover {
      color: var(--main-green, #4e9a85);
    }
  }
}

.report-sec {
  padding: 5% 0;
  background-color: #ffffff;

  .pdf-card {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    text-decoration: none;
    margin-bottom: 20px;

    i {
      font-size: 2.5rem;
      color: #d32f2f;
      /* Red PDF icon color */
      line-height: 1;
    }

    p {
      font-size: 14px;
      color: #666666;
      margin: 0;
      line-height: 1.4;
      text-align: left;
    }

    &:hover p {
      color: #333333;
    }
  }

  .investor-info {
    p {
      font-size: 18px;
      color: #666666;
      margin-bottom: 1rem;
    }

    .investor-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: bold;
      color: #737373;
      text-decoration: none;
      text-transform: uppercase;
      font-size: 16px;

      i {
        font-size: 1.5rem;
        color: var(--main-green, #4e9a85);
        /* Adjust based on your theme */
      }

      &:hover {
        color: var(--main-green, #4e9a85);
      }
    }
  }

  .bottom-footer-sec {
    p {
      font-size: 12px;
      color: #888888;
      line-height: 1.8;

      a {
        color: #4e9a85;
        text-decoration: underline;

        &:hover {
          color: #4e9a85;
        }
      }
    }
  }
}

footer {
  p {
    a {
      color: var(--main-green);
      text-decoration: underline;
    }
  }
}

/* Chamath - End */

/* ---- Binuka ---- */
.landing-page {
  position: relative;
  height: 100vh;

  video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  .hero-sec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    height: 100vh;

    video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .title-cont {
      position: relative;
      text-align: center;
      left: unset;
      bottom: unset;

      a {
        flex-direction: column;
        margin-top: 3rem;
        font-size: 1.1rem;
      }

      img {
        width: 70%;
        margin: 2rem auto 2rem auto;
      }
    }
  }
}

.download-ar-btn {
  display: flex;
  flex-direction: row-reverse !important;
  align-items: center !important;
  justify-content: start !important;
  text-decoration: none;
  text-align: start;
  font-weight: bold;
  color: #000 !important;
  text-transform: uppercase;
  padding-left: 0 !important;
  font-size: 1rem !important;
  gap: 0.2rem;

  i {
    color: var(--main-green);
    line-height: normal;
    font-size: 1.2rem !important;
    display: block;
    margin-bottom: 0.5rem;
  }
}

.download-ar-btn:hover {
  color: var(--main-green) !important;

  i {
    color: var(--main-green) !important;
  }
}

.category-pick,
.home-category-pick {
  h2 {
    color: var(--main-green);
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }

  .cat-card {
    text-decoration: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--main-green);

    h4 {
      margin-top: 0.5rem;
      font-size: 1.3rem;
    }

    img {
      width: 80%;
    }
  }
}

.home-category-pick {
  margin-top: 3rem;
  display: block;
  margin: 2rem 0;

  .cat-card {
    padding: 1rem;
  }
}

.accessibility-page,
.flipbook-page {
  background-image: url(img/ai-assistant-bg.jpg);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  position: relative;

  .img-cont {
    padding: 2rem;
  }

  .text-cont {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;

    h2 {
      color: var(--main-green);
      font-weight: 600;
      text-align: center;
      margin-bottom: 2rem;
    }

    p {
      text-align: center;
    }
  }
}

.flipbook-page,
.accessibility-page {
  background-image: none;
  position: relative;
  padding-top: 35rem;
  /* padding-bottom: 5rem; */
  /* max-height: 100vh; */
}

.ai-chat-modal {
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    .modal-title {
      text-transform: uppercase;
      color: var(--main-green);
      font-weight: 700;
    }

    img {
      width: 130px;
    }
  }

  .modal-body {
    padding-top: 5rem;
    padding-bottom: 5rem;
    height: 60vh;
    /* Adjust as needed */
    overflow-y: auto;

    .response-box {
      margin-bottom: 1rem;

      .question-box {
        border-radius: 1rem;
        padding: 1rem 2rem;
        background-color: #f0f0f0;
        color: black;
        margin-top: 0.5rem;
        margin-left: 1rem;
        justify-self: end;
      }

      .answer-box {
        border-radius: 1rem;
        padding: 1rem 2rem;
        background-color: var(--main-green);
        color: white;
        margin-top: 1rem;
        margin-right: 1rem;
        justify-self: start;
      }
    }
  }

  .modal-footer {
    display: flex;
    justify-content: center;
    align-items: end;

    .input-cont {
      width: 100%;
      display: flex;
      gap: 1rem;

      input {
        border-radius: 2rem;
        padding: 0.5rem;
        width: 90%;
        font-size: small;
        border: none;
        background-color: #f9fafc;
      }

      input:disabled {
        background-color: #f0f0f0;
        cursor: not-allowed;
      }

      button {
        background-color: #b2d235;
        padding: 0.1rem 0.8rem;
        border: none;
        border-radius: 5rem;
        text-align: center;
      }

      button:disabled {
        background-color: #bdd463;
        cursor: not-allowed;
      }
    }
  }
}

/* Chamath */
.ai-assistant-sec {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 60px;
}

.ai-assistant-sec .text-cont {
  margin-top: 2rem;
}

.precision-quest-sec {
  height: auto;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 60px;

  h2 {
    color: var(--main-green);
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
  }

  .text-sec {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 3rem;

    p {
      text-align: center;
      color: var(--ink);
    }

    ul {
      li {
        color: var(--ink);
        margin-bottom: 0.5rem;
        span {
          font-weight: 600;
        }
      }
    }
  }
}

.game-panel {
  min-height: 60vh;
  max-height: none;
}

@media (max-width: 767px) {
  .ai-assistant-sec {
    height: auto !important;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .ai-assistant-sec .text-cont {
    margin-top: 2rem;
  }

  .precision-quest-sec {
    height: auto !important;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .game-panel {
    min-height: 60vh !important;
    max-height: none !important;
  }

  .precision-quest-sec .row {
    margin-left: 0;
    margin-right: 0;
  }
}

.vid-mob {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 992px) {
  .vid-mob {
    display: none;
  }

  .no-padding-lft {
    padding-left: 0;
  }

  .no-padding-rgt {
    padding-right: 0;
  }

  .navbar {
    .navbar-brand {
      width: 10%;
    }

    .contact-links-cont {
      .hotline-link {
        .hl-txt {
          display: block;
        }
      }
    }

    .nav-links-cont {
      display: flex;
      gap: 2rem;
    }
  }

  .download-ar-btn {
    font-size: 1.2rem !important;
    align-items: center !important;
    text-align: center;
    flex-direction: row !important;

    i {
      font-size: 1.8rem !important;
    }
  }

  .hero-sec {
    height: 100vh;
    margin-bottom: 0rem;

    .hero-vid {
      object-fit: cover;
    }

    .title-cont {
      a {
        flex-direction: row;
        gap: 0.8rem;
        margin-bottom: 0rem;
      }
    }
  }

  .home-category-pick {
    display: none;
  }

  .hlights-of-the-year-sec,
  .why-learnmore-sec {
    height: 100%;

    .about-archerfish-cont {
      height: 100vh;

      h2 {
        width: 40%;
        position: absolute;
        top: 40%;
        left: 50%;
        margin-bottom: 0;
      }

      .why-learnmore-cont {
        position: absolute;
        left: 0;
        bottom: 5%;

        .why-learnmore-itm-cont {
          margin-bottom: 0;
        }
      }
    }

    .bi-play-circle-fill {
      color: var(--main-green);
      top: 50%;
    }
  }

  .navigating-ar-sec {
    padding: 10rem 0;

    .vid-desk {
      width: 80%;
      height: 80%;
    }

    .sec-intro {
      margin-bottom: 0;

      p {
        width: 55%;
      }
    }

    .navigating-ar-row {
      .navigating-ar-col {
        margin-bottom: 0;

        p {
          width: 80%;
          margin: 0 auto 1.5rem auto;
        }
      }
    }
  }

  .three-addons-sec {
    .three-addon-itm-cont {
      margin-bottom: 0rem;

      .addon-itm {
        video {
          top: 50%;
          left: 50%;
          bottom: unset;
        }
      }
    }
  }

  .leadership-sec {
    .title-cont {
      h6 {
        margin-bottom: 0rem;
      }

      a {
        flex-direction: row;
        gap: 0.8rem;
        margin-bottom: 0rem;
      }
    }

    .content-col {
      .content-cont {
        margin-bottom: 0;

        h2 {
          width: 35%;
          margin: 0 auto 2rem auto;
        }

        a {
          flex-direction: row;
          gap: 0.8rem;
        }
      }
    }

    .leader-cont {
      margin-top: -2rem;

      .chairperson-col,
      .ceo-col {
        border: 0rem solid #ffffff8a;
        padding: auto;
        margin-bottom: 0;
        display: flex;

        .img-cont {
          width: 40%;

          img {
            margin-bottom: 0;
          }
        }

        h5 {
          width: 65%;
        }

        .leader-name {
          h5 {
            width: 65%;
          }
        }

        .downloads-cont {
          padding: 2rem;
          width: 60%;
        }

        .desig-cont {
          position: absolute;
          bottom: 1rem;
          padding: unset;
        }
      }

      .chairperson-col {
        .desig-cont {
          right: -60%;
        }
      }

      .ceo-col {
        .desig-cont {
          left: -60%;
        }
      }
    }
  }

  .strategy-resources-sec {
    padding: 8% 0;
    /* background-position: center left;
    background-size: cover; */

    .content-col {
      background-color: transparent;
      padding: unset;

      h2 {
        width: 45%;
        margin: 0 auto 2rem auto;
      }

      a {
        flex-direction: row;
        gap: 0.8rem;
      }
    }
  }

  .intrnal-perspective-sec {
    .int-pres-carousel-cont {
    }
  }

  .stakeholder-eng-sec {
    .info-cont {
      background-color: transparent;
      padding: unset;

      h2 {
        width: 90%;
        margin: 0 auto 2rem auto;
      }

      p {
        width: 55%;
        margin: 0 auto 2rem auto;
      }

      a {
        flex-direction: row;
        gap: 0.8rem;
      }
    }
  }

  .business-reports-sec {
    .intro-cont {
      a {
        flex-direction: row;
        gap: 0.8rem;
      }
    }
  }

  .cap-report-operating-sec {
    video {
      height: 100%;
    }

    .cro-itm-cont {
      margin-bottom: 0;

      .cro-itm {
        a {
          flex-direction: row;
          gap: 0.8rem;
        }
      }

      .coritm1 {
        padding-right: 8%;
      }

      .coritm2 {
        padding-left: 8%;
      }
    }
  }

  .risk-man-sec {
    .fimg-cont {
      .fimg-itm {
        width: 75%;
      }
    }

    .info-cont {
      .info-itm {
        width: 80%;

        a {
          display: flex;
          flex-direction: row;
          gap: 0.8rem;
          align-items: center;
          justify-content: center;
        }
      }
    }
  }

  .our-sustain-sec {
    .intro-cont {
      a {
        flex-direction: row;
        gap: 0.8rem;
      }
    }
  }

  .our-performance-sec {
    background: none;

    .info-cont {
      padding: 0;

      h4 {
        width: 50%;
      }

      .main-dl-link {
        flex-direction: row;
      }
    }
  }

  .esg-highlights-sec {
    h2 {
      margin-bottom: 3rem;
      text-align: center;
    }
  }

  .fin-highlights-sec {
    h2 {
      margin-bottom: 3rem;
    }
  }

  .landing-page {
    height: 100vh;

    .hero-sec {
      .title-cont {
        margin-bottom: 2rem;

        a {
          flex-direction: row;
          align-items: center;
          margin-top: 2rem;
        }

        img {
          width: 40%;
        }
      }
    }

    .category-pick {
      margin-top: 3rem;
    }
  }

  .accessibility-page {
    height: 100vh;
    margin-top: none;
  }

  .flipbook-page,
  .accessibility-page {
    padding-top: 0;
  }
}
