 
    .single-blog-modern {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  text-align: center;
}

.single-blog-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.single-blog-modern .blog-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s;
}

.single-blog-modern:hover .blog-image img {
  transform: scale(1.05);
}

.single-blog-modern .blog-content {
  padding: 20px;
}

.single-blog-modern .blog-content h4 a {
  color: #003366;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
}

.single-blog-modern .blog-content h4 a:hover {
  color: #ffb703;
}

.single-blog-modern .meta {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  color: #555;
}

.single-blog-modern .meta li {
  font-size: 14px;
  margin-bottom: 5px;
}

.more-btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 8px;
  background: #ffb703;
  color: #003366;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.more-btn:hover {
  background: #003366;
  color: #fff;
}

.btn-modern {
  background: linear-gradient(135deg, #003366, #00509e);
  color: #fff;
  padding: 10px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-modern:hover {
  background: #ffb703;
  color: #003366;
}

 