:root {
  --primary-color: #008dd6;
  --primary-dark-color: #0066bb;
  --white-color: #fff;
}
[data-theme="light"] {
  --primary-color: #008dd6;
  --primary-dark-color: #005eb6;
  --white-color: #fff;
}
[data-theme="dark"] {
  --primary-color: #fff;
  --white-color: #000;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  /* height: 8000px; */
}

/* Start Navbar */
.navbar {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* background-color: var(--white-color)  ; */
  z-index: 999;
  .nav-item {
    .nav-link {
      padding-inline: 20px;
      /* color: rgba(255, 255, 255, 0.7);
            &:hover {
              color: var(--white-color);
            } */
      &.active {
        /* color: var(--white-color); */
        color: var(--primary-dark-color);
        font-weight: bold;
      }
    }
  }
}
/* End Navbar */

/* Start Slider */
main.carousel.slide {
  .carousel-item {
    .image {
        width: 100%;
        height: 100vh;
        align-content: end;
        @media (max-width: 991.98px) {
          height: unset;
        }
        img {
          width: 75%;
          object-fit: contain;
          object-position: bottom;
          @media (max-width: 991.98px) {
            object-fit: fill;
          }
        }
      }
      .content {
        margin-top: -50px;
        h6 {
          font-size: clamp(0.875rem, 5vw + 1rem, 1.5rem);
          font-weight: 600;
          color: var(--primary-dark-color);
          margin-bottom: clamp(0.625rem, 5vw + 1rem, 1rem);
        }
        h1 {
          font-size: clamp(1.625rem, 5vw + 1rem, 3.125rem);
          font-weight: 600;
          margin-bottom: 32px;
        }
        p {
          margin-bottom: 30px;
        }
        .button-group {
          button {
            small {
              font-size: 12px;
            }
          }
        }
      }
    &.slide-white {
      position: relative;
      background-color: #fafafa;
      height: 100vh;
      margin-top: -1px;
      isolation: isolate;
      border-radius: 0 0 50px 50px;

      @media (max-width: 991.98px) {
        padding: 80px 40px;
        padding-bottom: 0;
        height: auto;
        /* margin-bottom: 40px; */
      }
      &::before {
        content: "";
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        background-image: url("../imgs/hero-bg.svg");
        background-repeat: no-repeat;
        background-position: top center;
        background-size: contain;
        z-index: -1;
        @media (max-width: 767.98px) {
          display: none;
        }
      }
      
    }
    &.slide-blue{
      position: relative;
      background-color: #fafafa;
      background: url(../imgs/bg22.png) no-repeat center center;
      background-size: cover;
      height: 100vh;
      margin-top: -1px;
      isolation: isolate;
      border-radius: 0 0 50px 50px;
      @media (max-width: 991.98px) {
        padding: 80px 40px;
        padding-bottom: 0;
        height: auto;
        /* margin-bottom: 40px; */
      }
      .image {
        text-align: center;
        img {
          width: 100%;
        }
      }
       .content {
        color: #fff;
        h6 {
          color: #fff;
        }
        .btn-outline-secondary {
          color: #fff;
          border-color: #fff;
          transition: all 0.3s ease-in-out;
          &:hover {
            background-color: #fff;
            color: #2a2a2a;
          }
        }
       }
    }
  }
  .carousel-control-prev,
  .carousel-control-next {
    font-size: 32px;
    color: rgba(0, 0, 0, 0.4);
  }
}
/* End Slider */

/* start Layout */
.layout {
  position: relative;
  background-color: #fafafa;
  height: 100vh;
  margin-top: -1px;
  isolation: isolate;
  border-radius: 0 0 50px 50px;

  @media (max-width: 991.98px) {
    padding: 80px 20px;
    padding-bottom: 0;
    height: auto;
    /* margin-bottom: 40px; */
  }
  &::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../imgs/hero-bg.svg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    z-index: -1;
    @media (max-width: 767.98px) {
      display: none;
    }
  }
  .image {
    width: 100%;
    height: 100vh;
    align-content: end;
    @media (max-width: 991.98px) {
      height: unset;
    }
    img {
      width: 75%;
      object-fit: contain;
      object-position: bottom;
      @media (max-width: 991.98px) {
        object-fit: fill;
      }
    }
  }
  .content {
    margin-top: -50px;
    h6 {
      font-size: clamp(0.875rem, 5vw + 1rem, 1.5rem);
      font-weight: 600;
      color: var(--primary-dark-color);
      margin-bottom: clamp(0.625rem, 5vw + 1rem, 1rem);
    }
    h1 {
      font-size: clamp(1.625rem, 5vw + 1rem, 3.125rem);
      font-weight: 600;
      margin-bottom: 32px;
    }
    p {
      margin-bottom: 30px;
    }
    .button-group {
      button {
        small {
          font-size: 12px;
        }
      }
    }
  }
  /* .container {
    height: 100vh;
    .col-lg-6 {
      height: 100vh;
      align-content: center;
    }
  } */
}
/* End Layout */

/* Start Trusted by */
.trusted {
  margin-top: -20px;
  @media (max-width: 991.98px) {
    margin-top: 0;
  }
  h2 {
    color: var(--primary-dark-color);
    font-weight: 700;
    margin-bottom: 40px;
  }
  .trusted-container {
    position: relative;
    z-index: 5;
    background-color: #fff;
    padding: 20px 60px;
    border-radius: 20px;
    margin-bottom: 100px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    .owl-nav {
      position: absolute;
      top: 50%;
      width: calc(100% + 80px);
      display: flex;
      inset-inline-start: -40px;
      justify-content: space-between;
      transform: translateY(-50%);
      z-index: -1;
      .owl-prev,
      .owl-next {
        background-color: var(--primary-color);
        color: var(--white-color);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        font-size: 18px;
        transition: all 0.3s ease;
        &:hover {
          background-color: var(--primary-dark-color);
          color: var(--white-color);
          transform: scale(1.1);
        }
      }
    }
    .owl-carousel {
      img {
        height: 50px;
        object-fit: contain;
        object-position: center;
        filter: grayscale(1);
        transition: all 0.3s ease;
        &:hover {
          filter: grayscale(0);
          transform: scale(1.02);
        }
      }
    }
  }
}
/* End Trusted by */

/* Start Category */
.Category {
  padding-block: 80px;
  @media (max-width: 991.98px) {
    padding-inline: 20px;
  }
  h2 {
    color: var(--primary-dark-color);
    font-weight: 700;
    margin-bottom: 40px;
  }
  h2 ~ p {
    font-size: 18px;
    margin-bottom: 60px;
  }
  .card {
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    isolation: isolate;
    overflow: hidden;

    &:hover {
      box-shadow: 0px 0px 40px rgba(149, 149, 149, 0.25);
      border-color: transparent;
    }
    .card-header {
      position: relative;

      background-color: transparent;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 30px auto;
      width: 80px;
      height: 80px;
      border: none;
      &::before {
        content: "";
        position: absolute;
        inset-inline-start: -20px;
        width: 130%;
        height: 130%;
        background-color: var(--primary-color);
        border-radius: 70% 30% 30% 70% / 30% 30% 70% 70%;
        transition: all 0.3s ease;
        z-index: -1;
      }
      img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        object-position: center;
        filter: brightness(0) invert(1);
      }
    }
    .card-body {
      text-align: center;
      h3 {
        color: var(--primary-dark-color);
        font-weight: 600;
        margin-bottom: 20px;
      }
      p {
        color: #555;
        font-size: 16px;
        line-height: 1.5;
      }
    }
  }
}
/* End Category */

/* Start About */
.about {
  padding-block: 80px;
  background-color: #fafafa;
  background: url("../imgs/Employment.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  isolation: isolate;
  color: var(--white-color);
  @media (max-width: 991.98px) {
    padding-inline: 20px;
  }
  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    background-color: rgba(34, 34, 34, 0.85);
    z-index: -1;
  }
  h2 {
    color: var(--primary-dark-color);
    font-weight: 700;
    margin-bottom: 40px;
  }
  p {
    font-size: 18px;
    margin-bottom: 60px;
  }
  img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center;
    @media (max-width: 991.98px) {
      object-fit: fill;
      height: auto;
    }
  }
  ul {
    list-style: none;
    padding: 0;
    li {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      i {
        color: var(--primary-color);
        margin-inline-end: 10px;
      }
    }
  }
}

/* End About */

/* Start Pricing */
.pricing {
  background-color: #181f33;
  padding: 80px 0;
  color: var(--white-color);
  h2 {
    font-weight: 700;
    margin-bottom: 20px;
    & ~ p {
      font-size: 18px;
      margin-bottom: 60px;
    }
  }
  .card {
    border: 2px solid #fff;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    isolation: isolate;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 30px 0;
    color: var(--white-color);
    margin: 5px 20px;
    transform: scale(0.95);
    @media (max-width: 767.98px) {
      transform: scale(1);
      margin: 0;
    }
    &.prime-plan {
      border-color: var(--primary-color);
      background-color: rgba(0, 141, 214, 0.1);
      color: var(--white-color);
      margin: 0;
      transform: scale(1);
      position: relative;
      @media (max-width: 767.98px) {
        margin-block: 30px;
      }
      .Popular {
        position: absolute;
        top: -16px;
        inset-inline-start: 50%;
        transform: translateX(-50%);
        background-color: var(--primary-color);
        color: var(--white-color);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
      }
    }
    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    .card-body {
      padding: 0;
    }
    h3 {
      font-weight: 700;
      margin-bottom: 20px;
      text-align: center;
      text-transform: uppercase;
    }
    .price-number {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 20px;
      background-color: var(--white-color);
      text-align: center;
      color: #333;
      .number {
        color: var(--primary-color);
        font-size: 50px;
      }
    }
    ul {
      list-style: none;
      padding: 0;
      li {
        line-height: 50px;
        text-align: center;

        &:not(:last-child) {
          border-bottom: 1px solid #999;
        }
      }
    }
    button {
      margin-inline: 20px;
    }
  }
}
/* End Pricing */

/* Start How it Works */
.how-works {
  padding: 80px 20px;
  h2 {
    color: var(--primary-dark-color);
    font-weight: 700;
    & ~ p {
      font-size: 18px;
      margin-bottom: 60px;
    }
  }
  .step {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 30px;
    gap: 20px;
    @media (max-width: 575.98px) {
      flex-direction: column;
      justify-content: center;
    }
    p {
      padding-inline-end: 40px;
    }
    .step-image {
      flex-shrink: 0;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background-color: #f5f5f5;
      display: flex;
      justify-content: center;
      align-items: center;

      img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        object-position: center;
      }
    }
  }
}
/* End How it Works */
/* Start Download App */
.download-app {
  padding-block: 80px;
  background-color: #cbcacf;
  color: var(--white-color);
  position: relative;
  isolation: isolate;
  @media (max-width: 991.98px) {
    padding-inline: 20px;
  }
  .content {
    overflow: hidden;
    position: absolute;
    isolation: isolate;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: -1;
    &::before {
      content: "";
      position: absolute;
      top: 0;
      inset-inline-start: -100px;
      width: 100%;
      height: 100%;
      background-image: url(../imgs/cd7717-fe-046-63-c72bc7b1877_Untitled-5.png);
      background-repeat: no-repeat;
      background-position: top left;
      background-size: contain;
      z-index: -1;
      @media (max-width: 767.98px) {
        display: none;
      }
    }
    &::after {
      content: "";
      position: absolute;
      top: 0;
      inset-inline-end: -12.75rem;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        90deg,
        rgba(0, 141, 214, 1) 0%,
        rgba(0, 102, 187, 1) 100%
      );
      z-index: -2;
      @media (max-width: 767.98px) {
        inset-inline-end: 0;
      }
    }
  }
  h2 {
    font-weight: 700;
    margin-bottom: 20px;
    & ~ p {
      font-size: 18px;
      margin-bottom: 60px;
    }
  }
  .app-links {
    display: flex;
    gap: 20px;
    a {
      display: inline-block;
      padding: 10px 20px;
      background-color: var(--primary-color);
      color: var(--white-color);
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.3s ease;
      &:hover {
        background-color: var(--primary-dark-color);
        color: var(--white-color);
        transform: scale(1.05);
      }
    }
  }
  .image {
    position: relative;
    width: 100%;
    height: 100%;
    @media (max-width: 991.98px) {
      display: none;
    }
    &::after {
      content: "";
      position: absolute;
      background: url(../imgs/DEVICES.png) no-repeat center bottom;
      background-size: contain;
      width: 200%;
      inset: 0;
      height: 200%;
      inset-block-start: -50%;
      inset-inline-start: -50%;
    }
  }
}
/* End Download App */
/* Start Testimonials */
.Testimonials {
  padding-block: 100px;
  @media (max-width: 991.98px) {
    padding-inline: 20px;
  }
  h2 {
    font-size: 50px;
    & ~ p {
      text-align: center;
      margin-bottom: 60px;
    }
  }
  .card {
    padding: 40px;
    padding-bottom: 20px;
    border-radius: 20px 20px 20px 0;
    transition: all 0.3s ease-in-out;

    &:hover {
      box-shadow: 0px 0px 40px rgba(149, 149, 149, 0.25);
      border-color: transparent;
    }
    .rating {
      color: #eabf23;
      margin-bottom: 20px;
    }
    .user {
      display: flex;
      align-items: center;
      margin-bottom: 0;
      margin-top: 10px;
      img {
        margin-inline-end: 10px;
      }
      h6,
      p {
        margin-bottom: 0;
      }
    }
  }
}
/* End Testimonials */
/* Start Footer  */
.footer {
  position: relative;
  color: #fff;
  padding-top: 80px;
  isolation: isolate;
  background: #0843ca;
  background-color: rgb(16 24 40 / 1);
  padding-inline: 20px;
  .log {
    margin-bottom: 20px;
    img {
      width: 100%;
      max-width: 200px;
    }
  }
  ul {
    list-style-type: none;
    li {
      a {
        line-height: 40px;
        text-decoration: none;
        color: #fff;
        i {
          margin-inline-end: 5px;
        }
      }
    }
  }
  .social-media {
    display: flex;
    padding-inline-start: 20px;
    a {
      color: #ddd;
      font-size: 22px;
      transition: all 0.4s ease-in-out;
      &:not(:last-child) {
        margin-inline-end: 10px;
      }
      &:hover {
        color: #fff;
      }
    }
  }
  .box {
    @media (max-width: 575.98px) {
      text-align: center;
      .socil-media {
        justify-content: center;
      }
    }
  }
  .copy-right {
    padding: 20px;
    border-top: 1px solid rgba(238, 238, 238, 0.1);
    p {
      font-size: 14px;
      a {
        color: #fff;
      }
    }
  }
}
/* End Footer  */
