@charset "UTF-8";

/* ------------------------------------------------------------------------------------------------------------------*/
.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 50px;
}

.social-links a {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  font-size: 22px;
  text-decoration: none; /* pastikan tidak ada garis */
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  border: none; /* hilangkan border */
}

.social-links a i {
  line-height: 0;   /* biar icon tidak bikin garis phantom */
}

.social-links a:hover {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

/* Warna khusus brand */
.social-links .instagram:hover {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
  color: #fff;
}
.social-links .whatsapp:hover {
  background: #25D366;
  color: #fff;
}
.social-links .youtube:hover {
  background: #FF0000;
  color: #fff;
}


/* ------------------------------------------------------------------------------------------------------------------*/
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;  /* pastikan ikon sejajar dengan baris pertama */
  margin-bottom: 15px;
}

.checklist li i {
  color: #0fce83;   /* warna hijau */
  font-size: 18px;
  margin-top: 4px; /* agar pas dengan teks */
  flex-shrink: 0;
}

.checklist li span {
  margin-left: 10px;   /* jarak teks dari ikon */
  display: block;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  text-align: justify;
}


/* ------------------------------------------------------------------------------------------------------------------*/
/* Gambar utama dengan transparansi & efek elegan */
.img-main {
  height: 600px;
  opacity: 0.7;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: all 0.4s ease-in-out;
}

.img-main:hover {
  opacity: 1;
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Gambar kedua lebih kecil, dengan posisi overlap */
.img-second {
  max-height: 250px;
  border-radius: 15px;
  border: 5px solid #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.img-second:hover {
  transform: scale(1.1) rotate(3deg);
}

/* Animasi shape */
.shape1 img {
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}


/* ------------------------------------------------------------------------------------------------------------------*/
.space,
.space-top {
  padding-top: var(--section-space);
}

.space,
.space-bottom {
  padding-bottom: var(--section-space);
}

.space-extra,
.space-extra-top {
  padding-top: calc(var(--section-space) - 30px);
}

.space-extra,
.space-extra-bottom {
  padding-bottom: calc(var(--section-space) - 30px);
}

.space-extra2,
.space-extra2-top {
  padding-top: calc(var(--section-space) - 40px);
}

.space-extra2,
.space-extra2-bottom {
  padding-bottom: calc(var(--section-space) - 40px);
}

/* Medium devices */
@media (max-width: 991px) {
  .space,
  .space-top {
    padding-top: var(--section-space-mobile);
  }
  .space,
  .space-bottom {
    padding-bottom: var(--section-space-mobile);
  }
  .space-extra,
  .space-extra-top {
    padding-top: calc(var(--section-space-mobile) - 30px);
  }
  .space-extra,
  .space-extra-bottom {
    padding-bottom: calc(var(--section-space-mobile) - 30px);
  }
  .space-top-md-none {
    padding-top: 0;
  }
  .space-extra2,
  .space-extra2-top {
    padding-top: 70px;
  }
  .space-extra2,
  .space-extra2-bottom {
    padding-bottom: 70px;
  }
}

/* ------------------------------------------------------------------------------------------------------------------*/
/* Project Card ---------------------------------- */
.project-card {
  --space: 30px;
  position: relative;
  overflow: hidden;
}

.project-card .project-img {
  overflow: hidden;
  border-radius: 10px;
  z-index: 2;
}

.project-card .project-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.project-card .project-img:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  background: -webkit-linear-gradient(top, rgba(0, 0, 40, 0) 0%, rgba(0, 0, 40, 0.140476) 43.1%, #000028 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 40, 0) 0%, rgba(0, 0, 40, 0.140476) 43.1%, #000028 100%);
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: 1;
  border-radius: inherit;
}

.project-card .project-content-wrap {
  position: absolute;
  left: var(--space);
  bottom: -30px;
  width: 100%;
  max-width: calc(100% - var(--space)*2 - 28px);
  z-index: 3;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.project-card .project-content {
  background-color: var(--theme-color);
  background-size: auto;
  background-position: right center;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  padding: 26px 30px;
}

.project-card .box-title {
  color: var(--white-color);
  margin-bottom: 2px;
}

.project-card .box-title a:hover {
  color: var(--smoke-color2);
}

.project-card .project-subtitle {
  margin-bottom: -0.5em;
  color: var(--white-color);
}

.project-card .icon-btn {
  position: absolute;
  right: -28px;
  top: calc(50% - 28px);
  background-color: var(--white-color);
  border: none;
  color: var(--theme-color);
  font-size: 24px;
}

.project-card .icon-btn:hover {
  background-color: var(--title-color);
}

.project-card:hover .project-img img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.project-card:hover .project-img:before {
  height: 100%;
  opacity: 1;
}

.project-card:hover .project-content-wrap {
  bottom: var(--space);
  opacity: 1;
}

/* Extra small devices */
@media (max-width: 375px) {
  .project-card {
    --space: 15px;
  }
}

@media (max-width: 360px) {
  .project-card .box-title {
    font-size: 22px;
  }
  .project-card .project-content {
    padding: 26px 20px;
  }
}

/* Project Card 2 start---------------------------------- */
.project-card2 {
  --space: 30px;
  position: relative;
  overflow: hidden;
}

.project-card2 .project-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  z-index: 2;
}

.project-card2 .project-img img {
  width: 100%;
  border-radius: 20px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.project-card2 .project-img:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  background: -webkit-linear-gradient(top, rgba(0, 0, 40, 0) 0%, rgba(0, 0, 40, 0.140476) 43.1%, #000028 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 40, 0) 0%, rgba(0, 0, 40, 0.140476) 43.1%, #000028 100%);
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: 1;
  border-radius: inherit;
}

.project-card2 .project-content-wrap {
  position: absolute;
  left: var(--space);
  bottom: -30px;
  width: 100%;
  max-width: 474px;
  z-index: 3;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.project-card2 .project-content {
  background-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: auto;
          mask-size: auto;
  background-color: var(--white-color);
  background-size: auto;
  background-position: center center;
  position: relative;
  z-index: 2;
  padding: 90px 30px 30px 30px;
}

.project-card2 .box-title {
  color: var(--title-color);
  margin-bottom: 0px;
}

.project-card2 .box-title a {
  color: inherit;
}

.project-card2 .box-title:hover {
  color: var(--theme-color);
}

.project-card2 .project-subtitle {
  font-size: 14px;
  margin-bottom: 5px;
  color: var(--theme-color);
}

.project-card2 .icon-btn {
  position: absolute;
  right: 20px;
  top: 25px;
  border: none;
  --btn-size: auto;
  color: var(--theme-color);
  font-size: 20px;
}

.project-card2:hover .project-img img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.project-card2:hover .project-img:before {
  height: 100%;
  opacity: 1;
}

.project-card2:hover .project-content-wrap {
  bottom: var(--space);
  opacity: 1;
}

/* Extra small devices */
@media (max-width: 375px) {
  .project-card2 {
    --space: 15px;
  }
}

@media (max-width: 360px) {
  .project-card2 .box-title {
    font-size: 22px;
  }
  .project-card2 .project-content {
    padding: 26px 20px;
  }
}

/* Project Card 2 end---------------------------------- */
/* Project Grid ---------------------------------- */
.project-grid {
  background-color: var(--white-color);
  box-shadow: 0px 10px 15px rgba(8, 14, 28, 0.06);
  border-radius: 10px;
}

.project-grid_img {
  position: relative;
  z-index: 2;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.project-grid_img:before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--black-color2);
  opacity: 0.8;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  z-index: 1;
}

.project-grid_img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.project-grid_img .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
}

.project-grid_img .play-btn > i {
  font-size: 24px;
}

.project-grid_text {
  margin-bottom: -0.5em;
}

.project-grid_content {
  padding: 40px;
}

.project-grid:hover .project-grid_img:before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.project-grid:hover .project-grid_img img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.project-grid:hover .project-grid_img .play-btn {
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

/* Project Box ---------------------------------- */
.project-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.project-box.style2 {
  border-radius: 20px;
}

.project-box.style2 .project-img {
  border-radius: 20px;
  margin-bottom: 30px;
}

.project-box.style2 .project-img img {
  border-radius: 20px;
}

.project-box.style2 .project-box_desc {
  font-size: 14px;
  margin-bottom: 7px;
}

.project-box.style2 .box-title {
  font-weight: 600;
}

.project-box .project-img {
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.project-box .project-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.project-box .project-content {
  background-color: var(--white-color);
  padding: 22px 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.project-box .box-title {
  margin-bottom: 3px;
}

.project-box .project-subtitle {
  margin-bottom: -0.5em;
  color: var(--theme-color);
}

.project-box .icon-btn {
  background-color: var(--theme-color);
  border: none;
  color: var(--white-color);
  font-size: 24px;
  border-radius: 8px;
}

.project-box .icon-btn:hover {
  background-color: var(--title-color);
}

.project-box:hover .project-img img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

@media (max-width: 360px) {
  .project-box .box-title {
    font-size: 22px;
  }
  .project-box .project-content {
    padding: 26px 20px;
  }
}

/* Project Box 4---------------------------------- */
.project-box4 {
  position: relative;
  --space: 40px;
  border-radius: 35px;
  margin-bottom: 0px;
  overflow: hidden;
}

.project-box4 .project-content {
  position: absolute;
  left: var(--space);
  bottom: -30px;
  width: calc(100% - var(--space)*2);
  z-index: 3;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.project-box4 .box-title {
  color: var(--white-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.project-box4 .box-title a {
  color: inherit;
}

.project-box4 .box-title:hover {
  color: var(--white-color);
}

.project-box4 .project-tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.project-box4 .project-tags a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
  background-color: var(--white-color);
  color: var(--title-color);
  border-radius: 100px;
  padding: 4px 20px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.project-box4 .project-tags a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.project-box4 .project-img {
  overflow: hidden;
  position: relative;
  z-index: 2;
  border-radius: 30px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.project-box4 .project-img:before, .project-box4 .project-img:after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 30px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.project-box4 .project-img:before {
  background: var(--theme-color);
  mix-blend-mode: multiply;
  z-index: 4;
}

.project-box4 .project-img:after {
  background: rgba(64, 102, 242, 0.92);
  z-index: 3;
}

.project-box4 .project-img img {
  width: 100%;
  border-radius: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.project-box4:hover .project-img img {
  -webkit-filter: grayscale(50%);
          filter: grayscale(50%);
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.project-box4:hover .project-img:before {
  opacity: 1;
  visibility: visible;
}

.project-box4:hover .project-content {
  bottom: var(--space);
  opacity: 1;
  visibility: visible;
}

.project-slider4 {
  margin-left: 40px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .project-slider4 {
    margin: 50px 0 0 0;
  }
}

.project-btn {
  /* Small devices */
}

@media (max-width: 767px) {
  .project-btn {
    text-align: center;
  }
}

/* Project 5---------------------------------- */
.project-area-5 {
  background: #1C1C25;
}

.project-card5 {
  position: relative;
  border-radius: 20px;
  border: 1px solid #2E3039;
  background-color: #1C1C25;
  padding: 20px;
  overflow: hidden;
}

.project-card5 .project-img {
  overflow: hidden;
  border-radius: 20px;
  z-index: 2;
}

.project-card5 .project-img img {
  width: 100%;
  border-radius: 20px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.project-card5 .project-content {
  padding: 30px 20px 20px;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .project-card5 .project-content {
    padding: 30px 0px 20px;
  }
}

.project-card5 .box-title {
  font-size: 22px;
  color: var(--white-color);
  margin-bottom: 14px;
  letter-spacing: -0.22px;
}

.project-card5_desc {
  margin-bottom: 22px;
}

.project-card5 .line-btn {
  font-family: var(--body-font);
}

.project-card5 .line-btn:hover {
  color: var(--white-color);
}

.project-card5 .line-btn:hover:before {
  background-color: var(--white-color);
}

.project-card5:hover .project-img img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

@media (max-width: 360px) {
  .project-card5 .box-title {
    font-size: 22px;
  }
  .project-card5 .project-content {
    padding: 26px 20px;
  }
}

/*project-card3 start --------------------------*/
.project-card3 {
  text-align: center;
}

.project-card3 .project-img {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.project-card3 .project-img:after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--theme-color);
  mix-blend-mode: normal;
  opacity: 0;
  border-radius: 20px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-transform: scale(0.3);
      -ms-transform: scale(0.3);
          transform: scale(0.3);
}

.project-card3 .project-img img {
  width: 100%;
  border-radius: 20px;
}

.project-card3 .shape {
  position: absolute;
  inset: 30px;
  border: 1px solid var(--white-color);
  z-index: 2;
  border-radius: 12px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  /* Medium devices */
  /* Extra small devices */
}

@media (max-width: 991px) {
  .project-card3 .shape {
    inset: 20px;
  }
}

@media (max-width: 375px) {
  .project-card3 .shape {
    inset: 10px;
  }
}

.project-card3 .project-content {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  mix-blend-mode: normal;
  border-radius: 12px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translateY(40px);
      -ms-transform: translateY(40px);
          transform: translateY(40px);
}

.project-card3 .icon-btn {
  background-color: var(--white-color);
  border-radius: 50%;
  border: none;
  color: var(--theme-color);
  font-size: 18px;
  margin-bottom: 15px;
}

.project-card3 .icon-btn:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

.project-card3 .project-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--white-color);
  margin-bottom: 0;
}

.project-card3 .box-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 0;
}

.project-card3 .box-title a {
  color: inherit;
}

.project-card3:hover .project-img:after {
  opacity: 0.89;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.project-card3:hover .shape {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
}

.project-card3:hover .project-content {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*project-card start --------------------------*/
.project-area9 {
  background-color: #EFF1F9;
}

.project-card.style2 .project-img {
  border-radius: 20px;
}

.project-card.style2 .project-img:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  border-radius: 20px;
  background-color: var(--theme-color);
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: 1;
  border-radius: inherit;
}

.project-card.style2 .project-content-wrap {
  max-width: calc(100% - var(--space)*2 - 111px);
}

@media (max-width: 1699px) {
  .project-card.style2 .project-content-wrap {
    max-width: calc(100% - var(--space)*2 - 30px);
  }
}

.project-card.style2 .project-content {
  background-color: var(--white-color);
  padding: 11px 23px;
  border-radius: 10px;
}

.project-card.style2 .project-subtitle {
  color: var(--theme-color);
}

.project-card.style2 .box-title {
  font-size: 18px;
  color: var(--title-color);
}

.project-card.style2 .box-title a:hover {
  color: var(--theme-color);
}

.project-card.style2 .icon-btn {
  --btn-size: 70px;
  background-color: var(--theme-color);
  border-radius: 50%;
  color: var(--white-color);
  top: 0;
}

.project-card.style2:hover .project-img:before {
  height: 100%;
  opacity: 0.6;
}

/*project-card end --------------------------*/
/*project-card3 end --------------------------*/
/* Project Details ---------------------------------- */
.project-inner-box {
  background-color: var(--smoke-color);
  border-radius: 5px;
  padding: 30px;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .project-inner-box {
    padding: 20px;
  }
}

/*project-card start --------------------------*/
.project-card.style3 {
  --space: 0px;
  border-radius: 30px;
}

.project-card.style3 .project-img {
  border-radius: 20px;
}

.project-card.style3 .project-img:before {
  display: none;
}

.project-card.style3 .project-content {
  position: relative;
  background-color: transparent;
  border-radius: 0px;
  padding: 20px 40px;
  z-index: 2;
}

.project-card.style3 .project-content:before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(top, #3E66F3 0%, #0031DD 100%);
  background: linear-gradient(180deg, #3E66F3 0%, #0031DD 100%);
  -webkit-clip-path: path("M-13.0656 17.2667C-8.12633 6.72988 2.46095 0 14.098 0H222.716C236.147 0 247.941 8.92694 251.589 21.8532L267.253 77.3697C272.939 97.5197 256.758 117.149 235.893 115.413L-5.01712 95.3679C-25.8475 93.6347 -38.565 71.6641 -29.6932 52.7379L-13.0656 17.2667Z");
          clip-path: path("M-13.0656 17.2667C-8.12633 6.72988 2.46095 0 14.098 0H222.716C236.147 0 247.941 8.92694 251.589 21.8532L267.253 77.3697C272.939 97.5197 256.758 117.149 235.893 115.413L-5.01712 95.3679C-25.8475 93.6347 -38.565 71.6641 -29.6932 52.7379L-13.0656 17.2667Z");
  z-index: -1;
}

.project-card.style3 .project-subtitle {
  color: var(--white-color);
  margin-bottom: 3px;
}

.project-card.style3 .box-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white-color);
}

.project-card.style3 .box-title a:hover {
  color: var(--title-color);
}

.project-card.style3 .icon-btn {
  --btn-size: 70px;
  background-color: var(--white-color);
  border-radius: 50%;
  color: var(--theme-color);
  top: 30px;
  right: 30px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  /* Medium devices */
  right: 20px;
}

.project-card.style3 .icon-btn:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

@media (max-width: 991px) {
  .project-card.style3 .icon-btn {
    --btn-size: 50px;
    top: 20px;
  }
}

.project-card.style3:hover .icon-btn {
  opacity: 1;
  visibility: visible;
}

/*project-card end --------------------------*/
/* project-card4 start ----------------------*/
.project-card4 {
  background: #EFF1F9;
  border-radius: 24px;
  padding: 24px;
}

.project-card4 .project-img {
  margin-bottom: 24px;
}

.project-card4 .project-img img {
  border-radius: 24px;
}

.project-card4 .project-content span {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #1C1C25;
  border-radius: 24px;
  padding: 3px 20px;
  display: inline-block;
  background: -webkit-linear-gradient(0.04deg, #5484FF 17.55%, #642CDC 87.6%);
  background: linear-gradient(89.96deg, #5484FF 17.55%, #642CDC 87.6%);
  z-index: 2;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .project-card4 .project-content span {
    margin-bottom: 3px;
  }
}

.project-card4 .project-content span:before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: #EFF1F9;
  z-index: -1;
}

.project-card4 .box-title {
  font-size: 36px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 0;
  /* Small devices */
}

@media (max-width: 767px) {
  .project-card4 .box-title {
    font-size: 25px;
  }
}

/*project area start --------------------------*/
.projectSlider12 {
  margin-right: -45% !important;
  /* Small devices */
}

@media (max-width: 767px) {
  .projectSlider12 {
    margin-right: 0 !important;
  }
}

.projectSlider12 .slider-controller {
  width: 1380px;
  /* Medium Large devices */
  /* Large devices */
}

@media (max-width: 1399px) {
  .projectSlider12 .slider-controller {
    width: 1100px;
  }
}

@media (max-width: 1199px) {
  .projectSlider12 .slider-controller {
    width: 700px;
  }
}

.projectSlider12 .slider-arrow {
  position: relative;
  --pos-x: 84px;
  min-width: 30px;
  max-width: 30px;
  height: 40px;
  line-height: 40px;
  left: 0;
  border-radius: 0;
  border: none;
  background-color: transparent;
  color: var(--title-color);
  margin: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  /* Extra large devices */
  /* Small devices */
}

@media (max-width: 1500px) {
  .projectSlider12 .slider-arrow {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .projectSlider12 .slider-arrow {
    display: none !important;
  }
}

.projectSlider12 .slider-arrow.slider-next:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #F3F6FF;
  -webkit-mask-image: url("../img/shape/arrow-left.png");
          mask-image: url("../img/shape/arrow-left.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  margin: 0;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: -1;
}

.projectSlider12 .slider-arrow.slider-prev:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #F3F6FF;
  -webkit-mask-image: url("../img/shape/arrow-right.png");
          mask-image: url("../img/shape/arrow-right.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  margin: 0;
  z-index: -1;
}

.projectSlider12 .slider-arrow:hover:before, .projectSlider12 .slider-arrow:hover:after {
  background-color: #00E3DB;
}

.projectSlider12 .swiper-pagination-progressbar.swiper-pagination-horizontal {
  margin: 0;
}

.projectSlider12 .slider-pagination2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.projectSlider12 .total-slides {
  position: relative;
  font-family: var(--title-font);
  font-weight: 400;
  font-size: 16px;
  color: var(--theme-color);
  z-index: 2;
}

.projectSlider12 .total-slides:before {
  content: "/";
  position: absolute;
  left: -10px;
  top: 0;
}

.projectSlider12 .slider-pagination2 {
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 24px;
  color: var(--theme-color);
}

.projectSlider12 .swiper-pagination-progressbar {
  background: #E2E8F6;
}

.projectSlider12 .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--theme-color2);
}

.project-card6 {
  position: relative;
  z-index: 2;
}

.project-card6 .project-img {
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
}

.project-card6 .project-img img {
  -webkit-mask-image: url("../img/project/project-shape.png");
          mask-image: url("../img/project/project-shape.png");
}

.project-card6 .project-img .icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 172px;
  height: 80px;
  line-height: 80px;
  display: block;
  margin: auto;
  text-align: center;
  background: #00E3DB;
  padding-left: 60px;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 47% 100%, 20% 0);
          clip-path: polygon(100% 0, 100% 100%, 47% 100%, 20% 0);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.project-card6 .project-img .icon:hover {
  background-color: var(--theme-color);
}

.project-card6 .project-img .icon:hover i {
  color: var(--white-color);
}

.project-card6 .project-img .icon i {
  font-size: 40px;
  color: var(--title-color);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.project-card6 .box-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 5px;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .project-card6 .box-title {
    font-size: 24px;
  }
}

.project-card6 .box-text {
  margin-bottom: 0;
}

/* project-item2 -------------------*/
.project-area13 {
  background-color: var(--theme-color);
  border-radius: 40px;
  padding: 48px;
  /* Small devices */
}

@media (max-width: 767px) {
  .project-area13 {
    padding: 25px;
  }
}

.project-area13 .project-image img {
  border-radius: 24px;
}

.project-item2_wrapper:first-child .project-item2-details {
  direction: rtl;
  margin-right: 100px;
  /* Medium Large devices */
  /* Medium devices */
}

@media (max-width: 1299px) {
  .project-item2_wrapper:first-child .project-item2-details {
    margin-right: 30px;
  }
}

@media (max-width: 991px) {
  .project-item2_wrapper:first-child .project-item2-details {
    margin-right: 0;
  }
}

.project-item2_wrapper .sec-title {
  max-width: 400px;
}

.project-item2_wrapper .box-text {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #FFFFFF;
  max-width: 500px;
}

.project-item2 .project-item2-details {
  margin-left: 100px;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .project-item2 .project-item2-details {
    margin-left: 30px;
    /* Medium devices */
  }
}

@media (max-width: 1299px) and (max-width: 991px) {
  .project-item2 .project-item2-details {
    margin-left: 0;
  }
}

.scenarios-item {
  position: relative;
  border-radius: 24px;
  z-index: 2;
  overflow: hidden;
}

.scenarios-item_wrap:last-child .scenarios-item .box-content {
  -webkit-mask-image: url("../img/project/shape-1.png");
          mask-image: url("../img/project/shape-1.png");
  width: 670px;
}

.scenarios-item .box-content {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-mask-image: url("../img/project/shape-1-1.png");
          mask-image: url("../img/project/shape-1-1.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: var(--theme-color);
  padding: 30px 62px;
  width: 554px;
  text-align: center;
}

.scenarios-item .box-img {
  border-radius: 24px;
}

.scenarios-item .box-img img {
  border-radius: 24px;
}

.scenarios-item .box-title {
  font-family: var(--body-font);
  font-size: 30px;
  margin-bottom: 0;
  /* Small devices */
}

@media (max-width: 767px) {
  .scenarios-item .box-title {
    font-size: 20px;
  }
}


/* ----------------------------------------------------------------------------- */
.contact-info-box {
  min-height: 220px; /* atur sesuai kebutuhan */
  display: flex;
  align-items: center; /* biar isi rata tengah vertikal */
  justify-content: center; /* opsional kalau mau isi di tengah */
  text-align: center; /* biar teks rata tengah */
  padding: 20px;
}
.contact-info-box .contact-content {
  width: 100%;
}



.blog-card.style1 {
    display: flex;
    flex-direction: column;
    height: 100%; /* supaya semua card sama tinggi */
}

.blog-card.style1 .thumb {
    width: 100%;
    height: 220px; /* atur sesuai kebutuhan */
    overflow: hidden;
    border-radius: 10px;
}

.blog-card.style1 .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* menjaga rasio gambar tanpa merusak ukuran */
}

.blog-card.style1 .body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}




/* Background ungu kehijauan gradasi + efek kabut */
.login-left {
  background: linear-gradient(135deg, rgba(217, 199, 247, 0.9) 0%, rgba(200, 245, 230, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

/* Overlay kabut tipis */
.login-left::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.2); /* putih lembut */
  backdrop-filter: blur(15px); /* efek blur */
  z-index: 0;
}

/* Dekorasi lingkaran animasi */
.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  animation: move 15s linear infinite;
  z-index: 1;
}

.circle.small {
  width: 60px;
  height: 60px;
  bottom: 10%;
  left: 20%;
  animation-duration: 10s;
}

.circle.medium {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 10%;
  animation-duration: 18s;
}

.circle.large {
  width: 200px;
  height: 200px;
  bottom: -10%;
  right: -5%;
  animation-duration: 25s;
}

@keyframes move {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

/* Roket tetap ada di tengah */
.rocket {
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.rocket-img {
  width: 120px;
}

/* Api roket */
.flame {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  background: radial-gradient(circle at 50% 20%, #ff6600, transparent 70%);
  border-radius: 50%;
  animation: flicker 0.3s infinite alternate;
  z-index: 1;
}

@keyframes flicker {
  from { transform: translateX(-50%) scaleY(1); opacity: 0.9; }
  to { transform: translateX(-50%) scaleY(1.3); opacity: 0.5; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

