html {

  scroll-behavior: smooth;
}
nav {
  z-index: 9999;
}
.banner {
  z-index: 0;
  width: 100%;
  background-size: cover;
  background-position: center;
  height: 70vh;
  margin-bottom: 20px;
  border-bottom-right-radius: 50pc;
  background-image: linear-gradient(to right, #1bb17f, #39dda6);
}

.banner-action {
  position: fixed;
  top: 20%;
  z-index: 9999;
  transition: left 0.3s ease; 
  margin:0 5%;
}

.banner-action.scrolled {
  left: 0%; /* Adjust as needed */
} 

.banner-text {
  color: white;
  font-size: 4.5rem;
}

.banner-img {
  position: relative;
  right: -50%;
  max-width: 820px;
  height: auto;
  top: 15%;
}

.navbar-brand {
  background-image: url("../../logo.png");
}

.btn-primary {
  background-color: #0d835c !important;
  border-radius:2rem !important;
  border-color:none!important;
  border:0 !important;
}

.btn-check:focus+.btn-primary, .btn-primary:focus {
    box-shadow: 0 0 5px 2.5px rgba(0, 0, 0, 0.25) !important;
    
}

.card-banner {

  padding: 10px;
  border-radius: 25px !important;
  max-width: 300px;
}

.main-section {
  background-color: white;
  position: relative;
  top: 70vh;
}

.service-section {
 
}

.text-utama {
  color: #17a173;
}

.text-section {
    width:50%;
}

.title-section {
  font-size: 2.2rem;
  color: #17a173;
  font-weight: 700;
}

.card-asiadirect {
  width: 325px;
  border-radius: 50px !important;
  border: none !important;
  padding: 5px;
  margin-right: 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card-feature {
  max-height: 600px;
  height: 600px;
  width: 550px;
  max-height:550px;
  overflow: hidden;
  cursor: pointer;
}

.testi-icon {
  font-size: 3rem;
    top: 10px;
    left: 25px;
    color: #17a173;
    position: absolute;
    font-weight: 700;
}

.star-rating {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.star-rating .star {
  font-size: 2rem;
  color: #ccc;
}

.star-rating .star.filled {
  color: gold;
}



.floating {

  position: relative;
  transform-origin: center;
}
.floating:nth-child(1) { top: 25%; }
.floating:nth-child(2) { top: 21%; }
.floating:nth-child(3) { top: 250%; }

.backdrop {

  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    transition: 0.8s;
}

.bg-direct-pay, .bg-direct-ship, .bg-direct-buy, .bg-direct-source {
  
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 2%;
  
}

.bg-direct-pay {
    
  background-image: url("../image/direct-pay.webp");
}

.bg-direct-ship {
    
  background-image: url("../image/direct-ship.webp");
}

.bg-direct-buy {
    
  background-image: url("../image/direct-buy.webp");
}

.bg-direct-source {
    
  background-image: url("../image/direct-source.webp");
}


.feature-detail {
  position: absolute;
  bottom: 0;
  font-size: 3rem;
  color: white;
  z-index: 1000;
  font-weight: bold;
  margin-bottom: 2.5rem;
  margin-left: 2.5rem;
}

.feature-info {
  position: absolute;
  padding:4rem;
  transition: 0.25s;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  text-align: -webkit-auto;
  z-index: 9999;
  background: white;
}

.feature-info:hover {
  
  opacity: 1;
}

.testimoni-section {
  background-color: #17a173;
  padding: 5rem 0;
}

.testimoni-section h2, .testimoni-section > p {
  color: white;
}

.bridging-section > p, .service-section > p {
  padding: 0 2rem;
}

.accordion-item {
  border: 1px solid #ccc !important;
}

.accordion-button {
  font-weight: 500;
}
.accordion-button:not(.collapsed) {
  color: #ffffff !important;
  background-color: #0d835c !important;
}


.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background: darkseagreen;
  border-radius: 10pc;
}

.accordion-button:focus {
  border-color: darkseagreen !important;
  box-shadow: 0 0 5px 0.075rem rgba(209, 209, 209, 0.0) !important;
  border: 1px solid #ccc;
}

.cta-section {

  border-radius: 5rem;
  padding:5%;
  background-image: url("../image/cta.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin:2.5rem 1rem;
}

/* styles.css */
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#scrollToTopBtn:hover {
    background-color: #30835b;
}

#scrollToTopBtn.show {
    opacity: 1;
}


footer {
 background-image: linear-gradient(to right, #1daa7b, #39dda6);
 padding: 4% 2%;
 justify-content: space-evenly;
}