.mahadev-banner-container {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.mahadev-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
     background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    display: flex
;
    padding: 20px;
    width: 100%;
    height: 100%;
    /* max-width: 800px; */
    flex-wrap: nowrap;
    align-content: space-between;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.bxms{ 


   max-width: 800px;

}

.banner-fixed-tagline {

	
	font-family: 'Hurricane', cursive;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;


}

.banner-title {
	
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
	line-height:2.5rem;
	
}

.banner-title .highlight {
    
	color: #fff !important;
    border-bottom: 2px solid white;
	line-height:2px;
	background:#47372a;
    padding: 0 10px;
	
}


.banner-desc {
    font-size: 1rem;
    margin-bottom: 20px;
	padding:10px;
}

.banner-btn {
    display: inline-block;
    background-color: #00296b;
    padding: 10px;
    
    text-decoration: none;
}

.banner-btn span {
    display: inline-block;
    padding: 5px 10px;
    border: 1px dashed white;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.banner-btn:hover {
   
   color: white;
   background: #00509d;
   transition: background 0.3s, color 0.3s;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev';
	font-size:14px;
	font-weight:800;
	color:white;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: 'next';
	font-size:14px;
	font-weight:800;
	color:white;
}

.banner-overlay.no-overlay {
    display: none !important;
}


/* Responsive */
@media screen and (max-width: 768px) {
    .mahadev-banner-container {
        height: 400px;
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .banner-desc {
        font-size: 0.9rem;
    }
	
	.banner-fixed-tagline {
		
		font-size: 1.5rem;
		
	}
	
	.banner-btn {
		
		padding:5px !important;
		
		
	}
	
	.banner-btn span{
		
		
		font-size:1rem !important;
		
	}
	
}


.zoom-effect {
  animation: zoomInImage 0.5s ease;
}

@keyframes zoomInImage {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.slide-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2.5s ease;
    z-index: 0;
}

.swiper-slide-active .slide-bg {
    transform: scale(1.1);
}

.banner-overlay {
    position: relative;
    z-index: 2;
}
