.nav-list-item:hover{
    font-size: large;
}
.card-image-css{
    max-height: 13em;
     min-height: 13em;
}
.card-body:hover{
    filter: brightness(70%);
}
.card-title{
    font-size: x-large;
    margin-bottom: 1rem;
    color: #1919ab;
}
.card-text{
  color: #030395cf;
}
.cardline{
      border-top: 5px solid red;
    
  }
  .card{
       box-shadow:12px 12px 70px #38148c72;
        max-height: 35rem;
        min-height: 35em;
  }
  .card-body{
    overflow: hidden;
  }
  .img-fluid{
    max-height: 600px;
    filter: brightness(80%) blur(2px);
  }
  .zoom-card {
    transition: transform 0.3s;
  overflow: hidden; /* Hide the overflowing overlay */
  position: relative; /* Add a smooth transition effect */
  }
  
  .zoom-card:hover {
    transform: scale(1.05); /* Apply a scaling transformation on hover (zoom in) */
  }
  .image-container {
    position: relative;
    overflow: hidden;
    max-height: 13em;
     min-height: 13em;
  }
  .card-line{
    text-decoration: none; /* Remove underlines */
    color: inherit; /* Inherit text color */
    cursor: pointer; /* Change cursor to indicate interactivity */
    display: block;
  }
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.703); /* Semi-transparent background */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s; /* Fade-in transition */
    
  }
  
  .image-container:hover .image-overlay {
    opacity: 1;/* Show the overlay on hover */
    
  }
  
  /* Custom CSS to style the "Read More" button */
.btn-custom {
  background-color: #37148c; /* Orange background color */
  color: #fafafa; /* White text color */
  border: none; /* Remove the button border */
  border-radius: 10px; /* Rounded corners */
  padding: 10px 20px; /* Add padding for a better appearance */
  text-decoration: none; /* Remove the default link underline */
  transition: background-color 0.3s; /* Add a smooth hover effect */
}

.btn-custom:hover {
  background-color: #FF8C00; /* Darker orange on hover */
}

  
.blurred-image {
  width: 100%;
  height: auto;
  filter: brightness(10%) blur(4px); /* Adjust the blur effect as needed */
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 4em; /* Adjust the font size as needed */
  
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
@media (max-width: 556px) {
  /* Adjust font size for smaller screens */
  .text-overlay {
      font-size: 2.5em;
      margin-top: -2rem;
  }
}
@media (max-width: 400px) {
  /* Adjust font size for smaller screens */
  .text-overlay {
      font-size: 2em;
      margin-top: -0.5rem;
  }
}
@media (min-width: 557px) and (max-width: 900px) {
    /* Adjust font size for smaller screens */
    .text-overlay {
        font-size: 3.5em;
    }
}

@media (min-width: 901px) and (max-width: 1100px) {
  /* Adjust font size for smaller screens */
  .text-overlay {
      font-size: 4em; 

  }
}
@media screen and (min-width:992px){
    .nav-item {
    line-height:80px;
    }
    
  }