
*{
font-family: "Roboto Serif", serif;

}
.Category-page-banner{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 70px;
    background-color: #0A97BE;
    color:white;
}

.Category-page-banner h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0;
  color: white;
  width: 70%;
  margin: auto;
  text-align: center;
}

@media (max-width:486px) {
    .Category-page-banner{
        padding:30px;
    }
}
.Category-page-post-category-title {
  font-size: 26px;
  font-weight: 700;
  color: #0a97be;
  margin-block: 30px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.Category-page-post-category-title::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #0a97be, #0abec9);
  left: 0;
  bottom: 0;
  border-radius: 5px;
}


/* Stylish Read More Link */
.Blog-page-blogs-blog-card-body-link{
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #0a97be;
  padding-right: 28px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.Blog-page-latestblog-blog-card-body-a{
  text-decoration: none;
  color: #000;
}
/* Arrow Icon */
.Blog-page-blogs-blog-card-body-link::after {
      font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: '\f101';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  font-size: 15px;
}

/* Underline effect */
.Blog-page-blogs-blog-card-body-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0%;
  background-color: #0a97be;
  transition: width 0.3s ease;
}

/* Hover Effects */
.Blog-page-blogs-blog-card-body-link:hover {
  color: #087e9b;
}

.Blog-page-blogs-blog-card-body-link:hover::after {
  animation: runningArrow 0.6s ease-in-out infinite;
}

.Blog-page-blogs-blog-card-body-link:hover::before {
  width: 100%;
}

/* Running Arrow Animation */
@keyframes runningArrow {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(6px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}

   .Category-page-post-blog-card {
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.171);
      background-color: white;
      display: flex;
      flex-direction: column;
      height: 100%;
      padding-bottom: 10px;
    }

    .Category-page-post-blog-card-body {
      padding: 10px;
    }

    .Category-page-post-blog-card-img {
      width: 100%;
      object-fit: cover;
    }

    .Category-page-post-blog-card-body-para {
      font-size: 15px;
    }
.Category-page-post-button{
    display:flex;
    justify-content: center;
    margin-top: 30px;
      margin-bottom: 20px;
}



.Category-page-post-button button {
  padding: 10px 20px;
  border: none;
  background-color: #0A97BE;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 10px; /* space between icon and text */
  font-weight: 600;
  border-radius: 8px;
  font-size: 14px;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(10, 151, 190, 0.3);
  cursor: pointer;
}

.Category-page-post-button button i {
  font-size: 14px;
}

.Category-page-post-button button:hover {
  background-color: #087c9e;
  transform: translateY(-2px);
}


@media (max-width: 767.98px) {
  .Category-page-post-button {
    justify-content: center;
  }
}


.cta-banner {
  height: 300px;
background: linear-gradient(to right,#0A97BE,#087C9ED9);
position: relative;
width: 100%;
width: 95%;
margin: auto;
border-radius: 1rem;
margin-block: 50px;
}
.cta-banner a{
    text-decoration: none;
}
.cta-banner .container{
  z-index:10;
}
.cta-img2{
    position: absolute;
    height: 100%;
    width: 500px;
    left: 0;
    top: 0;
    z-index: 1;
}
.cta-img2 img{
    width: 100%;
    height: 100%;
}
.cta-img1{
    position: absolute;
    height: 100%;
    width: 500px;
    right: 0;
    bottom: 0;
    top:0;
    z-index: 2;
}
.cta-img1 img{
    width: 100%;
    height: 100%;
}

/* responsive */
@media (max-width:1024px) {
    .cta-banner {
  height: 250px;

}
   .cta-img1{
    width:400px;
}
  .cta-img2{
    width:400px;
}
}
@media (max-width:968px) {
   .cta-banner{
    height: 200px;
   }
   .cta-img1{
    width: 300px;
   }
   .cta-img2{
    width: 300px;
   }
}

@media (max-width:768px) {
   .cta-img1{
    width: 200px;
   }
   .cta-img2{
    width: 200px;
   }
   .cta-banner h4{
    font-size: 16px;
   }
   span{
    font-size: 14px;
   }
}