body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
#slider {
  color: #FFFFFF !important;
}
.hero-swiper {
  width: 100%;
  height: 80vh;
  min-height: 520px;
  position: relative;
}
.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .15) 55%, rgba(0, 0, 0, 0) 100%);
}
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 56px;
  color: #fff;
  max-width: 1100px;
}
.title {
  font-size: clamp(32px, 4vw, 64px);
  line-height: 1.05;
  margin: 0 0 16px;
  font-weight: 800;
  color: #FFFFFF;
}
.desc {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 24px;
  opacity: .95;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .75);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, .15);
}
.cta:hover {
  background: rgba(255, 255, 255, .12);
}
.red-shape--top {
  top: 630px;
  right: 35px;
  position: absolute;
  margin: -55px;
  background: #D4372E;
  width: 300px;
  height: 100px;
  -ms-transform: skewX(-12deg);
  -webkit-transform: skewX(-12deg);
  transform: skewX(-12deg);
}
.red-shape--bottom {
  top: 625px;
  right: 251px;
  position: absolute;
  margin: 50px;
  background: #D4372E;
  width: 300px;
  height: 100px;
  -ms-transform: skewX(-12deg);
  -webkit-transform: skewX(-12deg);
  transform: skewX(-12deg);
}
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 22px !important;
}
.swiper-pagination-bullet {
  opacity: .45;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}
.hero-bar {
  position: absolute;
  right: 56px;
  bottom: 56px;
  z-index: 5;
  width: min(520px, 55vw);
  color: #fff;
}
@media (max-width: 568px) {
  .hero-bar {
    bottom:20px;
  }
}
.hero-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hero-bar__title {
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 18px;
  white-space: nowrap;
}
.hero-bar__line {
  margin-top: 12px;
  height: 2px;
  width: 100%;
  background: rgba(255, 255, 255, .7);
}
.hero-bar__dots {
  display: flex;
  justify-content: end;
  gap: 10px;
}
.hero-bar__dots .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  /* Swiper kadang ngasih margin */
  opacity: .55;
  background: #fff;
}
.hero-bar__dots .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ff3b30;
}
.hero-swiper .swiper-pagination {
  position: static !important;
}
@media (max-width: 768px) {
  .hero-swiper {
    height: 75vh;
    min-height: 480px;
  }
  .slide-content {
    padding: 28px;
  }
  .red-shape {
    display: none;
  }
}


/* start::mouse-scroll-indicator */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 9;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, .9);
  cursor: pointer;
  padding: 10px 12px;
}
.scroll-indicator__mouse {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, .85);
  border-radius: 18px;
  position: relative;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, .08);
}
.scroll-indicator__wheel {
  width: 4px;
  height: 10px;
  background: rgba(255, 255, 255, .9);
  border-radius: 3px;
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  animation: wheelDown 1.3s infinite;
}
.scroll-indicator__text {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}

@keyframes wheelDown {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateX(-50%) translateY(14px);
    opacity: .15;
  }
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
/* optional: hide di mobile biar gak ganggu */
@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}
/* end::mouse-scroll-indicator */

.hero-swiper,
.swiper-slide,
.slide-bg,
.slide-overlay,
.slide-content {
  will-change: transform, opacity;
}

/* start::accordion-gsap */
.gsap-accordion {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 16px;
}
@media (max-width: 768px) {
  .gsap-accordion {
    padding: 40px 0px;
  }
}
.gsap-acc-item {
  border-bottom: 1px solid rgba(0, 0, 0, .12);
  padding: 22px 0;
}
.gsap-acc-head {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.gsap-acc-title {
  display: inline-block;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #111;
}
.gsap-acc-item.is-open .gsap-acc-title {
  color: #2443DB;
}
.gsap-acc-panel {
  overflow: hidden;
}
.gsap-acc-body {
  max-width: 760px;
  padding-top: 14px;
  color: rgba(0, 0, 0, .55);
  line-height: 1.65;
  font-size: 15px;
}
.gsap-acc-item {
  position: relative;
}
.gsap-acc-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #2d4cff;
}
/* end::accordion-gsap */

#section-1 {
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
@media (max-width: 768px) {
  #section-1, #section-2, #section-3, #section-4, #section-5, #section-6, #section-7 {
    padding: 30px 0 !important;
  }
}
#section-2 {
  padding: 80px 0;
}
#section-2 .insight-highlight {
  border-top: 1.1px solid #B6B6B6;
  padding-top: 15px;
}
#section-2 .event {
  background-color: #FAFAFA;
  height: 100%;
  padding: 5px 10px 10px 10px;
}
@media (max-width: 568px) {
  .event {
    margin-top: 50px;
  }
}

#section-2 h4 {
  border-bottom: 1.1px solid #B6B6B6;
  line-height: 55px;
}
#section-2 .event-date {
  color: #7B7B7B;
  text-align: end;
  font-size: 10.98px;
}
#section-2 .event-title {
  font-size: 13.18px;
  font-weight: 600;
}
#section-2 .event-items {
  border-bottom: 0.6px solid #B6B6B6;
}
.read-more {
  gap: 14px;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 4px;
  margin-top: 20px;
}
.read-more-icon {
  border-radius: 50px;
  border: 0.5px solid black;
  width: 23px;
  height: 23px;
  display: inline-flex;
  justify-content: center;
  margin-left: 10px;
}
/* start::card */
.blog-card {
  padding-bottom: 20px;
  border-bottom: 6px solid #2443DB !important;
  margin-bottom: 20px;
  padding-top: 30px;
}
.blog-card__image {
  overflow: hidden;
}
.blog-card__image img {
  transition: transform .5s ease;
}
.blog-card:hover img {
  transform: scale(1.05);
}
.blog-card .badge {
  font-weight: 500;
  font-size: 12px;
}
.blog-card .card-title {
  line-height: 1.35;
}
.card-body {
  padding-left: 0;
  padding-right: 0;
}
/* end::card */


/* start::section-3 */
#section-3 {
  background-color: #2443DB;
  padding: 80px 0;
  position: relative;
}
#section-3 .container {
  position: relative;
  z-index: 1;
}
#section-3::before {
  content: "";
  position: absolute;
  top: 80px;
  bottom: 80px;
  right: 60px;
  width: 40%;
  background-image: url("/assets/img/home-explore-opportunities.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 991px) {
  #section-3::before {
    content: "";
    position: absolute;
    top: 80px;
    bottom: -100px;
    right: 10px;
    width: 40%;
  }
}
#section-3 * {
  color: #FFFFFF !important;
}
.explore-opportunities {
  background-color: #D4372E;
  padding: 10px;
  margin-top: 20px;
}

/* end::section-3 */



/* start::section-4 */
#section-4 {
  padding: 80px 0;
}
.projects-filter {
  margin: 40px 0;
}
.filter-btn {
  background: none;
  border: none;
  margin: 10px 15px;
  font-weight: 500;
  color: #888;
  cursor: pointer;
}
.filter-btn.active,
.filter-btn:hover {
  color: #2443DB;
}
.project-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.project-card img {
  width: 100%;
  display: block;
}
.project-card .overlay {
  position: absolute;
  inset: 0;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.project-card .overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: -1;
  opacity: .55;
  transition: opacity .3s ease;
}
.project-card:hover .overlay::before {
  opacity: 0;
}
.projects-grid:has(.project-card:hover)
.project-card:not(:hover) .overlay::before {
  opacity: 1;
}

.overlay h5 {
  color: white;
}
.projects-grid {
  position:relative;
}
.project-item{
  width:33.3333%;
}
@media (max-width:991px){
  .project-item{
    width:100%;
  }
}
.project-card:hover .overlay {
  opacity: 1;
}
.category-date {
  margin-bottom: 20px;
}
.category-date .category {
  color: #D4372E;
}
/* end::section-4 */

/* start::section-5 */
#section-5 {
  padding: 80px 0;
}
.clients-header {
  display: flex;
  justify-content: space-between;
}
.clients-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 34px;
}
.clients-head h2 {
  font-size: 44px;
  line-height: 1.05;
  margin: 0;
  color: #0d1b3f;
  font-weight: 700;
}
.clients-head p {
  max-width: 520px;
  margin: 8px 0 0;
  color: #7b8698;
}
.clients-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 120px;
}
.client-logo img {
  max-height: 60px;
  max-width: 220px;
  opacity: .9;
  transition: transform .25s ease, opacity .25s ease;
}
.client-logo:hover img {
  transform: translateY(-2px);
  opacity: 1;
}
.clients-pagination {
  margin-top: 22px;
  position: static !important;
}
.clients-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: .35;
}
.clients-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
/* END::section-5 */



/* start::section-6 */
#section-6 {
  padding: 80px 0;
}
.stories-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: stretch;
}
.stories-left h2 {
  line-height: 1.05;
  margin: 0 0 16px;
  color: #0d1b3f;
  font-weight: 700;
}
.stories-left p {
  margin: 0 0 28px;
  color: #4c5565;
  max-width: 280px;
}
.stories-nav {
  display: flex;
  gap: 14px;
  margin-top: 40px;
}
.stories-nav button {
  width: 44px;
  height: 44px;
  border: 1px solid #cfd6e4;
  background: #fff;
  color: #0d1b3f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s ease;
}
.stories-nav button:hover {
  border-color: #2443DB;
  color: #2443DB;
}
.stories-right {
  overflow: hidden;
}
.story-card {
  background: #f3f4f6;
  padding: 34px 34px 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.story-card img {
  width: 40px;
  margin-top: 45px;
}
.story-card p {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
  color: #101828;
}
.story-mark {
  width: 48px;
  height: 26px;
  background: #101828;
  opacity: .65;
  border-radius: 18px;
  margin-top: 24px;
}
@media (max-width: 991px) {
  .stories-wrap {
    grid-template-columns: 1fr;
  }
  .stories-left p {
    max-width: 100%;
  }
  .stories-nav {
    margin-top: 18px;
  }
}

/* end::section-6 */


/* start::section-7 */
#section-7{
  padding:80px 0;
}
.faq-title{
  padding: 30px;
  text-align:center;
  max-width: 620px;
  margin: 0 auto;
}
.faq-title p{
  color:#838383;
  margin-top:15px;
}
.faq-columns{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:34px;
}
.faq-col{
  display:flex;
  flex-direction:column;
  gap:26px;
}
.faq-item{
  background:#d9d9d9;
}
.faq-q{
  width:100%;
  border:0;
  background:transparent;
  padding:20px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  text-align:left;
  font-weight:600;
  color:#101828;
}
.faq-icon{
  width:22px;
  height:22px;
  position:relative;
}
.faq-icon::before,.faq-icon::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:16px;
  height:2px;
  background:#101828;
  transform-origin:center;
  transition:transform .25s ease-in-out,opacity .2s ease;
}
.faq-icon::before{
  transform:translate(-50%,-50%) rotate(0deg);
}
.faq-icon::after{
  transform:translate(-50%,-50%) rotate(90deg);
}
.faq-a{
  height:0;
  overflow:hidden;
  transition:height .28s ease;
}
.faq-a-inner{
  padding:0 22px 20px;
  color:#101828;
  opacity:.9;
  line-height:1.6;
}
.faq-item.is-open .faq-icon::before{
  transform:translate(-50%,-50%) rotate(45deg);
}
.faq-item.is-open .faq-icon::after{
  transform:translate(-50%,-50%) rotate(-45deg);
}
@media (max-width:991px){
  .faq-columns{
    grid-template-columns:1fr;
    gap:26px;
  }
}
/* end::section-7 */

/* start::section-8 */
#section-8{
  padding:80px 0;
}
#section-8 .cta-wrap{
  display:flex;
  min-height:380px;
}
#section-8 .cta-media{
  width:45%;
  background-image:url("/assets/img/home-cta-worker.png");
  background-repeat:no-repeat;
  background-position:center top;
  background-size:cover;
}
#section-8 .cta-content{
  width:55%;
  background:#2443DB;
  padding:70px 70px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
#section-8 .cta-content h1{
  color:#fff;
  margin:0 0 18px;
  max-width:620px;
}
#section-8 .cta-content p{
  color:rgba(255,255,255,.85);
  margin:0 0 28px;
  max-width:560px;
  line-height:1.6;
}
#section-8 .cta-form{
  display:flex;
  gap:14px;
  align-items:center;
  max-width:560px;
}
#section-8 .cta-form input{
  flex:1;
  height:48px;
  border:0;
  outline:none;
  padding:0 16px;
  background:#fff;
  color:#101828;
}
#section-8 .cta-form input::placeholder{
  color:#8b95a7;
}
#section-8 .cta-form button{
  height:48px;
  padding:0 26px;
  border:0;
  cursor:pointer;
  background:#D4372E;
  color:#fff;
  font-weight:600;
  transition:transform .2s ease,opacity .2s ease;
}
#section-8 .cta-form button:hover{
  transform:translateY(-1px);
  opacity:.95;
}
@media (max-width:991px){
  #section-8 .cta-wrap{
    flex-direction:column;
  }
  #section-8 .cta-media{
    width:100%;
    height:260px;
  }
  #section-8 .cta-content{
    width:100%;
    padding:50px 26px;
  }
  #section-8 .cta-content h2{
    font-size:32px;
  }
  #section-8 .cta-form{
    flex-direction:column;
    /* display: block; */
    align-items:stretch;
    height: 105px;
  }
  #section-8 .cta-form button{
    width:180px;
  }
}

/* end::section-8 */