
#post-single-10 {
  position: relative;
  padding-top: 120px;
}
#post-single-10 .floating-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
#post-single-10 .floating-header h1 {
  font-size: 1.8rem;
  margin: 0;
}
#post-single-10 .post-content {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#post-single-10 .post-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
}



#related-posts-4 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 1200px;
}
#related-posts-4 .carousel-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
#related-posts-4 .carousel-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
#related-posts-4 .carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  border-radius: 4px;
}
#related-posts-4 .btn-readmore {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  #related-posts-4 .carousel-item img {
    height: 250px;
  }
}



#call-to-action-5 {
  position: relative;

  background-size: cover;
  background-position: center;
  padding: 100px 15px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
#call-to-action-5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
#call-to-action-5 .content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.5s ease;
}
#call-to-action-5 h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  animation: fadeIn 1.2s ease;
}
#call-to-action-5 p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  animation: fadeIn 1.4s ease;
}
#call-to-action-5 .btn {
  background-color: #28a745;
  color: #fff;
  padding: 12px 30px;
  font-size: 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s, background-color 0.3s;
  animation: fadeInUp 1.6s ease;
}
#call-to-action-5 .btn:hover {
  transform: scale(1.1);
  background-color: #218838;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


