.BlogListWrapper, .RelatedBlogsWrapper {
    background: url(../../../../public/images/aaa-bg.png) no-repeat center;
    background-size: 100% 100%;
  
    .cardcontentBox {
      display: block;
  
      h2 {
        color: #25406C;
        font-family: 'IvyMode-Regular';
        font-weight: 800;
        letter-spacing: 0;
        font-size: 20px;
        text-transform: capitalize;
      }
  
      p {
        color: #4D4D4D;
        font-family: 'Manrope';
        font-size: 13px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
    }
  
    .cardcontentDetail {
      width: 100%;
      margin-bottom: 10px;
    }
  
    .know-more {
      margin-left: 0;
    }
    .card-image {
      background: url(../../../../public/images/cardBorder.png) no-repeat center;
      background-size: 100% 100%;

      img{
        padding: 5px;
      }
    }
  }
  .blogdetailpageWrapper {
    margin-top: -80px;
    z-index: 2;
    position: relative;

    h2{
      color: #25406C;
      font-family: 'IvyMode-Regular';
      font-weight: 800;
      letter-spacing: 0;
      font-size: 35px;
      text-transform: capitalize;
    }
    p{
      font-family: "Gill-Sans";
      font-size: 22px;
      color: #25406C;
      font-weight: 500;
    }
    
  }
  .blogdetailpageWrapper .blogdetailTxt {
    line-height: 1.6;
    color: #333; /* Customize with your preferred text color */

    /* Headings */
    h1, h2, h3, h4, h5, h6 {
      margin-bottom: 1rem;
      font-weight: 700;
      color: #111; /* Customize with your preferred heading color */
      font-family: "IvyMode-Regular";
    }

    h1 { font-size: 2.5rem; /* Customize size */ }
    h2 { font-size: 2rem; /* Customize size */ }
    h3 { font-size: 1.75rem; /* Customize size */ }
    h4 { font-size: 1.5rem; /* Customize size */ }
    h5 { font-size: 1.25rem; /* Customize size */ }
    h6 { font-size: 1rem; /* Customize size */ }

    /* Paragraph */
    p {
      font-size: 1rem;
        margin-bottom: 1rem;
        color: #4D4D4D; /* Customize with your preferred paragraph color */
    }

    /* Lists */
    ul, ol {
        margin-bottom: 1rem;
        padding-left: 2rem;
    }

    ul{
      list-style-type: circle;
    }
    ol{
      list-style: decimal;
    }
    li {
        margin-bottom: 0.5rem;
        list-style-position: inside; /* Customize with your preferred list style */
    }

    /* Strong */
    strong {
        font-weight: bold;
        color: #000; /* Customize with your preferred strong tag color */
    }
}

/* Define keyframes for dot animation */
@keyframes dot-animation {
  0%, 20% {
    content: "";
  }
  40% {
    content: ".";
  }
  60% {
    content: "..";
  }
  80% {
    content: "...";
  }
}

/* Apply styles to loading text */
.loading-text::after {
  content: "";
  display: inline-block;
  width: 1em; /* Adjust size as needed */
  text-align: left;
  animation: dot-animation 1.5s infinite steps(1);
}