*{
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;

}
.nav-link{
    font-weight: bold;
}

/* bg color */
.bg-primary{
    background-color: #02AE5C !important;
}
.bg-primary-1{
    background-color: #04E579 !important;
}
.bg-primary-2{
    background-color: rgba(2, 174, 92, 15%);
}

/* text color */
.text-warning{
    color: #FFE500 !important;
}
.text-success{
    color: #04E579 !important;
}
.text-success-2{
    color: #02AE5C !important;
}


.nav-item{
    padding-left: 20px;
}
.dropdown-item:focus, .dropdown-item:hover{
    background-color:#02AE5C;
    color: #fff !important;
}
  /* Fix ukuran carousel */
        #heroCarousel {
            width: 100%;
            height: 600px; /* fix tinggi */
            margin: 0 auto;
            position: relative;
        }
        #heroCarousel .carousel-inner, 
        #heroCarousel .carousel-item {
            height: 100%;
        }

        /* Background image full cover */
        #heroCarousel .carousel-item {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* Container tulisan tetap fix posisi, supaya tidak bergeser */
        #heroCarousel .carousel-item > div {
            height: 100%;
        }
        #heroCarousel .d-flex.justify-content-between.pt-5 {
            height: 100%;
            align-items: center;
            padding-top: 0 !important;
        }

        /* Tombol prev/next diperbesar dan z-index tinggi supaya bisa diklik di mobile */
        #heroCarousel .carousel-control-prev,
        #heroCarousel .carousel-control-next {
            width: 60px;
            height: 60px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 20;
            opacity: 0.7;
        }
        #heroCarousel .carousel-control-prev:hover,
        #heroCarousel .carousel-control-next:hover {
            opacity: 1;
        }

        /* Pointer events supaya tombol bisa diklik */
        #heroCarousel .carousel-inner {
            position: relative;
        }
        #heroCarousel .carousel-item > div {
            pointer-events: none; /* Konten overlay tidak blok klik tombol */
        }
        #heroCarousel .carousel-item > div * {
            pointer-events: auto; /* Tapi isi konten masih bisa klik */
        }

        /* Responsive img inside carousel */
        #heroCarousel .img-fluid {
            max-height: 400px;
            object-fit: contain;
        }

        /* Text styles */
        .hero-title {
            font-size: 2.5rem;
            font-weight: 700;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 1.8rem;
            }
            #heroCarousel {
                height: 400px;
            }
        }

.banner-hero{
    width: 100%;
    min-height: 500px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.banner-hero .hero-title{
    font-size: 60px;
    font-weight: bold;
}
.text-title{
    font-size: 38px;
}
.about-banner{
    background-image: url('../images/about-banner.png');
    width: 100%;
    height: auto;
    padding-bottom: 50px;
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
}
.current-card{
    background-image: url('../images/about-banner.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
}
.current-card .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(3, 141, 74, 0.6);
    position: relative;
    top: 0;
    left: 0;
    z-index:999
}
.footer-bg{
    background-image: url('../images/footer-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
}
.rounded-full{
    border-radius: 100% !important;
}
.input-lg{
    padding: 15px 10px;
}
.file-drop-area {
    position: relative;
    display: flex;
    align-items: center;
    width: 400px;
    max-width: 100%;
    padding: 80px;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    transition: 0.2s;
  }
  
  .choose-file-button {
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    padding: 8px 15px;
    margin-right: 10px;
    font-size: 12px;
    text-transform: uppercase;
  }
  
  .file-message {
    font-size: small;
    font-weight: 300;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .file-input {
    position: absolute;
    left: 0;
    top: 0;
    max-height: 100%;
    width: 100%;
    cursor: pointer;
    opacity: 0;
    height: 100%;
}
.dotted{
    border: 2px dotted #02AE5C;
}

/* media queries */
@media (max-width: 961px) {
    ul.navbar-nav{
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .navbar-collapse .dropdown-item{
        text-align: left;
    }
    .navbar-toggler{
        color: #fff !important;
        border: 0;
    }
    .navbar-toggler:focus{
        border: 1px solid #fff !important;
        box-shadow: none;
    }
    .banner-hero .hero-title{
        font-size: 37px;
    }
    .banner-hero h3{
        font-size: 20px;
    }
    .banner-hero .subtitle{
        text-align: center;
    }
    .text-title{
        font-size: 33px;
    }
    .hero-title{
        text-align: center;
    }
    .w-50{
        width: 100% !important;
    }
    h5{
        font-size: 18px;
    }
    .w-75{
        width: 100% !important;
    }
}