:root {
  --color-white: #fff;
  --color-blue: #1b9fe0;
  --bg-blue: #1b9fe0;
  --bg-blue-hover: #188fc9;
  --color-orange: #f29015;
  --bg-orange: #f29015;
  --bg-orange-hover: #d87c0c;
  --color-gray: #222222;
  --color-title: #000000;
  --radius: 24px;
}

/* ===== */
/* Hero Start */
/* ===== */
.home-banner-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-bottom-right-radius: 8rem;
  background: none;
  z-index: 0;
}

.home-banner-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-bottom-right-radius: 8rem;
}

.home-banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 1;
  pointer-events: none;
  border-bottom-right-radius: 8rem;
}


.hero-bawah-navbar {
  position: absolute;
  top: 0;
  left: 42rem;
  width: 140px;
  height: 80px;
  z-index: 3;
  opacity: 1;
  pointer-events: none;
}
.hero-bottom {
  position: absolute;
  bottom: 0;
  right: 14rem;
  z-index: 3;
  opacity: 1;
  pointer-events: none;
}

.home-banner-content {
  position: relative;
  display: flex;
  z-index: 4;
  color: var(--color-white);
  width: 100%!important;
  padding: 2rem 6rem;
}

.home-banner-bg-col,
.home-banner-bg {
  display: none !important;
}

.home-banner-title {
  color: var(--color-white);
  margin-bottom: 2rem;
  max-width: 800px;
}

.home-banner-subtitle {
  color: var(--color-white);
  max-width: 600px;
  margin-bottom: 2rem;
}

.home-banner-btn {
  width: 80px;
  height: 40px;
  border-radius: 24px;
  border: none;
  background: var(--color-orange, #f29015);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.home-banner-btn:active,
.home-banner-btn:focus {
  outline: none;
  background: #d87c0c;
}

.home-banner-slide {
  display: none;
  width: 100%;
  height: 100%;
}
.home-banner-slide.active {
  display: block;
}
.home-banner-nav {
  position: absolute;
  left: 6rem;
  bottom: 2rem;
  z-index: 10;
  display: flex;
  gap: 1em;
}

@media (max-width: 1024px) {
  .home-banner-section {
    padding-top: 0 !important;
  }
  .home-banner-nav {
    left: 8rem;
  }
  .home-banner-nav {
    left: 6rem;
    bottom: 0 !important;
  }
}
@media (max-width: 768px) {
  .hero-atas-title {
    display: none;
  }
  .bottom {
    right: 2rem;
  }
  .home-banner-content {
    padding: 1.5rem 2rem;
  }
  .home-banner-nav {
      left: 2rem;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-banner-slide.active .home-banner-content {
  animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
/* ===== */
/* Hero End */
/* ===== */

/* ===== */
/* About Start */
/* ===== */
.about-section {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #fff;
  position: relative;
}

.about-atas {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: auto;
  z-index: 1;
  opacity: 0.8;
  pointer-events: none;
}

.about-kanan {
  position: absolute;
  right: 0;
  top: 8rem;
  width: 140px;
  height: auto;
  opacity: 1;
  pointer-events: none;
  z-index: 0 !important;
}

@media (max-width: 768px) {
  .about-kanan {
    display: none;
  }
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 3rem 7rem;
  gap: 3rem;
  z-index: 1;
  position: relative;
}

.about-text {
  flex: 1.2;
}

.about-title {
  margin-bottom: 0.7rem;
  color: var(--bg-blue);
}

.about-desc {
  margin-bottom: 1.2rem;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}
.about-video {
  width: 100%;
  height: 100%;
  max-width: 500px;
  display: block;
}
.about-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  border-radius: var(--radius);
}
.about-play {
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  padding: 1rem 1.2rem;
  background-color: var(--color-white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  cursor: pointer;
  color: var(--color-blue);
  font-size: 4rem;
}

.about-play:hover {
  background-color: var(--bg-blue);
  transition: all 0.3s ease-in-out;
  color: #ffff;
}

.about-video {
  border-radius: var(--radius);
  z-index: 2;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Responsive About */

@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 1rem;
  }
  .about-image {
    max-width: 100%;
  }
  .about-text {
    text-align: start;
  }
}

/* ===== */
/* About End */
/* ===== */

/* ===== */
/* Keunggulan Start */
/* ===== */
.keunggulan-section {
  position: relative;
  min-height: 420px;
  width: 100%;
  z-index: 0;
  padding-left: 4rem;
  padding-right: 4rem;
  background: none;
}

.keunggulan-inner {
  margin: 0 auto;
  border-top-left-radius: 3rem;
  border-bottom-left-radius: 6rem;
  border-top-right-radius: 6rem;
  border-bottom-right-radius: 3rem;
  padding: 5rem 4rem;
  position: relative;
  height: auto;
  height: 100%;
  z-index: 3;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.keunggulan-kanan {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: auto;
  z-index: 6;
  opacity: 0.2;
  pointer-events: none;
}

.keunggulan-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    #359ed9 0%,
    rgba(53, 158, 217, 0.95) 50%,
    rgba(53, 158, 217, 0.7) 60%,
    rgba(53, 158, 217, 0) 100%
  );
  opacity: 1;
  pointer-events: none;
}
.keunggulan-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  display: none;
}
.keunggulan-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 420px;
}
.keunggulan-left {
  color: #fff;
  width: 100%;
  max-width: 500px;
}
.keunggulan-title {
  margin-bottom: 3rem;
  text-align: start;
}
.keunggulan-list {
  list-style: none;
  padding: 0;
}
.keunggulan-desc-item {
  color: var(--color-white);
  margin-top: -0.5rem;
  margin-bottom: 2rem;
  font-weight: 400 !important;
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInDown 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.keunggulan-item {
  display: flex;
  align-items: center;
  background: transparent;
  margin-bottom: 2rem;
  border: 1.5px solid #fff;
  border-radius: var(--radius);
  transition: background 0.2s, border 0.2s;
  cursor: pointer;
  gap: 2rem;
}
.keunggulan-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 50px;
  border-radius: var(--radius);
  background: var(--color-orange, #f29015);
  color: #fff;
  margin-right: 1rem;
  font-size: 1.25rem !important;
  flex-shrink: 0;
  line-height: 1;
  box-sizing: border-box;
}
.keunggulan-text {
  color: #fff;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  font-size: 20px!important;
}


@media screen and (max-width: 768px) {
    .keunggulan-text {
     font-size: 18px!important;
    }
}

.keunggulan-item h6.keunggulan-number,
.keunggulan-item h6.keunggulan-text {
  margin: 0;
  padding: 0;
}
.keunggulan-item:last-child {
  margin-bottom: 0;
}
.keunggulan-item.active {
  background: #fff;
}
.keunggulan-item.active .keunggulan-number {
  background: var(--color-orange, #f29015);
  color: #fff;
}
.keunggulan-item.active .keunggulan-text {
  color: #505050;
}
.keunggulan-text {
  color: #fff;
}
.keunggulan-item:hover {
  background: #fff;
  transition: all 0.3s ease-in-out;
}
.keunggulan-item:hover .keunggulan-number {
  background: var(--color-orange, #f29015);
  color: #fff;
}
.keunggulan-item:hover .keunggulan-text {
  color: #505050;
}
.keunggulan-item.active:hover {
  background: #fff;
  /* Efek hover pada item aktif tetap sama seperti aktif */
}

@media (max-width: 768px) {
  .keunggulan-inner {
    padding: 6rem 2rem;
  }
  .keunggulan-section {
    padding-left: 0;
    padding-right: 0;
  }
}
/* ===== */
/* Keunggulan End */
/* ===== */

/* ===== */
/* Ekosistem Start */
/* ===== */

.ekosistem-section {
  width: 100%;
  position: relative;
}

.ekosistem-kiri-atas {
  position: absolute;
  top: 4rem;
  left: 12rem;
  width: 80px;
  height: auto;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}
.ekosistem-atas {
  position: absolute;
  top: -1px;
  right: 12rem;
  width: 300px;
  height: auto;
  z-index: 2;
  opacity: 1;
  pointer-events: none;
}
.ekosistem-bawah {
  position: absolute;
  left: 50%;
  bottom: -8rem;
  transform: translateX(-50%);
  width: 800px;
  height: auto;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .ekosistem-bawah {
    width: 100%;
    bottom: -2rem;
  }
}

.ekosistem-inner {
  padding: 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 2;
  position: relative;
}
.ekosistem-kiri-atas,
.ekosistem-atas {
  z-index: 0 !important;
}

.ekosistem-title {
  max-width: 800px;
  margin-bottom: 1.5rem;
  color: var(--bg-blue);
  margin-top: 4rem;
}

.ekosistem-desc {
  max-width: 800px;
  margin: 0 auto 40px auto;
  margin-bottom: 4rem;
}
.ekosistem-swiper-area {
  position: relative;
  width: 100%;
  padding-bottom: 4rem;
  margin: 0 auto;
}
.ekosistem-swiper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 90vh;
  margin-bottom: 4rem;
}
.ekosistem-btn-prev,
.ekosistem-btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: var(--bg-orange);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ekosistem-btn-prev {
  left: -20px;
}
.ekosistem-btn-next {
  right: -20px;
}
.ekosistem-btn-prev:hover,
.ekosistem-btn-next:hover {
  background: var(--bg-orange-hover);
  outline: none !important;
  transition: all 0.3s ease-in-out;
}

.ekosistem-card {
  position: absolute;
  left: 50%;
  top: 0;
  width: 320px;
  max-width: 90vw;
  height: 400px;
  min-height: 320px;
  max-height: 90vw;
  display: flex;
  flex-direction: column;
  transition: transform 1s cubic-bezier(0.4, 1.2, 0.6, 1), opacity 0.8s;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transform: translateX(-50%) scale(1); 
  will-change: transform, opacity;
}

.ekosistem-card.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
  transform: translateX(-50%) scale(1.08);
}
.ekosistem-card.left {
  pointer-events: auto;
  opacity: 1;
  z-index: 2;
  transform: translateX(calc(-50% - 340px)) scale(0.92);
}
.ekosistem-card.right {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  transform: translateX(calc(-50% + 340px)) scale(0.92);
}

.ekosistem-card.left2 {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  transform: translateX(calc(-50% - 650px)) scale(0.88);
}
.ekosistem-card.right2 {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  transform: translateX(calc(-50% + 650px)) scale(0.88);
}

@media screen and (max-width: 2560px) {
  .ekosistem-inner {
    padding: 0 1.5rem;
  }
  .ekosistem-swiper {
    max-width: 90%;
    width: 100%;
    height: auto;
    min-height: 400px;
  }
  ekosistem-card {
    position: absolute;
    left: 50%;
    top: 0;
    width: 320px;
    max-width: 90vw;
    height: 400px;
    min-height: 320px;
    max-height: 90vw;
    display: flex;
    flex-direction: column;
    transition: transform 1s cubic-bezier(0.4, 1.2, 0.6, 1), opacity 0.8s;
    will-change: transform, opacity;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
  }

  .ekosistem-card.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 3;
    transform: translateX(-50%) scale(1.08);
  }
  .ekosistem-card.left {
    pointer-events: auto;
    opacity: 1;
    z-index: 2;
    transform: translateX(calc(-50% - 340px)) scale(0.92);
  }
  .ekosistem-card.right {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
    transform: translateX(calc(-50% + 340px)) scale(0.92);
  }

  .ekosistem-card.left2 {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
    transform: translateX(calc(-50% - 650px)) scale(0.88);
  }
  .ekosistem-card.right2 {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
    transform: translateX(calc(-50% + 650px)) scale(0.88);
  }
  .ekosistem-btn-prev {
    left: 0;
  }
  .ekosistem-btn-next {
    right: 0;
  }
}
.ekosistem-card.out {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: none !important;
}
.ekosistem-card-container {
  position: relative;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 3rem;
  border-top-right-radius: 3rem;
  border-bottom-right-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ekosistem-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1 1 auto;
  display: block;
}

.ekosistem-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8rem 1rem 1.5rem 1rem;
  color: #fff;
  width: 100%;
  background: linear-gradient(transparent, rgba(27, 159, 224, 0.9));
  transition: background 0.3s;
  min-height: 80px;
  display: flex;
  align-items: flex-end;
}

.ekosistem-card.active .ekosistem-overlay {
  background: linear-gradient(transparent, rgba(241, 144, 21, 0.9));

  color: #fff;
}

.ekosistem-overlay-content {
  width: 100%;
  text-align: center;
  font-size: 20px !important;
  color: var(--color-white);
  padding-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    .ekosistem-overlay-content {
     font-size: 18px!important;
    }
}

.ekosistem-detail-row {
  display: flex;
  align-items: end;
  border-bottom-left-radius: 6rem;
  gap: 1rem;
  justify-content: space-between;
  width: 100%;
  margin-top: 1.2rem;
  background-color: rgba(71, 71, 71, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.ekosistem-detail-row span {
  color: #fff;
}

.ekosistem-detail-label {
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.3s;
}
.ekosistem-btn-detail {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.ekosistem-btn-detail i {
  transition: transform 0.25s cubic-bezier(0.4, 1, 0.6, 1), color 0.2s;
}
.ekosistem-btn-detail:hover i {
  transform: rotate(-45deg);
}

.ekosistem-card.active .ekosistem-card-img {
  transform: scale(1.08);
  transition: transform 0.4s cubic-bezier(0.4, 1.2, 0.6, 1);
}
.ekosistem-card.active:hover .ekosistem-card-img {
  transform: scale(1);
}
.ekosistem-overlay-content {
  margin-bottom: 0;
  transition: margin-bottom 0.3s;
}
.ekosistem-card.active:hover .ekosistem-overlay-content {
  margin-bottom: 2rem;
}
.ekosistem-detail-row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.7rem 1.2rem 0.7rem 1.5rem;
  margin: 0;
  background: rgba(71, 71, 71, 0.3);
  border-bottom-left-radius: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 4;
}
.ekosistem-card.active:hover .ekosistem-detail-row {
  opacity: 1;
  pointer-events: auto;
}
/* ===== */
/* Ekosistem End */
/* ===== */

/* ===== */
/* Partnership Start */
/* ===== */
.partnership-section {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  margin: 0;
  overflow: hidden;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.5s;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .partnership-section {
    margin-bottom: 2rem;
  }
  .partnership-atas-title {
    display: none;
  }
}
.partnership-atas-title {
  position: absolute;
  top: 4rem;
  left: 3rem;
  width: 180px;
  height: 80px;
  z-index: 3;
  opacity: 1;
  pointer-events: none;
}

.partnership-banner-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.partnership-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    #359ed9 0%,
    rgba(53, 158, 217, 0.95) 50%,
    rgba(53, 158, 217, 0.7) 60%,
    rgba(53, 158, 217, 0) 100%
  );
  opacity: 1;
  pointer-events: none;
}
.partnership-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 2rem 4rem;
  gap: 8rem;
  position: relative;
  z-index: 4;
}
.partnership-left {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.partnership-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  width: 100%;
  max-width: 400px;
}
.partnership-desc {
  color: #e3f2fd;
  font-size: 1.1rem;
  max-width: 800px;
}
.partnership-right {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}
.partnership-nav {
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}
.partnership-swiper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 350px;
  min-height: 400px;
  height: 400px;
}
.partnership-slide {
  position: relative;
  display: none;
  z-index: 3;
}
.partnership-slide.active {
  display: block;
}
.partnership-bg-img {
  display: none;
}
.partnership-card {
  width: 350px;
  min-width: 320px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 2.5rem 2rem 2rem 2rem;
  opacity: 1;
  pointer-events: auto;
  z-index: 5;
  transform: none;
  transition: none;
  margin-right: 3.5rem;
  box-sizing: border-box;
}
.partnership-card.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
  transform: translateY(-50%) scale(1.08);
}
.partnership-card.up {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  transform: translateY(calc(-50% - 120px)) scale(0.92);
}
.partnership-card.down {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
  transform: translateY(calc(-50% + 120px)) scale(0.92);
}
.partnership-card.out {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: none !important;
}
.partnership-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}
.partnership-card-desc {
  word-break: break-word;
  overflow-wrap: break-word;
  color: #222;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 2.5rem;
  margin-top: 0;
}
.partnership-btn {
  background: #fff;
  color: var(--bg-blue);
  border: none;
  width: 50px;
  height: 80px;
  border-radius: 24px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.partnership-btn:hover {
  background: var(--bg-orange);
  transition: all 0.3s ease-in-out;
  outline: none !important;
  color: #fff;
}
.partnership-btn {
  margin-left: 1rem;
  display: flex;
  align-self: center;
}
@media (max-width: 1024px) {
  .partnership-section {
    min-height: unset !important;
    height: auto !important;
    margin-bottom: 6rem;
  }
  .partnership-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  .partnership-left {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 1.5rem;
  }
  .partnership-right {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }
  .partnership-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  .partnership-nav {
    position: static;
    transform: none;
    margin: 0 auto 1rem auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .partnership-section {
    min-height: unset !important;
    height: auto !important;
    margin-bottom: 6rem;
  }
  .partnership-inner {
    padding: 0 0.5rem;
    gap: 1.5rem;
  }
  .partnership-left {
    margin-bottom: 1rem;
    text-align: center;
    align-items: center;
  }
  .partnership-card {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    margin-bottom: 1rem;
  }
  .partnership-logo {
    width: 120px;
  }
  .partnership-nav {
    position: static;
    transform: none;
    margin: 0 auto 1rem auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
}
@media (max-width: 1024px) {
  .partnership-nav {
    right: 1rem;
  }
}
@media (max-width: 600px) {
  .partnership-nav {
    right: 0.5rem;
  }
}
/* ===== */
/* Partnership End */
/* ===== */

/* ===== */
/* News Start */
/* ===== */
.news-section {
  position: relative;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 12rem;
}
.news-kanan-bawah {
  position: absolute;
  bottom: 0;
  right: -2rem;
  width: 300px;
  height: auto;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
}
.news-slider-controls {
  position: absolute;
  left: 48%;
  bottom: 8rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}
.news-slider-dots {
  position: absolute;
  right: 20%;
  bottom: 8rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.news-inner {
  display: flex;
  align-items: center;
  flex-direction: row;
  padding-left: 4rem;
  gap: 6rem;
  z-index: 3;
}

.news-list {
  margin-left: 4rem;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 2rem;
  position: relative;
  z-index: 3;
}
.news-list::-webkit-scrollbar {
  display: none;
}
.news-card-container {
  flex: 0 0 320px;
  position: relative;
}

.news-category-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #f19015; 
    color: white;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
}

.news-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 3;
  gap: 2rem;
  padding-left: 6rem;
}
.news-title {
  color: #505050;
  width: 100%;
  max-width: 300px;
}
.news-readmore-btn {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--color-orange, #f29015);
  color: #fff;
  border: none;
  width: 260px;
  border-radius: 2.5rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.2s;
  position: relative;
}
.news-readmore-btn span {
  margin-left: 1rem;
}
.news-readmore-btn:hover,
.news-readmore-btn:focus {
  background: #d87c0c;
  outline: none !important;
}
.news-readmore-btn i {
  background: #fff;
  color: #222;
  border-radius: 50%;
  width: 2.3rem;
  height: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-left: auto;
  margin-right: 0;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.news-readmore-btn:hover i {
  background: #fff;
  color: var(--color-orange, #f29015);
  transform: translateX(0) scale(1.08) rotate(-30deg);
}

.news-card-container {
  position: relative;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 3rem;
  border-top-right-radius: 3rem;
  border-bottom-right-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 400px;
  width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.news-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 1 1 auto;
  display: block;
}

.news-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8rem 1rem 1.5rem 1rem;
  color: #fff;
  width: 100%;
  background: linear-gradient(transparent, rgba(27, 159, 224, 0.9));
  transition: background 0.3s;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.news-overlay-content {
  width: 100%;
  text-align: start;
  color: #fff !important;
}


.news-overlay-content .news-crad-title {
  font-weight: 500!important;
  font-size: 20px!important;
}

@media screen and (max-width: 768px) {
    .news-overlay-content .news-crad-title {
     font-size: 18px!important;
    }
}

.news-overlay-content p {
  color: #fff !important;
}

.news-detail-row {
  display: flex;
  align-items: end;
  border-bottom-left-radius: 6rem;
  gap: 1rem;
  justify-content: space-between;
  width: 100%;
  margin-top: 1.2rem;
  background-color: rgba(71, 71, 71, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.news-btn-detail {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.news-card-container:hover .news-detail-row {
  opacity: 1;
  pointer-events: auto;
}
.news-btn-detail i {
  transition: transform 0.25s cubic-bezier(0.4, 1, 0.6, 1), color 0.2s;
}
.news-btn-detail:hover i {
  transform: rotate(-45deg);
}

.news-detail-row span {
  color: #fff;
}

.news-card-container .news-card-img {
  transform: scale(1.08);
  transition: transform 0.4s cubic-bezier(0.4, 1.2, 0.6, 1);
}
.news-card-container:hover .news-card-img {
  transform: scale(1);
}

.news-overlay-content {
  margin-bottom: 0;
  transition: margin-bottom 0.3s;
}
.news-overlay-content .article-date {
    font-size: 14px !important;
}

@media (max-width: 768px) {
  .news-overlay-content .article-date {
    font-size: 12px !important;
  }
}


.news-card-container:hover .news-overlay-content {
  margin-bottom: 2rem;
}

.news-detail-row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.7rem 1.2rem 0.7rem 1.5rem;
  margin: 0;
  background: rgba(71, 71, 71, 0.3);
  border-bottom-left-radius: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 4;
}

.news-slider-btn {
  background: var(--color-orange, #f29015);
  color: #fff;
  border: none;
  width: 80px;
  height: 40px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .news-slider-btn {
    display: none;
  }
}



.news-slider-btn:hover {
  background: #d87c0c;
  color: #fff;
}
.news-slider-dots {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.news-slider-dot {
  width: 32px;
  height: 10px;
  border-radius: var(--radius);
  background: #e0e0e0;
  display: inline-block;
  transition: background 0.2s, width 0.2s;
}
.news-slider-dot.active {
  background: var(--color-orange, #f29015);
  width: 32px;
  height: 10px;
  border-radius: var(--radius);
}

@media (max-width: 1024px) {
  .news-list {
    margin-left: 0;
    gap: 1.2rem;
    padding-bottom: 1.5rem;
  }
  /* .news-card-container { width: 240px; min-width: 200px; flex: 0 0 240px; height: 320px; } */
  .news-slider-controls {
    left: 50%;
    bottom: 5rem;
  }
  .news-slider-dots {
    right: 50%;
    bottom: 2.5rem;
  }
}
@media (max-width: 768px) {
  .news-section {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 1.5rem;
  }

  .news-kanan-bawah {
    width: 60%;
  }

  .news-left {
    padding-left: 0;
  }
  .news-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding-left: 0;
  }
  .news-list {
    margin-left: 0;
    gap: 0.7rem;
    padding-bottom: 1rem;
    width: 100%;
    max-width: fit-content;
  }
  .news-card-container {
    width: 320px;
    min-width: 320px;
    flex: 0 0 320px;
    height: 300px;
  }
  .news-slider-controls {
    left: 50%;
    bottom: 8rem;
  }

  .news-slider-dots {
    right: 38%;
    bottom: 6rem;
    gap: 0.4rem;
  }
  .news-slider-dot,
  .news-slider-dot.active {
    width: 16px;
    height: 6px;
    border-radius: 8px;
  }
  .news-readmore-btn {
    width: fit-content;
    font-size: 0.95rem;
    padding: 0.4rem 0.7rem;
  }
  .news-readmore-btn i {
    width: 1.3rem;
    height: 1.3rem;
    font-size: 0.9rem;
  }
  .news-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}