a.btn.btn-primary:hover {
    background-color: #1C64B9 !important;
    color: #ffffff !important;
    border-color: #3B82F6 !important;
  }
  
a.text-dark:hover i {
  color: #1C64B9 !important; /* Contoh: biru */
}

a.text-secondary span {
  transition: color 0.5s ease-in-out;
}

a.text-secondary:hover span {
  color: #1C64B9 !important;
}
.btn-md-square {
    background-color: #1C64B9; /* Biru Bootstrap */
}

.text-primary {
    color: #1C64B9;
}
.bg-primary{
    color: #1C64B9 !important;
}

a.text-secondary:focus span,
a.text-secondary:active span {
  color: #1C64B9 !important; /* lepas hover: kekalkan biru */
}
.nav-item.nav-link:hover {
  color: #fff !important; /* Contoh: Tukar warna jadi biru bila hover */
  
  transition: background-color 0.3s ease, color 0.3s ease; /* Animasi smooth */
}
.nav-item.nav-link.active {
  color: #ffde59 !important; /* Contoh: Tukar warna text aktif ke biru */
  background-color: transparent; /* Tiada background, jika nak kekalkan ia tanpa background */
}
/* Hover untuk link dropdown */
.nav-item.dropdown .nav-link:hover {
  color: #1C64B9; /* Tukar warna bila hover pada dropdown link */
}

/* Hover untuk dropdown menu items */
.dropdown-item:hover {
  background-color: #1C64B9; /* Tukar background dropdown item */
  color: #fff; /* Tukar warna text ke putih */
  transition: background-color 0.3s ease;
}
.hero {
    
    position: relative;
    text-align: center;
  }

  .hero img {
    width: 100%;
    height: auto;
  }

  .hero-text {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 20px;
  }

 

 
  
.hero-text h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffde59;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 15px;
}

.hero-text a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 5px;
  background-color: #004aad;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero-text a:hover {
  background-color: #003080;
}

.navbar {
  align-items: center;
}
@media (max-width: 768px) {
  .hero {
    
   margin-top:100px;
  }
  .hero-text {
    font-size: 14px;
    padding: 10px;
    max-width: 100%; /* rapat sikit */
    border-radius: 6px;
  }

  .hero-text h1 {
    font-size: 20px;
    display:none;
  }

  .hero-text p {
    display:none;
  }
}
