@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');


.navbar-dafami {
  background-color: #FFF;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.nav-asp-link {
  color: #FFF; 
}

.logo-company {
  width: 40px;
  margin-right: 1.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  background-color: #FFF;
  color: #212529;
}

h1 {
  font-weight: 600;
  margin-bottom: 1rem;
}

p {
  line-height: 1.6;
}

.btn-tosca {
  background-color: #4BAA7D;
  border: 1px solid #41936D;
  color: #ffffff;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.btn-tosca:hover {
  background-color: #3e936d;
  border-color: #377d5e;
  color: #ffffff;
}

.btn-tosca:active {
  background-color: #367e63;
  border-color: #2f6a52;
  transform: scale(0.98);
}

.btn-tosca:disabled {
  background-color: #a4d2bf;
  border-color: #a4d2bf;
  color: #f0f0f0;
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-tosca:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(75, 170, 125, 0.4);
}

.btn-blue {
  background-color: #2D69FF;
  border: 1px solid #2658d6;
  color: #ffffff;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.btn-blue:hover {
  background-color: #2458e6;
  border-color: #1f4bcc;
  color: #ffffff;
}

.btn-blue:active {
  background-color: #1d49bf;
  border-color: #183ca6;
  transform: scale(0.98);
}

.btn-blue:disabled {
  background-color: #a6bfff;
  border-color: #a6bfff;
  color: #f0f0f0;
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-blue:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 105, 255, 0.4);
}

.bg-jumbotron {
  background: linear-gradient(135deg, #58cba5 0%, #4b6ce1 100%);
  color: white;
  padding: 4rem;
  border-radius: 0;
  margin-bottom: 0;
}

.rotating-image {
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.left-graphic {
  width: 230px;
  height: 230px;
  position: absolute;
  bottom: 5%;
  left: 5%; 
}

.right-graphic {
  width: 300px;
  height: 300px;
  position: absolute;
  top: 3%;
  right: 3%; 
}

@media (max-width: 991.98px) {
  .rotating-image {
    display: none;
  }
}

.btn-transparent {
  /* Style dasar */
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  
  /* Untuk menghilangkan style default browser */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.btn-transparent:hover,
.btn-transparent:focus,
.btn-transparent:active {
  background-color: #4BAA7D;
  color: white;
  border-color: #4BAA7D;
  outline: none;
}

/* Optional: Efek saat tombol diklik */
.btn-transparent:active {
  transform: scale(0.98);
}

.btn-transparent-2 {
  /* Base style */
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  /* Reset browser defaults */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Hover state */
.btn-transparent-2:hover {
  background-color: white;
  color: #2D69FF;
  border-color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Active/focus states */
.btn-transparent-2:active,
.btn-transparent-2:focus {
  background-color: white;
  color: #2D69FF;
  border-color: white;
  outline: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transform: translateY(1px);
}

/* Disabled state */
.btn-transparent-2:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-transparent-3 {
  /* Base style */
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  color: #212529;
  border: 2px solid #212529;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  /* Reset browser defaults */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Hover state */
.btn-transparent-3:hover {
  background-color: #2D69FF;
  color: #fff;
  border-color: #2D69FF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Active/focus states */
.btn-transparent-3:active,
.btn-transparent-3:focus {
  background-color: #2D69FF;
  color: #fff;
  border-color: #2D69FF;
  outline: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transform: translateY(1px);
}

/* Disabled state */
.btn-transparent-3:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-transparent-4 {
  /* Base style */
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  color: #212529;
  border: 2px solid #212529;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  /* Reset browser defaults */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Hover state */
.btn-transparent-4:hover {
  background-color: #4BAA7D;
  color: #fff;
  border-color: #4BAA7D;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Active/focus states */
.btn-transparent-4:active,
.btn-transparent-4:focus {
  background-color: #4BAA7D;
  color: #fff;
  border-color: #4BAA7D;
  outline: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  transform: translateY(1px);
}

/* Disabled state */
.btn-transparent-4:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.card-image {
  background-color: #ffffff;
  border: none;
  text-align: center;
}

.custom-card {
  background-color: #ffffff;
  border: none;
  flex-direction: column;
  display: flex;
  border-radius: 1rem; /* biar sudutnya lembut */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* soft shadow */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card-2 {
  background-color: #ffffff;
  border: none;
  flex-direction: column;
  display: flex;
  border-radius: 1rem; /* biar sudutnya lembut */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* soft shadow */
  text-align: center;
  padding: 2rem;
}

.custom-card-3 {
  background: linear-gradient(135deg, #58cba5 0%, #4b6ce1 100%);
  color: #FFF;
  border: none;
  flex-direction: column;
  display: flex;
  width: 400px;
  border-radius: 1rem; /* biar sudutnya lembut */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* soft shadow */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); /* sedikit lebih tebal pas hover */
}

.custom-card-3:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); /* sedikit lebih tebal pas hover */
}

.fw-bolder {
  font-weight: 800;
}

.display-8 {
  font-size: 30px;
}

.display-9 {
  font-size: 25px;
}
.display-10 {
  font-size: 20px;
}

/* untuk browser berbasis WebKit seperti Chrome & Safari */
::-webkit-scrollbar {
  width: 8px; /* bisa disesuaikan */
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(128, 128, 128, 0.3); /* abu-abu tipis */
  border-radius: 4px;
  transition: background-color 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(128, 128, 128, 0.5); /* lebih tegas saat hover */
}

html {
  scroll-behavior: smooth;
}

.checklist-boxicons {
  list-style: none;
  padding-left: 0;
}

.checklist-boxicons li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  display: flex;
  align-items: start;
}

.checklist-boxicons i {
  color: #4CAF50; /* hijau soft */
  font-size: 1.2rem;
  margin-right: 0.6rem;
}

.second-jumbotron {
  background-color: #F2F4F4;
}

.third-jumbotron {
  background-color: #0F0F34;
}

.card-custom-1 {
  border: 2px solid #fff;
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
}

.bg-footer {
  background-color: #142D52;
}







