@import url("all.min.css");
@import url("bootstrap.min.css");
@import url("owl.carousel.min.css");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	border: none;
	outline: none;
}

a {
	text-decoration: none !important;
	color: #000;
	transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
}

a:hover,
a:active,
a:focus {
	text-decoration: none !important;
	color: #e95108;
}

.banner {
	background: url('../images/banner.jpg') no-repeat center center;
	background-size: cover;
	height: 500px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	text-align: center;
	position: relative;
}

.banner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(6, 9, 36, 0.62);
}

.banner .container {
	position: relative;
	z-index: 1;
}

.search-bar {
	background: rgba(255, 255, 255, 0.9);
	padding: 15px;
	border-radius: 5px;
}

.navbar-light .navbar-nav .nav-link {
	color: black;
	font-size: 16px;
	font-weight: 500 !important;
}

.navbar-light .navbar-nav .nav-link:hover {
	color: #3257ab;
}

.bg-primary {
	background: #3257ab !important;
}

.text-primary {
	color: #e95108 !important;
}

.bg-danger {
	background: #e95108 !important;
}

.btn-danger {
	background: #e95108 !important;
}

.text-danger {
	color: #e95108 !important;
}


.course-section {
	text-align: center;
	padding-bottom: 0;
	margin-top: 3rem;
}

.course-card {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}

.course-card:hover {
	transform: scale(1.05);
}

.course-card img {
	width: 100%;
	object-fit: cover;
}

.back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #e95108;
	color: white;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	font-size: 30px;
	cursor: pointer;
	display: none;
	z-index: 1000;
}



.video-section {
	background: url('../images/prod10.jpg') no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	height: 500px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	text-align: center;
	position: relative;
}

.video-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-section .container {
	position: relative;
	z-index: 1;
}

.play-button {
	position: relative;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	z-index: 1;
	font-size: 100px;
	cursor: pointer;
	color: white;
	border-radius: 50%;
	border: none;
}

.feature-card {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
	position: relative;
}

.feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-card img {
	width: 100%;
	transition: transform 0.4s ease-in-out;
}

.feature-card:hover img {
	transform: scale(1.1) translateY(-5px);
}

.feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	opacity: 0;
	transition: opacity 0.4s ease-in-out;
}

.feature-card:hover::before {
	opacity: 1;
}

.feature-card .card-body {
	transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.feature-card:hover .card-body {
	transform: translateY(-5px);
	opacity: 1;
}

.feature-card h5 a {
	transition: color 0.3s ease-in-out;
}

.feature-card:hover h5 a {
	color: #ff5722;
}




/* testimonial  */

.testimonial-section {
	background: url('../images/prod7.jpg') center center/cover no-repeat;
	position: relative;
	padding: 100px 0;
	background-attachment: fixed;
}

.testimonial-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	/* Dark overlay */
}

.testimonial-container {
	position: relative;
	text-align: center;
	color: white;
}

.testimonial-img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 3px solid white;
	margin-bottom: 15px;
}

.testimonial-text {
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto;
	font-style: italic;
}

.testimonial-name {
	font-weight: bold;
	font-size: 20px;
	margin-top: 10px;
}

.testimonial-position {
	font-size: 14px;
	font-style: italic;
}

.carousel-indicators {
	bottom: -40px !important;
}

.carousel-indicators li {
	background-color: white;
}




/* Footer Styling */
.footerzone {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

.footer {
	position: relative;
	background: url('../images/v996-011.jpg') center center/cover no-repeat;
	color: white;
	padding: 50px 0;
}

.footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 139, 0.7);
	/* Dark Blue Overlay */
	z-index: 1;
}

.footer .container {
	position: relative;
	z-index: 2;
}

.footer h5 {
	font-weight: bold;
	margin-bottom: 15px;
}

.footer ul {
	list-style: none;
	padding: 0;
}

.footer ul li {
	margin-bottom: 8px;
	word-break: break-all;
	-ms-word-break: break-all;
}

.footer ul li a {
	color: white;
	text-decoration: none;
	transition: 0.3s;
}

.footer ul li a:hover {
	color: #ff5722;
}

.footer .social-icons a {
	display: inline-block;
	background: #ff5722;
	color: white;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	border-radius: 5px;
	margin-right: 8px;
	transition: 0.3s;
}

.footer .social-icons a:hover {
	background: #e64a19;
}

.footer .copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding-top: 15px;
	margin-top: 20px;
	text-align: center;
}



/*---------prodect page-----------*/

.product_banner {
	/* background: url('../images/banaras.jpg') no-repeat center center; */
	/* background-size: cover; */
	min-height: 450px;
	display: flex;
	align-items: center;
	color: white;
	position: relative;
	padding: 30px 20px;
}

.product_banner::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}

.product_banner .container {
	position: relative;
	z-index: 1;
}

.sendsms {
	background: #fff;
	color: #eb5b08;
	padding: 6px 15px;
	border: 1px solid #fff;
	margin-right: 10px;
	border-radius: 4px;
	display: inline-block;
	font-weight: 500;
}

.sendsms:hover {
	background: transparent;
	color: #fff;
	border: 1px solid #fff;
}

.bg-secondary {
	background: #F3F3F3 !important;
}

.bg-primary-light {
	background: #b7cee1;
}

.font-weight-bold {
	font-weight: 500 !important;
}

.ul_deco li {
	margin-top: 10px;
	margin-left: 10px;
	transition: 0.5s;
}

.ul_deco li a i {
	font-weight: 700 !important;
}

.ul_deco li a {
	text-decoration: none;
	color: #e95108 !important;
}

.ul_deco li:hover {
	color: #ff511d !important;
	margin-left: 20px !important;
}


/*------------amenities---------------*/

.amenities li {
	list-style-type: none;
	width: 33.33%;
	display: inline-block;
	margin-right: -4px;
	font-size: 16px;
	margin-bottom: 10px;
}



/* Page Banner */

.page-banner {
	background: #e00445;
	background-position: center center !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	position: relative;
	padding-top: 30px;
	padding-bottom: 30px;
}

.page-banner .page-banner-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0d263b;
	opacity: 0.5;
}

.page-banner h1 {
	color: #fff;
	font-size: 34px;
	font-weight: 700;
	padding-top: 30px;
	margin: 0;
	text-align: center;
	position: relative;
}

.page-banner nav {
	padding-bottom: 20px !important;
	position: relative;
}

.page-banner .breadcrumb {
	background-color: transparent;
	text-align: center;
	margin-bottom: 0;
}

.page-banner .breadcrumb-item {
	color: #e9e9e9;
	font-weight: 600;
	font-size: 16px;
}

.page-banner .breadcrumb-item a {
	color: #fff;
}

.page-banner .breadcrumb-item::before {
	color: #fff !important;
}

@media only screen and (max-width: 991px) {
	.page-banner {
		padding-top: 70px !important;
	}
}

.contact-icon i {
	font-size: 40px;
	margin: 15px 0;
}


@media (min-width: 992px) {
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-right: 1rem;
		padding-left: 1rem;
	}
}

[class*="double-down-line"]::before,
[class*="double-down-line"]::after {
	background-color: green;
}

.landing-header.fixed-top,
.nav-logo-with-bg .navbar-brand,
.double-down-line.text-white::before,
.double-down-line.text-white::after,
.hover-bg-white:hover,
.fixed-header-bg-white.fixed-top,
[class*="double-down-line-left-white"]::before,
[class*="double-down-line-left-white"]::after {
	background-color: var(--theme-white-color);
}



.x-center,
.double-down-line::before,
.double-down-line::after,
.bg-shape::before,
.bg-shape::after {
	left: 50%;
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.y-center {
	top: 50%;
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.xy-center {
	position: absolute;
	top: 50%;
	left: 50%;
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}


[class*="double-down-line"] {
	position: relative;
	padding-bottom: 35px;
}

[class*="double-down-line"]::before,
[class*="double-down-line"]::after {
	content: "";
	height: 2px;
	position: absolute;
}

[class*="double-down-line"]::before {
	width: 120px;
	bottom: 10px;
}

[class*="double-down-line"]::after {
	width: 60px;
	bottom: 0;
}

[class*="double-down-line-left"]::before,
[class*="double-down-line-left"]::after {
	left: 0;
}


.footer-widget .double-down-line-left::before {
	width: 80px;
	bottom: 0;
}

.footer-widget .double-down-line-left::after {
	width: 40px;
	bottom: -5px;
}

.collage-card {
	overflow: hidden;
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.collage-card img,
.collage-card .card-body {
	transition: transform 0.4s ease-in-out;
}

/* .collage-card:hover img {
	transform: scale(1.05);
} */

/* .collage-card:hover .card-body {
	 transform: translateY(10px); 
	background-color: rgba(0, 0, 0, 0.1);
} */

.collage-card {
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.collage-card:hover img {
	transform: scale(1.05);
}

.image-container {
	position: relative;
	overflow: hidden;
}

@media screen and (max-width: 768px) {
	.banner {
		height: 100%;
		padding: 5rem 0.5rem;
	}
}


/* .grows .col-md-6 {
	padding: 0 2px;
}

.grows .col-md-6 .form-group {
	margin-bottom: 0.3rem;
} */


.video-section p {
	color: #fff !important;
}

.admissionForm label {
	font-weight: 500;
}

.admissionForm input {
	outline: none;
	/* border: none; */
	background: transparent !important;
	color: #000 !important;
}

.admissionForm input:focus {
	box-shadow: none !important;
}

.admissionForm table input {
	/* border: none !important; */
	outline: none !important;
	color: #000 !important;
}

.admissionForm table input:focus {
	box-shadow: none !important;
}

.admissionForm table td {
	border: none !important;
}

.new-page-banner {
	background-color: #ecececff;
	position: relative;
	padding-top: 30px;
	padding-bottom: 30px;
}

.inner-page-banner {
	padding: 20px auto;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-transform: uppercase;

}

.inner-container {
	margin: 5% auto;
	padding: 10px;
}


.mydropdown {
	position: relative;
	display: inline-block;
}

.mydropdown-btn {
	position: relative;
	cursor: pointer;
}

.mydropdown-content {
	display: none;
	position: absolute;
	top: 25px;
	right: 0;
	z-index: 99999;
	padding-top: 13px;
	box-shadow: 3px 3px 10px #6d6d6d57;
	border-radius: 5px;
	overflow: hidden;
	min-width: 150px;
}

.mydropdown:hover .mydropdown-content {
	display: block;
}

.my-list-group {
	list-style-type: none;
	background: #fff;
}

.my-list-group li {
	padding: 5px;
	border-bottom: 1px solid #ccc;
}

.my-list-group li a {
	width: 100%;
	padding: 10px 14px;
	font-size: 15px;
	color: #000 !important;
}

.my-list-group li a:hover {
	color: red !important;
}

@media screen and (max-width: 600px) {

	.topheader p,
	.topheader span,
	.topheader li,
	.topheader a,
	.topheader i.fas {
		font-size: 12px;
	}
}



.product_banner {
	width: 100%;
	height: 100%;
	padding: 10px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.starting-header {
	max-width: 600px;
	margin: 0 auto;
	padding: 5px 10px;
	border-radius: 20pc;
	background-color: green;
	font-size: 30px;
	text-transform: uppercase;
	font-weight: bold;
	color: #fff;
	text-align: center;
}

.collage-name,
.collage-location {
	margin: 10px auto;
	padding: 7px 20px;
	font-weight: 600;
	border-radius: 10px;
}

.collage-name {
	text-align: center;
	font-size: 30px;
}

.collage-location {
	width: 100%;
	color: #fff;
	font-size: 18px;
	background-color: #4e4e4e;
}

.mybroucher-table thead th {
	vertical-align: middle;
}

.overtable {
	overflow: auto;
}

@media screen and (max-width: 768px) {
	.starting-header {
		font-size: 18px;
		font-weight: 500;
		max-width: 90%;
		margin: 0 auto;
	}

	.collage-name {
		font-size: 20px;
	}

	.collage-location {
		font-size: 16px;
	}
}

.banner-head {
	font-size: 50px;
	color: #fff;
}

.banner-adderss {
	font-size: 20px;
	color: #fff;
}


.owl-dots {
	display: none;
	;
}

@media screen and (max-width: 768px) {
	.banner-head {
		font-size: 25px;
	}

	.banner-adderss {
		font-size: 16px;
	}
}


@media screen and (max-width: 500px) {
	.double-down-line-left {
		font-size: 18px;
	}

	.footer ul li,
	.footer ul li a,
	.footer ul li p {
		font-size: 13px !important;
	}

	.inner-video-container .double-down-line,
	.course-section h2 {
		font-size: 22px;
		line-height: 1.5;
	}

}