
/** ADD YOUR AWESOME CODES HERE **/

.news-updates {
    /*border: 1px solid #ddd;*/
    /*padding: 15px;*/
    /*background-color: #f9f9f9;*/
    /*border-radius: 8px;*/
    /*max-height: 300px;*/
    /*overflow: hidden;*/
    /*position: relative;*/
}

.news-updates h4 {
    margin-bottom: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.news-list {
    overflow: hidden;
    height: 250px; /* Adjust height to your preference */
    position: relative;
}

.news-list ul {
    position: absolute;
    width: 100%;
    animation: scroll-up 20s linear infinite; /* Controls scrolling speed */
}

.news-list li {
    list-style: none;
    padding: 5px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

/* Keyframes for scroll animation */
@keyframes scroll-up {
    0% {
        top: 100%;
    }
    100% {
        top: -100%;
    }
}

.news-list:hover ul {
    animation-play-state: paused;
}

/* Define the animation */
@keyframes zoomInOut {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
  }
  
  /* Apply the animation to the link */
  .apply-now-animation {
    display: inline-block;
    animation: zoomInOut 1s ease-in-out infinite;
  }


  .update-bar {
    background-color: white;
    color: red;
    padding: 5px 0;
    overflow: hidden;
    position: relative;
    min-height: 33px;
}

.update-content {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    animation: scroll-left 20s linear infinite;
}

.update-content p {
    margin: 0;
    padding-left: 100%;
}

/* Keyframes for scrolling text */
@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.update-content:hover {
    animation-play-state: paused;
}

.course-item {
    position: relative; /* Position relative to allow absolute positioning of the description */
    overflow: hidden; /* Hide overflowing content */
}

.image-blog {
    position: relative;
}

.image-blog img {
    width: 100%;
    transition: filter 0.3s ease; /* Smooth transition for blur effect */
}

.course-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    color: #fff;
    padding: 10px;
    transform: translateY(100%); /* Start off-screen at the bottom */
    transition: transform 0.3s ease; /* Smooth transition for slide-in effect */
    opacity: 0; /* Start hidden */
    text-align: center;
    font-size: 14px;
}

.course-item:hover .course-description {
    transform: translateY(0); /* Slide up into view */
    opacity: 1; /* Fade in */
}

.course-item:hover .image-blog img {
    filter: blur(5px); /* Apply blur effect on hover */
}

.owl-theme .owl-nav [class*=owl-]{
    border-radius: 50%;
    height: 33px;
    width: 33px;
    background: #fff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
    position: absolute;
    top: 50%;
  }
  .owl-carousel .owl-nav .owl-prev{
    left: 0;
    transform: translate(0, -50%);
  }
  .owl-carousel .owl-nav .owl-next{
    right: 0;
    transform: translate(0, -50%);
  }

  .owl-carousel .owl-nav .owl-prev img{
    padding-left: 34%;
    padding-top: 18%;
  }
  .owl-carousel .owl-nav .owl-next img{
    padding-left: 34%;
    padding-top: 18%;
  }
  


  .owl-theme .owl-nav [class*=owl-]:hover {
    background: #ddd;
  }
  .object-cover-200{
    height: 200px;
    object-fit: cover;
  }
  .owl-recruiters .item img, .universities .item img{ 
    height: 60px;
    width: 150px;
    object-fit: contain;
  }


  /***********Tab vertical css start************/

.tab-vertical .nav.nav-tabs {
    /* float: left; */
    display: block;
    margin-right: 0px;
    border-bottom: 0;
  }
  .tab-vertical{
    display: flex;
  }
  .tab-vertical .nav.nav-tabs .nav-item {
    margin-bottom: 6px;
    min-width: 270px;
  }
  
  .tab-vertical .nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    background: #fff;
    padding: 17px 49px;
    color: #71748d;
    background-color: #fff;
    -webkit-border-radius: 4px 0px 0px 4px;
    -moz-border-radius: 4px 0px 0px 4px;
    border-radius: 4px 0px 0px 4px;
  }
  
  .tab-vertical .nav-tabs .nav-link.active {
    color: #3c6d90;
    background-color: #efefef !important;
    border-color: transparent !important;
  }
  
  .tab-vertical .nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 4px !important;
    border-top-right-radius: 0px !important;
  }
  
  .tab-vertical .tab-content {
    overflow: auto;
    -webkit-border-radius: 0px 4px 4px 4px;
    -moz-border-radius: 0px 4px 4px 4px;
    border-radius: 0px 4px 4px 4px;
    background: #efefef;
    padding: 30px;
    min-height: 515px;
  }
  
  /***********Tab vertical css start************/

  .course-banner{
    width:100%;
    height: 300px;
    object-fit: cover;
  }

  .mt-100px{
    margin-top: 100px;
  }
  .mt-70px{
    margin-top: 70px;
  }
  


  /* Fixed Contact Details (Right) */
.fixed-contact-details {
    position: absolute;
    top: 0; /* Adjust distance from top */
    right: 0; /* Distance from the right edge */
    background-color: #f5f5f5;
    z-index: 1000; /* Ensure it stays on top */
    text-align: center;
}

.fixed-contact-details p {
    margin: 0;
    padding: 3px 0;
    font-size: 12px;
}

.fixed-contact-details i {
    margin-right: 5px;
}

.head-brand-logo{
    width: 100px;
}

.head-brand{
    font-size: 34px;
    /*margin-left: 3%;*/
}

/* Navbar */
@media screen and (min-width: 992px) and (max-width: 1290px) {
    .hover-btn-new{
        padding: 0px 14px;
    }
    .navbar-right li a{
        font-size: 14px;
    }
    .top-navbar .navbar-light .navbar-nav .nav-link{
        font-size: 14px;
    }
    .head-brand{
        font-size: 20px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1430px) {
    .head-brand-logo{
        width: 100px;
        /*width: 50px;*/
    }
}

@media screen and (min-width: 1191px) and (max-width: 1430px) {
    .head-brand{
        font-size: 28px;
    }
}
@media (max-width:768){
        .head-brand{
            font-size: 15px !important;
			margin-left:2%;
        }	
		.head-brand-logo{
       		width: 70px;
    }
    }
@media screen and (min-width: 350px) and (max-width: 373px) {
  
	.navbar-toggler{
		padding: 6px 6px;
	}
}