@import url("global.css");
@import url("header.css");
@import url("footer.css");

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  overflow: hidden;
}

.hero .hero_img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  transform-origin: center;
  will-change: transform;
  z-index: -1;

  & img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  &:before {
    content: "";
    background: linear-gradient(91deg, rgb(255 255 255) 5%, rgb(255 255 255 / 0%) 80%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
}

.hero_content {
  padding: 140px 0 60px;
  position: relative;
  height: 100vh;

  & h1 {
    font-family: var(--raleway-font);
    font-size: 82px;
    font-style: normal;
    font-weight: 400;
    line-height: 88px;
    letter-spacing: -1px;
    margin-bottom: 14px;
    text-wrap-style: balance;
    color: var(--black);
  }

  & p {
    font-family: var(--heading-font);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    /* text-wrap-style: balance; */
    color: var(--black);
  }

  & .right_box {
    width: 100%;
    display: grid;
    gap: 24px;
    align-items: end;
    justify-items: end;

    & .accreditations {
      display: flex;
      padding: 10px;
      align-items: center;
      gap: 10px;
      border-radius: 10px;
      background: var(--san-secondary-light);
      backdrop-filter: blur(12px);

      & img {
        height: 100px;
        border-radius: 7px;
        width: 100%;
        object-fit: cover;
      }
    }

    & .social-links {
      display: flex;
      align-items: center;
      gap: 10px;

      & a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        color: var(--san-primary);
        background: var(--san-secondary-light);
        backdrop-filter: blur(12px);
        font-size: 16px;
        color: #fff;
        transition: 0.3s;

        &:hover {
          color: var(--contrast-color);
          background: var(--san-secondary);
        }
      }
    }
  }
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.inner-page {
  .header {
    background: var(--contrast-color);

    &:before {
      content: none;
    }
  }

  &.scrolled .header .logo img {
    filter: none;
  }

  & .hero {
    height: auto;
    max-height: 600px;

    & .hero_img {
      height: 100%;
      background: linear-gradient(rgb(255 255 255) 0%, var(--san-primary) 100%);

      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      &:before {
        background: linear-gradient(91deg, rgb(255 255 255) 5%, rgb(255 255 255 / 0%) 80%);
      }
    }

    & .hero_content {
      height: auto;

      & .social_proof {
        background: var(--contrast-color);
        border-radius: 50px;
      }

      & h1 {
        font-size: 52px;
        line-height: 60px;
        margin-bottom: 20px;
        font-weight: 500;
      }
    }
  }
}

@media (max-width: 768px) {
  .inner-page .hero {
    & .hero_content {
      height: auto;

      & h1 {
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 20px;
      }

      & .right_box {
        width: 100%;
        display: grid;
        gap: 24px;
        align-items: start;
        justify-items: start;
        margin-top: 30px;

        & .accreditations {
          display: flex;
          align-items: start;
          gap: 20px;

          & img {
            height: 34px;
            width: auto;
          }
        }
      }
    }
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about {
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--san-primary), var(--san-secondary));

  & .title {
    color: #141414;
    font-family: Geist;
    font-size: 38px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: -1px;
  }

  & p {
    color: var(--text-light);
    font-size: 20px;
    text-wrap-style: balance;
  }

  & .box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 10px;

    & h3 {
      color: var(--contrast-color);
      font-family: Geist;
      font-size: 54px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
      margin: 0;
    }

    & h4 {
      color: var(--contrast-color);
      font-family: Inter;
      font-size: 22px;
      font-weight: 400;
      margin: 0;
    }

    & p {
      font-size: 14px;
    }
  }

  & .icon-lg {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    opacity: .7;
  }
}

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/

.about_page {
  & .about {
    & .section-title {
      padding-bottom: 20px;

      & .small_title {
        justify-self: start;
      }

      & h2 {
        color: #000;
        text-align: start;
        font-family: var(--heading-font);
        font-size: 60px;
        font-weight: 400;
        line-height: 78px;
        letter-spacing: -1px;
        margin-bottom: 50px;
        width: 86%;
      }
    }

    & h3 {
      color: #000;
      font-family: Geist;
      font-size: 66px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      margin: 0;
    }

    & .box {
      padding: 0;
      gap: 16px;
      background: transparent;

      & h3 {
        color: #000;
        font-family: Geist;
        font-size: 66px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
        margin: 0;
        letter-spacing: -3px;
      }

      & p {
        font-size: 18px;
        font-weight: 400;
      }
    }

    & .content {
      & p {
        font-size: 24px;
        color: var(--black);
        margin-bottom: 20px;
        font-weight: 400;
      }
    }
  }

  & .misvis {
    & .image {
      border-radius: 10px;
      overflow: hidden;

      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

    & .icon {
      width: 50px;
      margin-bottom: 20px;

      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

    & .content {
      & h2 {
        color: var(--black);
        font-size: 46px;
        font-weight: 500;
        margin-bottom: 20px;
      }

      & p,
      & ul {
        color: var(--black);
        font-size: 18px;
        margin-bottom: 20px;
      }
    }
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services {

  & .item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    border-radius: 16px;
    overflow: clip;
    background: var(--contrast-color);
    padding: 30px;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
    transition: all .3s ease;

    & .icon {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      margin-bottom: 20px;

      & img {
        width: 78px;
        transition: all .3s ease;
      }

      & .count {
        font-size: 90px;
        font-weight: 700;
        line-height: 80px;
        color: #F6F3F8;
        transition: all .3s ease;
      }
    }

    & h3 {
      font-size: 24px;
      text-wrap-style: balance;
    }

    & p {
      color: #888888;
      position: relative;
      font-size: 16px;
      margin: 0;
    }

    &:hover {
      & img {
        transform: scale(1.05);
      }

      & .count {
        color: var(--san-primary);
      }
    }
  }
}

/*--------------------------------------------------------------
# Service Page
--------------------------------------------------------------*/

.service_page {
  & .about {
    & .section-title {
      padding-bottom: 20px;

      & .small_title {
        justify-self: start;
      }

      & h2 {
        color: #000;
        text-align: start;
        font-family: var(--heading-font);
        font-size: 48px;
        font-weight: 400;
        line-height: 66px;
        letter-spacing: -1px;
        margin-bottom: 10px;
        width: 86%;
      }
    }

    & h3 {
      color: #000;
      font-family: Geist;
      font-size: 66px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
      margin: 0;
    }

    & .box {
      padding: 0;
      gap: 16px;
      background: transparent;

      & h3 {
        color: #000;
        font-family: Geist;
        font-size: 66px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
        margin: 0;
        letter-spacing: -3px;
      }

      & p {
        font-size: 18px;
        font-weight: 400;
      }
    }

    & .content {
      & p {
        font-size: 24px;
        color: var(--black);
        margin-bottom: 20px;
        font-weight: 400;
      }
    }
  }
}

/*--------------------------------------------------------------
# Division Page
--------------------------------------------------------------*/

.division {
  & h2 {
    font-size: 38px;
    margin-bottom: 20px;
  }

  & .list {
    top: 50px;

    & ul {
      list-style: none;
      padding: 0;
      margin: 0;
      & li {
        margin-bottom: 5px;
      }
      & a {
        display: block;
        padding: 10px 14px;
        border-radius: 6px;
        color: #333;
        background: #F2E9F9;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
        
        &:hover {
          color: var(--contrast-color);
          background: var(--san-primary);
          transform: translateX(4px);
        }
        
        &:focus,&:active {
          background: #00bfea;
          color: #fff;
        }
      }
    }
  }

  & .image {
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
  }

  & .content {
    & p {
      scroll-margin-top: 300px;
      font-size: 18px;
      border-bottom: 1px solid var(--san-primary);
      margin-bottom: 30px;
      padding-bottom: 30px;
    }
  }
}

/*--------------------------------------------------------------
# Testimonial Section
--------------------------------------------------------------*/

.testimonials {
  & .testimonial_wrapper {
    position: relative;

    &:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      z-index: 2;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, var(--contrast-color) 1%, transparent 10%, transparent 90%, var(--contrast-color) 99%);
    }

    & .testimonial_slider {
      display: flex;
      width: max-content;
      gap: 20px;

      & .testimonial_track {
        display: flex;
        gap: 20px;
        flex-shrink: 0;

        & .item {
          flex: 0 0 auto;
          padding: 20px;
          background: var(--contrast-color);
          border-radius: 16px;
          width: 450px;
          box-shadow: 0px 4px 40px 4px rgba(0, 0, 0, 0.048);

          & .title {
            display: flex;
            gap: 10px;
            align-items: center;
            margin-bottom: 20px;

            & .image {
              width: 48px;
            }

            & h3 {
              font-size: 22px;
              margin-bottom: 6px;
            }

            & h4 {
              font-size: 16px;
              color: var(--black3);
              margin: 0;
            }
          }

          & .content {
            & p {
              margin: 0;
              color: #888888;
            }
          }
        }
      }
    }
  }
}

/*--------------------------------------------------------------
# why
--------------------------------------------------------------*/

.why {
  background: linear-gradient(180deg, var(--san-primary), var(--san-secondary));

  & .icon-lg {
    width: 400px;
    opacity: .7;
  }

  & .item {
    display: flex;
    background: var(--contrast-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 16px;

    & .icon {
      font-size: 64px;
      font-weight: 700;
      letter-spacing: -2px;
      line-height: 54px;
      margin-right: 10px;
      color: #F6F3F8;
      min-width: 88px;
    }

    & h3 {
      font-size: 24px;
      text-wrap-style: balance;
    }

    & p {
      color: #888888;
      position: relative;
      font-size: 16px;
      margin: 0;
    }
  }
}

/*--------------------------------------------------------------
# faq
--------------------------------------------------------------*/

.faq {

  & .icon-lg {
    width: 400px;
  }

  & .accordion-item {
    background: #f7f7f7;
    border: none;
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;

    & .accordion-button {
      background: none;
      font-size: 18px;
      font-weight: 500;
      text-wrap-style: balance;
      padding: 30px 20px;
    }

    & .accordion-button:focus {
      box-shadow: none;
    }

    & .accordion-button:not(.collapsed) {
      background: var(--san-secondary-light);
    }

    & .accordion-body {
      color: #888888;
      position: relative;
      font-size: 16px;
      margin: 0;
    }
  }
}

/*--------------------------------------------------------------
# Blogs Section
--------------------------------------------------------------*/

.blogs {
  background: linear-gradient(180deg, var(--san-primary), var(--san-secondary));

  & .item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: transparent;
    transition: all 0.3s ease-in-out;

    & .image {
      height: 240px;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 10px;
      position: relative;

      & .date {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: var(--contrast-color);
        padding: 5px 10px;
        border-radius: 30px;
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 12px;
        font-weight: 600;
        color: var(--black);
      }
    }

    & .contents {
      background: var(--contrast-color);
      padding: 16px;
      border-radius: 10px;
      transition: all 0.3s ease-in-out;

      & h3 {
        font-size: 24px;
        text-wrap-style: balance;
      }

      & p {
        color: #888888;
        position: relative;
        font-size: 16px;
        margin: 0;
      }
    }

    &:hover .contents {
      background: #ffffffad
    }
  }
}

/*--------------------------------------------------------------
# Jobs
--------------------------------------------------------------*/
.btn-search,
.btn-search:focus {
	font-family: var(--heading-font);
	font-weight: 600;
	font-size: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
  height: 58px;
  width: 58px;
  padding: 16px 20px;
  border-radius: 5px;
	color: var(--contrast-color);
  background: var(--san-primary);
	transition: 0.5s;
}

.btn-phone:hover {
  color: var(--contrast-color);
  background: var(--san-secondary);
}

.jobs-sec {
  & .box {
    padding: 10px;
    border: 1px solid #d8d8d8;
    border-radius: 20px;
    height: 100%;
    position: relative;

    &:hover {
      .title {
        --x: 100%;
      }
    }

    & .title {
      padding: 15px;
      margin-bottom: 10px;
      border-radius: 10px;
      min-height: 126px;
      display: flex;
      align-items: end;
      background: linear-gradient(-45deg, var(--san-secondary-light) 0, var(--san-primary) 51%, var(--san-secondary) 100%) var(--x, 0) / 200%;
      transition: 0.3s linear;

      & h2 {
        font-size: 18px;
        font-weight: 600;
        line-height: 24px;
        color: var(--contrast-color);
        hyphens: auto;
        margin-bottom: 0;
        width: 100%;
        word-break: normal;
        overflow-wrap: break-word;
      }
    }

    & hr {
      margin: 10px 0;
    }

    & .date {
      background: #000;
      color: #fff;
      padding: 4px 11px;
      border-radius: 50px;
      display: inline-block;
      font-weight: 600;
      font-size: 12px;
    }

    & img {
      width: 50px;
      border-radius: 50%;
      margin-bottom: -5px;
    }

    & h3 {
      background: #fff;
      padding: 5px 15px 5px 5px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      width: fit-content;
      color: #000;
      font-weight: 700;
      font-size: 12px;
      margin-top: 10px;
      margin-bottom: 0;
      box-shadow: 2px 4px 10px 0px rgb(0 0 0 / 10%);

      & i {
        font-size: 18px;
      }
    }

    & p {
      font-size: 16px;
      line-height: 20px;
      font-weight: 500;
      margin-bottom: 0;
    }

    & .price-box {
      background: var(--bg-light);
      padding: 15px;
      margin-bottom: 10px;
      border-radius: 10px;
      display: flex;
      justify-content: space-between;

      & p {
        font-size: 16px;
        line-height: 21px;
        font-weight: 700;
        color: #000;
      }

      & span {
        font-size: 14px;
        font-weight: 500;
        color: #3d3d3d;
        white-space: nowrap;
        margin-right: 5px;
      }
    }

    & .loc-box, & .time-box {
      display: flex;
      align-items: center;

      & i {
        background: #05aeef;
        color: #fff;
        padding: 5px;
        border-radius: 50px;
        margin-top: -2px;
      }
    }

    & ul {
      list-style: none;
      padding: 0;
      margin: 0;

      & li {
        display: flex;
        align-items: center;
        margin-bottom: 6px;
        font-size: 16px;
        font-weight: 500;
        color: var(--bs-black);

        &:last-child {
          padding: 0;
        }

        & i {
          color: var(--accent-color);
          border-radius: 50px;
          width: 26px;
          height: 26px;
          margin-right: 6px;
          display: flex;
          justify-content: center;
          align-items: center;
        }
      }
    }
  }
}

.jobs {
  & .left-filter {
    position: sticky;
    top: 60px;

    & .filter-box {
      background: var(--bg-light);
      border-radius: 10px;
      padding: 10px;
      min-height: 130px;
      transition: 0.3s ease;
      max-height: calc(100vh - 300px);
      overflow: auto;

      & h5 {
        display: flex;
        align-items: center;
        padding: 6px;
        font-size: 16px;
        background: var(--san-primary);
        color: var(--contrast-color);
        border-radius: 6px;
      }
    }
  }
}

.job-detail {
  & h2 {
    font-size: 36px;
    line-height: 48px;
    font-weight: 500;
    margin-bottom: 20px;
  }

  & .det-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    border-radius: 6px;

    & i {
      z-index: 1;
      color: var(--contrast-color);
      background: var(--san-primary);
      border-radius: 5px;
      height: 30px;
      width: 30px;
      min-width: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    & span {
      margin-bottom: 0;
      font-size: 16px;
      text-indent: 0px;
      padding-left: 10px;
      color: var(--black)
    }
  }

  & .description {
    color: var(--black)
  }

  & .form-box {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 10px;

    & h2 {
      font-size: 24px;
      margin-bottom: 20px;
    }
  }
}

/*--------------------------------------------------------------
# Cta Section
--------------------------------------------------------------*/

.cta {
  & .section_bg {
    opacity: 1;

    &:before {
      content: "";
      background: linear-gradient(180deg, rgb(19 19 19 / 35%) 0%, rgb(0 0 0) 100%);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
  }

  & .section-title {
    & span {
      font-family: var(--heading-span);
      background: linear-gradient(90deg, var(--contrast-color) 25%, #d1d1d1 75%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 16px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 24px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--san-primary);
  background: color-mix(in srgb, var(--san-primary), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 16px;
}

.contact .info-item:hover i {
  background: var(--san-primary);
  color: var(--contrast-color);
}

.contact .email-form {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 16px;
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .email-form {
    padding: 20px;
  }
}

.contact .email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--san-primary);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--san-primary), transparent 25%);
}