@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600&display=swap');
    
:root {
  --primary-color: #0b5d38;
  --primary-dark: #143d38;
  --primary-light: rgba(35, 100, 107, 0.1);
  --secondary-color: #FF8057;
  --light-color: #FFFFFF;
  --dark-color: #333333;
  --light-gray: #f8f9fa;
  --text-color: #4B5563;
  --heading-color: #1F2937;
  --light-teal: #e0ede8;
  --btn-hover: #4d9072;
}

* {
font-family: 'Nunito', sans-serif;
}

body {
  font-family: 'Nunito', sans-serif;
  color: #333;
}

.bg-primary-custom {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.bg-light-custom {
  background-color: var(--primary-light);
}

.text-primary-custom {
  color: var(--primary-color);
}

.btn-primary-custom {
  background-color: var(--primary-color);
  color: var(--light-color);
  border: none;
}

.btn-primary-custom:hover {
  background-color: var(--btn-hover);
  color: var(--light-color);
}

.btn-outline-primary-custom {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  font-weight: bold;
}

.btn-outline-primary-custom:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.btn-outline-light {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  font-weight: bold;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--primary-color);
}

.btn-light-custom {
  color: var(--primary-color);
  background-color: var(--light-color);
  border: none;
  font-weight: bold;
}

.btn-light-custom:hover {
  background-color: #e1e9ea;
  color: var(--primary-color);
}

.hero-section {
  
  background-attachment: fixed;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-section::before {
content: "";
position: absolute;
inset: 0;
background-color: rgba(0, 0, 0, 0.5); /* Overlay gelap */
z-index: 1;
}

.hero-section .container {
position: relative;
z-index: 2;
}

@media (max-width: 768px) {
.hero-section {
background-position: center top; /* agar tidak terpotong gambar penting di atas */
min-height: 60vh;
padding: 3rem 1rem;
}

.hero-section h1 {
font-size: 1.75rem;
}

.hero-section p.lead {
font-size: 1rem;
}
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.timeline-item {
  border-left: 3px solid var(--primary-color);
  padding-left: 20px;
  margin-bottom: 30px;
  position: relative;
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--primary-color);
}

.timeline-item h4 {
  font-weight: 900;
  color: var(--primary-color);
}

.card-shadow {
background-color: #ffffff;
border-radius: 20px;
box-shadow: 0px 16px 40px rgba(112, 144, 176, 0.2);
padding: 20px;
}

.card {
  transition: transform 0.3s;
  margin-bottom: 20px;
}

.card:hover {
  transform: translateY(-5px);
}

.card-header-custom {
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 12px 20px;
}

a {
    text-decoration: none;
}

.footer a:hover{
    color: white !important;
}

.icon-socmed a:hover{
    color: var(--primary-color) !important;
}

.nav-link {
  color: #333;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link.active {
  color: var(--primary-color);
  font-weight: 900;
}

footer {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.social-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s;
  color: white;
}

.social-icon:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
}

.quote-section {
  background-color: var(--primary-light);
  border-left: 5px solid var(--primary-color);
  padding: 20px;
  margin: 30px 0;
}

.insight-header h2 {
font-weight: 700;
font-size: 1.8rem;
}

.insight-cards {
display: grid;
gap: 1.5rem;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
margin-top: 1rem;
}

.insight-card {
transition: transform 0.3s;
background-color: #ffffff;
border-radius: 1rem;
padding: 1.5rem;
box-shadow: 0px 16px 40px rgba(112, 144, 176, 0.2);
border-left: 4px solid var(--primary-color, #007bff);
}

.insight-card:hover {
  transform: translateY(-5px);
}

.insight-card h4.card-title {
margin-bottom: 1rem;
font-weight: 600;
color: var(--primary-color);
}

.card-list {
list-style: disc;
padding-left: 1.2rem;
margin-bottom: 0;
}

.card-list li {
margin-bottom: 0.5rem;
color: #333;
}

.quote-box {
background-color: #eef3f9;
border-left: 4px solid #007bff;
padding: 1.25rem;
border-radius: 0.75rem;
margin-top: 2rem;
}

.quote-section {

background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
position: relative;
z-index: 1;
}

.quote-section::before {
content: "";
position: absolute;
inset: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: -1;
}

.judul-section{
color: var(--primary-color);
font-weight: 900;
}

.judul-quote{
font-weight: 1000;
}

.funding-box {
  background: #f9f9f9;
  padding: 1.5rem 1rem 1rem 1rem;
  border-radius: 12px;
  border-left: 6px solid var(--primary-color);
  transition: 0.3s ease-in-out;
  height: 100%;
  position: relative;
}

.funding-box:hover {
  background-color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.funding-box p {
  margin: 0;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  padding-left: 2.5rem;
}

.funding-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #e0ede8;
  color: var(--primary-color);
  width: 30px;
  height: 30px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.badge-primary-light {
  color: var(--primary-color);
  background-color: var(--light-teal);
  padding: 8px 16px;
  font-weight: 500;
}

.section-divider {
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 20px 0;
}

.modern-card {
  border-radius: 16px;
  box-shadow: 0px 16px 40px rgba(112, 144, 176, 0.2);
  border: 0;
  height: 100%;
}

.icon-square {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: var(--light-teal);
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-primary {
  color: var(--primary-color);
  font-size: 24px;
}

.check-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: var(--primary-color);
  opacity: 0.1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.text-primary-custom {
  color: var(--primary-color);
}