body {
  font-family: "Poppins", sans-serif;
}

@keyframes softMove {
  0%,
  100% {
    transform: translateX(-20px);
  }

  50% {
    transform: translateX(20px);
  }
}

.alert-slide {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;

  min-width: 320px;
  max-width: 500px;

  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);

  animation:
    slideDown 0.5s ease forwards,
    slideUp 0.6s ease forwards 5.5s;
}

/* SUCCESS */
.alert-success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

/* ERROR */
.alert-error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

/* Animation */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translate(-50%, -40px) scale(0.95);
  }

  70% {
    opacity: 1;
    transform: translate(-50%, 6px) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

@keyframes slideUp {
  0% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }

  40% {
    transform: translate(-50%, 8px) scale(1.02);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50px) scale(0.95);
    visibility: hidden;
  }
}

.cke_notifications_area {
  display: none !important;
}

/* blog details page css */
.glass {
  background:
    radial-gradient(
      120% 120% at 10% 10%,
      rgba(255, 255, 255, 0.65),
      rgba(255, 255, 255, 0.25)
    ),
    rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.blog-hero-image {
  position: relative;
}

.blog-hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: -85%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 35%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.18) 65%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: imageShine 6.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes imageShine {
  0% {
    left: -85%;
  }

  45% {
    left: -85%;
  }

  75% {
    left: 130%;
  }

  100% {
    left: 130%;
  }
}

.blog-content h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #0e3c47;
}

.blog-content h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #0e3c47;
}

.blog-content p {
  margin-bottom: 1rem;
  line-height: 1.9;
  color: #475569;
  font-size: 1rem;
}

.blog-content ul,
.blog-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  color: #475569;
  line-height: 1.9;
}

.blog-content ul {
  list-style: disc;
}

.blog-content ol {
  list-style: decimal;
}

.blog-content img {
  max-width: 100%;
  border-radius: 1rem;
  margin: 1.5rem 0;
}

.blog-content a {
  color: #0f8f8a;
  font-weight: 600;
}
