h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", serif !important;
}

p {
  font-family: "Inter", sans-serif !important;
}

.text-sm,
.text-base,
a,
li,
span {
  font-family: "Inter", sans-serif;
}

.gradient-text {
  background: linear-gradient(45deg, #000000 10%, #e63b32 50%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.bg-custom-outer {
  background: linear-gradient(180deg, #000000 0%, #e63b32 100%);
}

.bg-custom-card {
  background: radial-gradient(circle 340px at 0% 0%, #f8fafc 9%, #ffffff 100%);
}

.line-topl {
  background: linear-gradient(90deg, #e63b32 30%, #000000 70%);
}

.line-leftl {
  background: linear-gradient(180deg, #e63b32 30%, #000000 70%);
}

.gradient-border {
  position: relative;
  background: linear-gradient(45deg, #e63b32, #000000, #e63b32);
  padding: 2px;
  border-radius: 12px;
}

.gradient-border > div {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  height: 100%;
}

.glow-red {
  box-shadow: 0 0 20px rgba(230, 59, 50, 0.5);
}

.glow-red-light {
  box-shadow: 0 0 15px rgba(230, 59, 50, 0.3);
}

.image-3d {
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.15));
  transition: all 0.4s ease;
  border-radius: 12px;
  overflow: hidden;
}

.image-3d:hover {
  transform: translateY(-8px) scale(1.05);
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.2));
}

.benefit-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px -8px rgba(0, 0, 0, 0.18),
    0 10px 15px -8px rgba(0, 0, 0, 0.06);
}

.image-container {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, #010b14 0%, #912b2b 100%);
  padding: 6px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.image-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* loading effect */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loading-overlay.active {
  opacity: 1;
  visibility: visible;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border-top-color: rgb(0, 0, 0);
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

.loading-text {
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
