/* --- Purple + Yellow Liquid Metallic Flow Text --- */
.gsap-title {
  position: relative;
  font-weight: 900;
  /* ⚠ font-size intentional blank — same rahega as user already set */
  text-transform: capitalize;
  background: url("Images/purple.jpg");
  background-size: 300% 300%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: liquidMove 8s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(255,255,255,.25));
}

/* liquid flow */
@keyframes liquidMove {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

/* premium shine overlay */
/* .gsap-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  height: 100%;
  width: 80%;
  background: linear-gradient(
    105deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.7) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-16deg);
  animation: shineFlow 6s ease-in-out infinite;
} */

@keyframes shineFlow {
  0%   { left: -130%; }
  100% { left: 150%; }
}

/* INTERNAL LINK SECTION */

.internal-card-box {
  background: linear-gradient(145deg, #111827, #0b1120);
  border: 1px solid rgba(148, 163, 184, 0.4);
  transition: 0.25s;
  border-radius: 1.6rem;
  box-shadow: 0 12px 45px rgba(15, 23, 42, 0.7);
}
.internal-card-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 70px rgba(15, 23, 42, 0.9);
  border-color: rgba(129, 140, 248, 0.8);
}
.internal-card h5 {
  color: #f1f5f9;
}
.internal-card p {
  color: #9ca3af !important;
}


/* Internal linking cards – force remove underline everywhere */
.internal-card,
.internal-card *,
.internal-card:visited,
.internal-card:hover,
.internal-card:active {
  text-decoration: none !important;
}
#important-links {
  padding-bottom: 140px !important;
}

.navbar-nav .nav-link,
.navbar .dropdown-item {
  font-weight: 600 !important;   /* 500 / 600 / 700 as per your choice */
}

.navbar .nav-link:hover,
.navbar .dropdown-item:hover {
  font-weight: 700;
  opacity: 0.85;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f0e6ff !important;  /* light violet example */
  color: #5a00b5 !important;             /* text color */
}


