/* Landing Page */
.Hero {
  width: 100%;
  height: 800px;
  display: flex;
  flex-direction: column;
  justify-items: center;
  position: relative;

  background: linear-gradient(90deg, #0b5eff, #001f49);
  background-size: 200% 200%;
  animation: AnimationGradient 8s linear infinite;
}

@keyframes AnimationGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.Landing-Container {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.Bot-Container {
  position: relative;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.Bot-Container::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, #0097b2 0%, transparent 70%);
  filter: blur(10px);
  z-index: 0;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
}

.Bobot {
  width: 500px;
  z-index: 1;
}

.Title-Container {
  width: 50%;
  height: 100%;

  display: flex;
  justify-content: center;
  flex-direction: column;
}

.T1 {
  text-align: left;
  color: #ffffff;
  font-size: 90px;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  line-height: 0.8;
}

.Landing-Footer {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px;
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent); */
}

.Landing-Offer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.LFI {
  width: 28px;
  height: 28px;
}

.LFP {
  font-size: 14px;
  color: #ffffff;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

/* Overall Button */
.Btn-1 {
  background: linear-gradient(90deg, #5de0e6, #004aad);
  padding: 15px 35px;
  border-radius: 40px;
  width: fit-content;
  margin-top: 50px;
  color: #ffffff;
  text-decoration: none;
  font-size: 36px;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  font-family: 'hk', sans-serif;
  letter-spacing: 1.5px;
  font-weight: 100;


  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 6px 0 #004aad,
    0 8px 15px rgba(0, 0, 0, 0.3);

  transition:
    box-shadow 0.2s ease-in-out;
  position: relative;
}

.Btn-1:hover {
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 4px 0 #004aad,
    0 6px 12px rgba(0, 0, 0, 0.4);
  transform: translateX(0) translateY(2px);
}

.Btn-1:active {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 2px 0 #004aad,
    0 3px 6px rgba(0, 0, 0, 0.4);
  transform: translateX(0) translateY(4px);
}

/* Overall Button */
.Btn-2 {
  background: linear-gradient(90deg, #5de0e6, #004aad);
  padding: 15px 40px;
  border-radius: 40px;
  width: fit-content;
  margin-top: 25px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  font-family: 'hk', sans-serif;
  letter-spacing: 1.5px;
  font-weight: 100;



  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 6px 0 #004aad,
    0 8px 15px rgba(0, 0, 0, 0.3);

  transition:
    box-shadow 0.2s ease-in-out;
  position: relative;
}

.Btn-2:hover {
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 4px 0 #004aad,
    0 6px 12px rgba(0, 0, 0, 0.4);
  transform: translateX(0) translateY(2px);
}

.Btn-2:active {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 2px 0 #004aad,
    0 3px 6px rgba(0, 0, 0, 0.4);
  transform: translateX(0) translateY(4px);
}

/* Offer Page */
.Offer-Container {
  width: 100%;
  height: 450px;

  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #001f49;
  overflow: hidden;
  position: relative;
  padding-right: 20px;
}

.Blur-Circle {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  z-index: 1;
  pointer-events: none;
}

.Offer-Title {
  width: 50%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  gap: 40px;
}

.Offer-Text {
  width: 60%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  color: #ffffff;
}

.Offer-Text h1 {
  font-size: 60px;
  color: #fff;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  line-height: 0.8;
}

.Offer-Text p {
  font-size: 18px;
  color: #ffffff;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
  letter-spacing: 2px;
  font-family: "DM Sans", sans-serif;
}

.Card-Offer {
  width: 50%;
  max-width: 380px;
  height: 320px;
}

.swiper-slide {
  background: linear-gradient(180deg, #5de0e6, #004aad);
  background-size: 200% 200%;
  animation: AnimationGradient 8s linear infinite;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.Img-Cards {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.customm-prev img,
.customm-next img {
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.customm-prev,
.customm-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.customm-prev {
  left: -80px;
}

.customm-next {
  right: -80px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #0097b2;
  font-weight: 700;
  display: none !important;
}

.swiper-pagination-bullet {
  background: linear-gradient(180deg, #5de0e6, #004aad);
  opacity: 1;
  display: none !important;
}

.swiper-pagination-bullet-active {
  background-color: #5de0e6;
}

/* Partner Page */
.Partner-Container {
  width: 100%;
  height: 650px;

  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px;

  gap: 100px;

  background: linear-gradient(180deg, #004aad, #5de0e6);
  overflow: hidden;
  position: relative;
}

.Blade-1 {
  position: absolute;
  top: 30%;
  left: -12%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  z-index: 1;
  pointer-events: none;
  animation: rotate 5s linear infinite;
}

.Blade-2 {
  position: absolute;
  top: 5%;
  left: 85%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  z-index: 1;
  pointer-events: none;
  animation: rotate 5s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.About-Us {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 0;

  width: 100%;
  text-align: center;
}

.P-3-T {
  width: 50%;
  font-size: 16px;
  color: #ffffff;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
  letter-spacing: 2px;
  font-family: "DM Sans", sans-serif;
}

.P-3-H {
  margin: 10px 0;

  font-size: 60px;
    color: #fff;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
}

.Partner-Logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;

  width: 100%;
}

.Logo-Container {
  margin: 0 10px;

  display: flex;
  align-items: center;
  gap: 10px;

  width: 50px;
  overflow: hidden;
  transition: 0.5s ease;
}

.Logo-Container:hover {
  width: 150px;
}

.Logo-Partner {
  width: 50px;
  height: 50px;
}

.Logo-Title {
  color: #ffffff;
}

/* Client Page */
.Client-Container {
  width: 100%;
  height: 500px;
  padding: 0 20px;
  background: linear-gradient(180deg, #59e0e6, #4fffb4);

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;

  overflow: hidden;
}

/* .Client-Container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px; 
  background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  filter: blur(15px);
} */

.Client-Title {
  width: 50%;
  height: 100%;
  padding: 0 20px;

  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.Client-Title h1 {
  font-size: 70px;
    color: #fff;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  line-height: 0.8;
  margin-bottom: 30px;
  text-align: left;
  width: 100%;
}

.Client-Title p {
  font-size: 20px;
  color: #ffffff;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  font-family: "DM Sans", sans-serif;
  text-align: justify;
}

.Client-Testimony {
  width: 40%;
  height: 100%;
  padding: 20px;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
  overflow: hidden;
}

/* Testimony Slider */
.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.Testimony-Slide {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: none;

  transform-origin: center;
  will-change: transform;
  backface-visibility: hidden;
}

[data-swiper-parallax] {
  transition: transform 0.6s ease-out;
}

[data-swiper-parallax="-300"],
[data-swiper-parallax="-350"] {
  transition: transform 0.8s ease-out;
}

.Testimony-Container {
  width: 500px;
  height: 250px;

  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 20px;

  margin: 0 30px;

  background: radial-gradient(at 0% 0%, #ffffff, #84ffca);
  border: #0097b2 4px solid;
  border-radius: 20px;

  position: relative;
}

.Testimony-Img {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.P {
  width: 70px;
  height: 70px;
  border-radius: 50%;

  background: linear-gradient(180deg, #59e0e6, #4fffb4);

  top: -12%;
  left: 5%;
  position: absolute;
}

.Q {
  width: 70px;
  height: 70px;
  border-radius: 50%;

  top: -14%;
  left: 80%;
  position: absolute;
}

.Testimony-Text {
  width: 100%;

  display: flex;
  flex-direction: column;
}

.Testimony-Text p {
  font-size: 1rem;
  color: #0097b2;
  text-align: left;
  font-family: "DM Sans", sans-serif;
  margin: 20px 0;
}

.Testimony-Text h1 {
  font-size: 1.2rem;
  color: #0097b2;
  text-align: left;
  font-family: "Etna", sans-serif;
  margin: 20px 0 0 0;
}

.Testimony-Text span {
  font-size: 1rem;
  color: #0097b2;
  text-align: left;
  font-family: "DM Sans", sans-serif;
  margin: 10px 0;
}

.custom-prev img,
.custom-next img {
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.custom-prev,
.custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.custom-prev {
  left: 10px;
}

.custom-next {
  right: 10px;
}

/* Mobile View */
@media (max-width: 900px) {


  .custom-prev, .customm-prev,
  .custom-next, .customm-next {
    display: none;
  }

  /* Landing Page */
  .Hero {
    width: 100%;
    height: 850px;

    padding-top: 80px;

    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;

    position: relative;
    overflow: hidden;

    background: linear-gradient(90deg, #0b5eff, #001f49);
    background-size: 200% 200%;
    animation: AnimationGradient 8s linear infinite;
  }

  @keyframes AnimationGradient {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }
  }

  .Landing-Container {
    display: flex;
    flex-direction: column;
    align-items: center;


    width: 100%;
    height: 700px;
  }

  .Bot-Container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    /* Change */
    justify-content: center;
  }

  .Bot-Container::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, #0097b2 0%, transparent 70%);
    filter: blur(10px);
    z-index: 0;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
  }

  .Bobot {
    width: 500px;
    z-index: 1;
  }

  .Title-Container {
    width: 100%;
    height: auto;
    padding: 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .T1 {
    text-align: center;
    font-size: 45px;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  }

  .LFI {
    width: 18px;
    height: 18px;
  }

  .LFP {
    font-size: 10px;
  }

  .Btn-1 {
    padding: 10px 20px;
    margin: 30px;
    font-size: 16px;
  }

  .Btn-2 {
    padding: 10px 20px;
    margin: 30px 20px;
    font-size: 16px;
  }

  /* Offer Page */
  .Offer-Container {
    width: 100%;
    height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    background-color: #001f49;
    overflow: hidden;
    position: relative;
  }

  .Blur-Circle {
    display: none;
  }

  .Offer-Title {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  .Offer-Text {
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: #ffffff;
    padding: 10px 40px;
  }

  .Offer-Text h1 {
    font-size: 30px;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  }

  .Offer-Text p {
    font-size: 16px;
    color: #ffffff;
    text-align: justify;
  }

  .Card-Offer {
    width: 80%;
    max-width: 280px;
    height: 260px;
  }

  /* Partner Page */
  .Partner-Container {
    width: 100%;
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 20px;
    gap: 10px;

  }

  .Blade-1 {
    display: none;
  }

  .Blade-2 {
    display: none;
  }

  .P-3-T {
    width: 100%;
    font-size: 14px;
    text-align: justify;
  }

  .P-3-H {
    font-size: 30px;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  }

  .Partner-Logo {
    margin-top: 20px;
  }

  .Logo-Container {
    width: 30px;
  }

  .Logo-Container:hover {
    width: 30px;
  }

  .Logo-Partner {
    width: 30px;
    height: 30px;
  }

  /* Client Page */
  .Client-Container {
    width: 100%;
    height: 600px;
    padding: 20px;
    background: linear-gradient(180deg, #59e0e6, #4fffb4);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    overflow: hidden;
  }

  /* .Client-Container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px; 
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    filter: blur(15px);
  } */

  .Client-Title {
    width: 100%;
    padding: 0 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }


  .Client-Title h1 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
  }

  .Client-Title p {
    font-size: 16px;
  }

  .Client-Testimony {
    width: 100%;
    height: 100%;
    padding: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    position: relative;
    overflow: hidden;
  }

  .Testimony-Container {
    width: 500px;
    height: 200px;

    padding: 10px;
    margin: 10px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }

  .P {
    width: 50px;
    height: 50px;
    border-radius: 50%;

    background: linear-gradient(180deg, #59e0e6, #4fffb4);

    top: -12%;
    left: 5%;
    position: absolute;
  }

  .Q {
    width: 50px;
    height: 50px;
    border-radius: 50%;

    top: -14%;
    left: 80%;
    position: absolute;
  }

  .Testimony-Text {
    width: 100%;

    display: flex;
    flex-direction: column;
  }

  .Testimony-Text p {
    font-size: 14px;
    color: #0097b2;
    text-align: left;
    font-family: "DM Sans", sans-serif;
    margin: 10px 0;
  }

  .Testimony-Text h1 {
    font-size: 16px;
    margin: 10px 0 5px 0;
    letter-spacing: 1.5px;
  }

  .Testimony-Text span {
    font-size: 14px;
    margin: 0;
  }
}