.fancy-title {
  font-family: 'Georgia', serif;
  font-size: 48px;
  letter-spacing: 4px;
  line-height: 1.3;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.35);
  margin-bottom: 20px;
}

.card-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.box-hover {
  cursor: pointer;
  border: 1px solid #eaeaea;
}


.box-hover:hover .btn {
  background-color: #0b5ed7; /* darker bootstrap primary */
}

.box-hover:hover {
  border-color: #e6ecf5;
}

/* Hover effect */
.box-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}
/* Tablet */
@media (max-width: 991px) {
  .fancy-title {
      font-size: 36px;
      letter-spacing: 3px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .fancy-title {
      font-size: 26px;
      letter-spacing: 2px;
      text-shadow: 1px 1px 4px rgba(0,0,0,0.25);
  }
}



.footer-address ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;               /* jarak horizontal */
}

.footer-address ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.course-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.course-item i {
  transition: color 0.3s ease, transform 0.3s ease;
}

/* hover pada whole item */
.course-item:hover i {
  color:rgb(19, 4, 87);          /* warna ikon */
  transform: scale(1.2);  /* ikon sikit besar */
}

.course-item:hover a {
  color:rgb(19, 4, 87);           /* teks ikut tukar */
}
.course-item a {
  text-decoration: none;   /* buang underline */
  color: inherit;          /* ikut warna parent */
}
course-item a:hover,
.course-item a:focus {
  text-decoration: none;
}

.footer-address-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Remove underline & hover effect */
.footer-address-social a {
  text-decoration: none;
  color: inherit;
}

.footer-address-social a:hover {
  text-decoration: none;
  color: inherit;
}

.section-spacing {
  padding: 60px 0;
}

.card-box {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: auto;
}

.call-to-action-inner-6 {
  border-radius: 16px;
  padding: 60px 30px;
}

.home-icon .fa-home {
  font-size: 32px;
  color: #281d62;
  transition: transform 0.3s ease;
}

.home-icon:hover .fa-home {
  transform: scale(1.2);
}

