*{padding: 0; margin: 0; box-sizing: border-box;}
body{
	overflow-x: hidden;
}
.carousel-item img{
	width: 100%;
	height:80vh;
}

.card-body i{
	font-size:20px;
	margin-bottom: 15px;

}

.card-body img{
	min-width:50%;
	max-height: 200px;

}

h1{
	font-family: 'Dancing Script', cursive;
}
.text-justify {
    text-align: justify;
}

marquee {
	
}

/* Optional: Make the video responsive */
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
        }
        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

/*About Us*/
.about_banner {
            position: relative;
            background-image: url('img/about_us.jpeg'); /* Replace 'your-image.jpg' with the path to your image */
            background-size: cover;
            background-position: center;
            height: 500px;
        }
.about_banner_heading {
            position: absolute;
            top: 27%;
            left: 25%;
            transform: translate(-50%, -50%);
            color: #0D6EFD;
			font-size:65px;
			font-family: 'Dancing Script', cursive;
        }
.about_image{
	        height:250px;
			width:520px;
	
}
.card_image {
            width: 100%;
            height: 200px;
        }
        .card-body {
            padding: 0;
        }
        .card-header {
            padding: 0.75rem 1.25rem;
        }
.bg-image-opacity {
            position: relative;
            overflow: hidden;
        }
        .bg-image-opacity::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('img/philosophy.jpeg');
            background-size: cover;
            background-position: center;
            opacity: .3; /* Adjust the opacity value as needed */
            z-index: 1;
        }
        .bg-image-opacity .content_philosophy {
            position: relative;
            z-index: 2;
        }


/*About Us*/

/*Contact_us*/
.contact_banner {
            position: relative;
            background-image: url('img/contact_us.jpeg'); /* Replace 'your-image.jpg' with the path to your image */
            background-size: cover;
            background-position: center;
            height: 500px;
        }
.contact_banner_heading {
            position: absolute;
            top: 27%;
            left: 25%;
            transform: translate(-50%, -50%);
            color: #0D6EFD;
			font-size:65px;
			font-family: 'Dancing Script', cursive;
        }


/*Contact_Us*/
/*our_facilties*/
.facilities_banner {
            position: relative;
            background-image: url('img/our_facilities.jpg'); /* Replace 'your-image.jpg' with the path to your image */
            background-size: cover;
            background-position: center;
            height: 500px;
        }


/*our_facilities*/

/* Carousel-Card*/
.cards-wrapper {
            display: flex;
            justify-content: center;
        }
        #card_image{
            max-width: 350px;
            max-height: 200px;
        }
        .card {
            margin: 0 0.5em;
            box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
            border: none;
            border-radius: 1;
        }
        .carousel-inner {
            padding: 1em;
        }
        #card_prev,
        #card_next {
            background-color: #e1e1e1;
            width: 5vh;
            height: 5vh;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
        }



/* Carousel-Card*/ 
/* whatsapp*/
.whatsapp_float{
	position:fixed;
	bottom:40px;
	right:20px;
}

/*whatsapp*/
/* Common Pop-Up Style */
.popup {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(0, 0, 0, 0.8); /* Black background with transparency */
    z-index: 1200; /* Ensure it sits on top */
}

.popup-content {
    background-color: white;
    margin: 5% auto; /* 15% from top, and center horizontally */
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 1200px;
    text-align: center;
    position: relative; /* Ensure relative positioning */
}

.banner-image {
    width: 100%;
    border-radius: 10px;
}

/* Close Button Style */
.close-btn {
    background-color: red;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 10;
}

.close-btn:hover {
    background-color: darkred;
}

/* Disable interaction with the body when pop-ups are open */
body.disable-interaction {
    pointer-events: none;
    overflow: hidden; /* Prevent scrolling */
}

.popup-content {
    pointer-events: auto; /* Allow interaction with the pop-up */
}

