:root {
  --brand: #2563eb;
  --brand-2: #14b8a5ce;
  --btn-bg-2: #ea320d99;
  --purple: #0b1220;
  --bg: #f9fafbee;
  --text: #111827;
  --accent: #facc15;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
.blur-header {
  backdrop-filter: saturate(180%) blur(12px);
}
.shadow-soft {
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}

.btn-slide {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  color: white;
  background: #15193a; /* normal button background */
  border-radius: 6px;
  overflow: hidden; /* span bahar na nikle */
  text-decoration: none;
  font-weight: bold;
  z-index: 1;
}
.btn-slide .anime {
  position: absolute;
  left: 0;
  bottom: -100%; /* hidden below */
  width: 100%;
  height: 100%;
  background: var(--brand);
  z-index: -1; /* text upar rahe */
  transition: bottom 0.4s ease-in-out;
}
.btn-slide:hover .anime {
  bottom: 0; /* upar slide kare */
}

.btn-secondary {
  border: 1px solid #fff;
}
.btn-secondary:hover {
  background: #f3f4f6;
  color: #111827 !important;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #eef2ff;
  color: #3730a3;
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.card {
  border-radius: 18px;
  background: #fff;
  padding: 1.25rem;
  border: 1px solid #eef2f7;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.hero-grad {
  background: linear-gradient(135deg, #15193a, #15193a);
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: #6b7280;
}
.footer-link {
  color: #d1d5db;
  text-decoration: none;
}
.footer-link:hover {
  color: #fff;
}
img.cover {
  object-fit: cover;
}
/* When scrolled */
.blur-header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(12px);
}

/* When at top */
.white-header {
  background: white;
}
.h-16 {
  height: 5rem !important;
}
.diagonal-bg {
  position: relative; /* Needed for ::before to align with section */
  overflow: hidden; /* Ensures no weird overflow from clip-path */
}

.diagonal-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(#15193a);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 55%);
  z-index: -1;
}
/* @keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-3px);
  }
  40% {
    transform: translateX(3px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(3px);
  }
}

li:hover .hover-shake {
  animation: shake 0.5s infinite;
}
.move:hover .hover-move {
  animation: shake 0.5s infinite;
} */
