/* SLIDER  */
.hero-section {
    height: 97vh;
    background-image: url(https://images.unsplash.com/photo-1519389950473-47ba0277781c?q=80&w=2070);
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(37, 99, 235, 0.7); /* overlay biru */
    backdrop-filter: blur(2px);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
  }

  .badge-custom {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
  }

  .btn-light-outline {
    border: 2px solid #ffffff;
    padding: 10px 20px;
    color: white;
    font-weight: 500;
    border-radius: 10px;
    transition: 0.3s;
  }

  .btn-light-outline:hover {
    background-color: white;
    color: #2563eb;
  }

  .stats-box {
    margin-top: 60px;
  }

  .stats-box h3 {
    font-weight: 700;
  }

  .scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    opacity: 0.8;
  }

/* END SLIDER  */

/* PROJEK  */
.project .project-item{
    border: none;
    height: 600px;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background-color: #fff;
}

.project .project-item:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.project .project-item .banner {
    display: flex;
    height: 300px;
    width: 100%;
}

.project .project-item .banner img{
    width: 100%;
    object-fit: cover;
    display: block;
    background-position: center;
}
/* END PROJEK  */


/* WHO ARE WE  */
.who-are .right {
    display: flex;
    justify-content: center; /* center kanan–kiri di dalam .right */
    align-items: center; /* center atas–bawah di dalam .right */
    /* width: 100%; */
    /* height: 100%; */
}

.who-are .left {
    display: flex;
    justify-content: center; /* center kanan–kiri di dalam .right */
    align-items: center; /* center atas–bawah di dalam .right */
    /* width: 100%; */
    /* height: 100%; */
}

.who-are .left .left-element {
    width: 100%;
    height: 400px;
    overflow: hidden;
    /* border: 2px solid #ccc; */
    border-radius: 10px;
    position: relative;
}

.who-are .left .left-element img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* gambar akan menyesuaikan dan tetap proporsional */
    display: block;
}

/* OUR POINT  */
.our-point .feature-card {
    border: none;
    height: 250px;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background-color: #fff;
}
.our-point .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.our-point .feature-card .icon-box {
    width: 60px;
    height: 60px;
    background-color: #3b82f6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-size: 24px;
    margin-bottom: 15px;
}
/* END OUR POINT  */


/* CONTACT US */
.contact-us .section-title {
    text-align: center;
    margin-bottom: 40px;
}
.contact-us .section-title span {
    background-color: #e5edff;
    color: #3b82f6;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
}
.contact-us .section-title h2 {
    font-weight: 700;
    margin-top: 20px;
}
.contact-us .section-title h2 span {
    color: #3b82f6;
}

.contact-us .contact-form {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-us .contact-info {
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-us .info-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-us .info-item i {
    font-size: 24px;
    margin-right: 15px;
}

.contact-us .schedule-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px 25px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-us .tip {
    background-color: #f1f5ff;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    color: #4b5563;
    margin-top: 10px;
}
/* END CONTACT US */