
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.news-hero{
    width: 100%;
    height: auto;
    padding-bottom: 30px;
    margin-top: 100px;
}

.line-title{

}
.line-title h4{
    font-size: 25px;
    color: #2db155;
    font-weight: bold;
    font-family: quantico;
}
.line-title hr{
    width: 100%;
    /*height: 5px;
    background: green;*/
    border:3px solid green;
}

.top-post-card{
    width: 100%;
    /*height: 250px;*/
    position: relative;
    padding-bottom: 30px;

}
.top-post-card:hover{
    opacity: 0.9; /* Slight fade */
    transform: scale(1.02); /* Optional subtle zoom */
}
.top-post-card img{
    width: 100%;
    height: 100%;
    
}

.content-post-card{
    max-width: 100%;
    position: absolute;
    bottom: 30px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    /*background: linear-gradient(to left, blue, green);*/
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.content-post-card .cate label{
    font-size: 20px;
    color: yellow;
    /*font-weight: bold;*/
}
.top-post-card:hover .content-post-card{
    transform: translateY(-5px);
    opacity: 1;
}
.post-title label{
    font-size: 25px;
    color: #fff;
    cursor: pointer;

}
.content-post-card label, span{
    /*font-weight: bold;*/
}


/*For single post page*/
.breadcumb label{
    font-size: 15px;
    font-weight: bold;
    color: #ddd;
}
.breadcumb a{
    color: #d5d5d5;
}
.single-post-bg .title h4{
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
}
.single-post-bg .title label{
    color: #d5d5d5;
}
.pre-post hr{
    border: 2px solid #FF007F;
}
.pre-post h4{
    color: #555;
    font-size: 13px;
}
.pre-post .title a{
    font-size: 20px;
    font-weight: bold;
    color: #555;
    /*color #FF007F*/
}

.pre-post .title a:hover{
    color: #FF007F;
}
.side-bg{
    width: 100%;
    height: auto;
    padding-left: 5px;
    padding-right: 15px;
    padding-bottom: 30px;
}

.side-bg .title h4{
    font-size: 25px;
}
.recent-post a{
    font-size: 17px;
    color: #555;
}
.recent-post a:hover{
    color: #FF007F;
}



.footer{
    width: 100%;
    /*background: #034140;*/
    background: #000;
    border-top: 2px solid #034140;
    height: auto;
    padding-bottom: 20px;
    padding-top: 100px;
}
@media(max-width: 992px){
    .footer{
       padding-left: 15px;
       padding-right: 15px;
    }
    .predict-content{
        padding-left: 15px;
        padding-right: 15px;   
    }
}
.footer-title h5{
    color: #fff;
    font-family: quantico;
    font-size: 20px;
}
.footer-title hr{
    border:1px solid #fff;
    background: #fff;
    color: #fff;
    position: relative;

}
.footer p{
    text-align: justify;
    color: #d5d5d5;
    font-size: 15px;
}
.footer a{
    color: #d5d5d5;
    font-size: 15px;
    white-space: 5px;
}

















/* Container for the blog post */
.blog-post {
  position: relative;
  overflow: hidden;
  /*border-radius: 10px;*/
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Image styling */
.blog-post img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay with linear gradient (only behind the text) */
.blog-post .gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%; /* Gradient height */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

/* Text displayed on top of the gradient */
.blog-post .post-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}
.post-text label{
    color: #01F1F1;
}
.post-text span{
    color: #fff;
    font-weight: bolder;
}
.post-text a{
    color: #fff;
}
.cate a{
    color: #01F1F1;
    text-decoration: none;
}
/* Hover effect on the box */
.blog-post:hover {
  opacity: 0.9; /* Slight fade */
  transform: scale(1.02); /* Optional subtle zoom */
}

/* Hover effect for the text */
.blog-post:hover .post-text {
  transform: translateY(-5px);
  opacity: 1;
}


.thick-underline-custom {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
}

.thick-underline-custom::after {
  content: "";
  position: absolute;
  bottom: 0; /* Align underline to the bottom of the text */
  left: 0;
  width: 100%;
  height: 4px; /* Thickness of the underline */
  background-color: #01F1F1; /* Color of the underline */
  border-radius: 2px; /* Optional rounded corners */
  transition: width 0.3s ease; /* Optional hover animation */
}

.thick-underline-custom:hover::after {
  width: 120%; /* Expands underline on hover */
  left: -10%; /* Center it when expanded */
}
.search-form{
    border:1px solid #ddd;
    display: flex;
    padding-left: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.search-form input{
    width: 100%;
    border:none;
    outline: none;
    padding-left: 10px;
}
.search-form button{
    padding: 5px;
    padding-left: 15px;
    border:none;
    text-align: center;
    outline: none;
}
.post-sec{
    margin-top: 20px;
}
.post-sec ul li{
    list-style: none;
    margin-top:7px;

}
.post-sec ul{
    margin: 0;
    padding: 0;
}
.post-sec ul li a{
    width: 100%;
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: #555
}
.post-sec ul li a:hover{
    color: #01F1F1;
}
.small-post{
    width: 100%;
    display: flex;
    margin-top: 25px;
    
}
.image-area{
    width: 150px;
    height: 90px;
}
.image-area img{
    width: 100%;
    height: 100%;
}
.cont-area{
    padding-left: 25px;
    display: flex;
    flex-direction: column;
}
.the-tags{
    width: 100%;
    height: auto;
    


}
.the-tags a{
    text-decoration: none;
    text-align: center;
    background: #f1f1f1;
    border-radius: 6px;
    color:#888; 
    /*border:1px solid #fff;*/
    box-shadow: 0 1px 2px rgba(0,0,0,0.7);
    width: auto;
    height: auto;
    /*padding: 7px;*/
    margin: 5px;
}