:root {
  --primary: #007bff;
  --dark: #2a0944;
  --light: #ffffff;
  --gray: #f0f0f0;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}
body {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  background: var(--light);
  color: #000;
  margin-top: 100px;
}
.post {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.post img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: block;
}
.post-date {
  font-size: 0.85rem;
  color: #6c757d;
}
#loadingPosts {
  display: none;
}
.blog-container {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  padding: 32px 24px;
}
.blog-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #002f6c;
  margin-bottom: 12px;
}
.blog-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.posts-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.post-card {
  background: #f4f8fb;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s;
}
.post-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.10);
}
.post-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 8px;
}
.post-meta {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 16px;
}
.post-content {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
}
.no-posts {
  text-align: center;
  color: #aaa;
  font-size: 1.1rem;
  margin-top: 40px;
}
.post-text {
  white-space: pre-wrap;
}
.hover-effect {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateY(0);
}
.hover-effect:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(8, 60, 140, 0.4) !important;
}
.divider-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}
.divider-custom-line {
  width: 100%;
  max-width: 10rem;
  height: 0.4rem;
  border-radius: 1rem;
  background: linear-gradient(90deg, transparent, #083c8c, transparent);
}
.divider-custom-icon {
  padding: 0 1.5rem;
  font-size: 2.5rem;
  animation: pulse 2s infinite;
}
.wg-animated-gradient {
  background: linear-gradient(135deg,
      #083c8c 0%,
      #0060a8 25%,
      #0090cc 50%,
      #0060a8 75%,
      #083c8c 100%
    );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
  letter-spacing: 3px;
  animation: gradientShift 6s ease infinite;
  position: relative;
  display: inline-block;
  padding: 0 10px;
}
.wg-animated-gradient::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #0090cc, transparent);
  border-radius: 100%;
  filter: blur(2px);
  animation: linePulse 3s ease infinite;
}
.excellence-text {
  font-weight: 700;
  background: linear-gradient(45deg, #ffd700, #ffcc00, #ffd700);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  animation: shine 3s ease infinite;
}
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}
.floating-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
}
.element-1 {
  width: 200px;
  height: 200px;
  background: #083c8c;
  top: 20%;
  left: 100%;
  animation: float 8s ease-in-out infinite;
}
.element-2 {
  width: 300px;
  height: 300px;
  background: #0060a8;
  bottom: 20%;
  right: 10%;
  animation: float 10s ease-in-out infinite reverse;
}
.element-3 {
  width: 150px;
  height: 150px;
  background: #0090cc;
  top: 50%;
  left: 50%;
  animation: float 12s ease-in-out infinite;
}
@media (max-width: 768px) {
  .element-1,
  .element-2,
  .element-3 {
    display: none !important;
  }
}
.stat-item {
  position: relative;
  z-index: 1;
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #343a40;
  margin-bottom: 0.5rem;
}
.stat-number-plus::after {
  content: "+";
  margin-left: 4px;
  font-weight: bold;
  color: #083c8c;
}
.stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: 1px;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%
  }
  50% {
    background-position: 100% 50%
  }
  100% {
    background-position: 0% 50%
  }
}
@keyframes linePulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}
@keyframes shine {
  0% {
    background-position: 0% 50%
  }
  100% {
    background-position: 200% 50%
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-50px) translateX(20px);
  }
}
@media (max-width: 992px) {
  .blog-title {
    font-size: 3.5rem !important;
  }
  .blog-subtitle {
    font-size: 1.8rem !important;
  }
  .stat-number {
    font-size: 2rem !important;
  }
  .stat-label {
    font-size: 1rem !important;
  }
}
@media (max-width: 768px) {
  .blog-title {
    font-size: 2.5rem !important;
  }
  .blog-subtitle {
    font-size: 1.4rem !important;
  }
  .divider-custom-line {
    max-width: 5rem;
  }
  .divider-custom-icon {
    font-size: 1.8rem;
  }
}
.dark-mode a {
  color: #000000 !important;
  text-decoration: none;
}
.dark-mode h1,
.dark-mode h2,
.dark-mode h3,
.dark-mode h4,
.dark-mode h5,
.dark-mode h6,
.dark-mode p{
    color: #000000;
}
.dark-mode footer a,
.dark-mode footer span,
.dark-mode footer p {
  color: #ffffff !important;
  text-decoration: none;
}