* {
	padding: 0;
	margin: 0;
	font-family: "DM Sans", sans-serif;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body,
textarea,
input {
	padding: 0;
	margin: 0;
	line-height: 1.3;
	font-weight: 400;
	color: #000000;
	font-family: "DM Sans", sans-serif;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	padding: 0;
	margin: 0;
	font-weight: 700;
	font-family: "Barlow Condensed", sans-serif;
}

p {
	margin: 0;
	padding: 0;
}

/* ul{
    list-style: none;
} */
ul,
ol {
	/* padding: 0;
	margin: 0; */
}

a {
	display: inline-block;
}

a:hover {
	text-decoration: unset;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}


/*-_-_Header_CSS_Start_-_-*/
header {
	overflow: hidden;
	background: #642f8c;
	border-bottom: 1px solid #fff;
	padding-top: 30px;
}

header .navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0 10px;
	position: relative;
}

header .navbar-expand-lg {
	flex-wrap: wrap;
}

header .navbar-brand {
	padding: 0;
	margin: 0;
}

header .navbar-brand img {
	max-width: 420px;
}

header .register-btn {
	text-align: center;
	font-size: 16px;
	line-height: 1.25;
	padding: 14px 0;
	color: #642f8c;
	min-width: 120px;
	text-transform: uppercase;
	font-weight: 700;
	transition: 0.4s all ease;
	background: #fff;
	border-radius: 3px;
}

header .register-btn:hover {
	color: #e8a918;
}

header .register-wrap {
	display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.register-wrap .mailto {
    font-size: 16px;
    line-height: 1.25;
    color: #ffffff;
	transition: 0.4s all ease;
	margin-bottom: 10px;
}

.register-wrap .mailto:hover {
    color: #e8a918;
}

header .collapse {
	width: 100%;
}

header .navbar-nav {
	width: 100%;
	background: #fff;
	position: relative;
	margin-top: 20px;
}

header .navbar-nav::before {
	content: "";
	background: #fff;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
	width: 2560px;
	height: 100%;
	position: absolute;
}

header .navbar-nav li {
	flex: 1;
	position: relative;
	border-right: 1px solid #642f8c;
	padding: 0 10px;
	display: flex;
    align-items: center;
    justify-content: center;
}

header .navbar-nav li:first-child {
	border-left: 1px solid #642f8c;
}

header .navbar-nav li a {
	text-align: center;
	font-size: 16px;
	line-height: 1.25;
	padding: 22px 0 !important;
	color: #642f8c;
	text-transform: uppercase;
	font-weight: 700;
	transition: 0.4s all ease;
	width: 100%;
}

header .navbar-nav li a:hover,
header .navbar-nav .nav-link.active,
header .navbar-nav .nav-link.show {
	color: #e8a918;
}

/*-_-_Header_CSS_End_-_-*/

/*-_-_Banner_CSS_Start_-_-*/
.banner {
	position: relative;
}

.banner .carousel-control-next, 
.banner .carousel-control-prev {
    width: 10%;
}

.banner video {
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: cover;
	left: 0;
	top: 0;
}

.carousel-inner {
	display: flex;
}

.banner .banner-content {
	position: relative;
	left: auto;
	width: 100%;
	padding: 6% 0;
	z-index: 1;
}

.banner .banner-content::before {
	content: "";
	background: rgba(255, 255, 255, 0.2);
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
}

.banner .banner-content>img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-content-wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.banner-inner {
	background-color: rgba(255, 255, 255, 0.582);
	border-radius: 7px 7px 7px 7px;
	overflow: hidden;
	padding: 35px 40px;
	max-width: 700px;
	width: 100%;
	/* margin-left: auto;
	text-align: right; */
	position: relative;
	z-index: 1;
}

.banner-content:nth-child(2n) .banner-inner {
	margin-left: 0;
	text-align: left;
}

.banner-inner h1 {
	font-size: 40px;
	line-height: 1;
	color: #642f8c;
	margin-bottom: 20px;
}

.banner-inner p {
	font-size: 16px;
	line-height: 1.5;
	color: #161616;
	font-weight: 500;
	margin-bottom: 22px;
}

.general-link {
	font-size: 18px;
	line-height: 30px;
	font-weight: 700;
	text-align: center;
	padding: 10px 15px;
	color: #fff;
	background: #e8a918;
	border-radius: 5px;
	letter-spacing: 1px;
	transition: 0.4s all ease;
	border: 0;
	outline: unset !important;
}

.general-link:hover {
	background: #642f8c;
}

.banner-logo {
	width: 320px;
	position: relative;
	z-index: 1;
}

.banner-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
/*-_-_Banner_CSS_End_-_-*/

/*-_-_Content_CSS_Start_-_-*/
.page-card-wrap {
	padding: 6% 0;
}

.card-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 920px;
	margin: 0 auto;
}

.card-row .card-col {
	width: 30%;
}

.card-wrap {
	border-radius: 5px 5px 5px 5px;
	overflow: hidden;
	position: relative;
	text-align: center;
}

.card-wrap .card-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-wrap .card-content {
	background: rgba(100, 47, 140, 0.5);
	padding: 60px 30px 30px;
	position: relative;
	z-index: 1;
}

.card-wrap .card-content img {
	width: 60px;
	height: 60px;
	object-fit: contain;
	margin: 0 auto 10px;
}

.card-wrap .card-content i {
	font-size: 45px;
	padding: 7.5px 0;
	color: #fff;
	margin: 0 auto 10px;
}

.card-wrap .card-content h3 {
	font-size: 28px;
	line-height: 2;
	color: #fff;
	margin-bottom: 50px;
}

.general-link {
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

/*-_-_Content_CSS_End_-_-*/

/*-_-_Footer_CSS_Start_-_-*/
footer {
	background: #642f8c;
	padding: 50px 0 45px;
}

footer .footer-logo {
	display: block;
	max-width: 350px;
	margin: 0 auto 30px;
}

footer .footer-logo img {
	width: 100%;
}

footer .footer-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin-bottom: 25px;
	row-gap: 15px;
	column-gap: 40px;
}

footer .footer-links li a {
	font-size: 16px;
	line-height: 1.25;
	font-weight: 500;
	text-transform: capitalize;
	color: #fff;
	transition: 0.4s all ease;
}

footer .footer-links li a:hover {
	color: #e8a918;
}

footer .social-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin-bottom: 25px;
	row-gap: 15px;
	column-gap: 35px;
}

footer .social-links li {
	font-size: 0;
	line-height: 1;
}

footer .social-links li a i {
	font-size: 18px;
	color: #fff;
	transition: 0.4s all ease;
}

footer .social-links li a:hover i {
	color: #e8a918;
}

footer .copyright {
	font-size: 16px;
	line-height: 1.25;
	text-transform: capitalize;
	text-align: center;
	color: #fff;
}

footer .copyright a {
	color: #fff;
	transition: 0.4s all ease;
	cursor: pointer;
}

footer .copyright a:hover {
	color: #e8a918;
}

/*-_-_Footer_CSS_End_-_-*/

/*-_-_About-us_CSS_Start_-_-*/
.aboutus-wrap {
	padding: 6% 0;
}

.aboutus-wrap .row {
	justify-content: space-between;
}

.aboutus-content {
	max-width: 100%;
}

.aboutus-content h2 {
	font-size: 40px;
	line-height: 1.25;
	color: #642f8c;
	margin-bottom: 20px;
}

.aboutus-content p {
	font-size: 16px;
	line-height: 1.5;
	color: #161616;
	margin-bottom: 20px;
}

.aboutus-content p:last-child {
	margin-bottom: 0;
}

.aboutus-content ul {
	margin-bottom: 20px;
}

.aboutus-content ul li {
	font-size: 16px;
	line-height: 1.5;
	color: #161616;
	margin-bottom: 10px;
}

.aboutus-content ul li:last-child {
	margin-bottom: 0;
}

.aboutus-latest {
	height: 85vh;
	overflow-y: auto;
	padding-right: 12px;
}

.updates-card {
	padding: 15px 0;
	border-bottom: 1px solid #e4e4e4;
}

.updates-card:first-child {
	padding-top: 0;
}

.updates-card:last-child {
	border-bottom: 0;
}

.updates-card h5 {
	font-size: 20px;
    line-height: 1.25;
    color: #642f8c;
    margin-bottom: 10px;
}

.updates-card p {
	font-size: 15px;
    line-height: 20px;
	color: #161616;
    margin-bottom: 5px;
}

.updates-card p:last-child {
    margin-bottom: 0;
}

/*-_-_About-us_CSS_End_-_-*/

/*-_-_Our-Team_CSS_Start_-_-*/

.our-team-wrap {
	padding: 6% 0;
}

.our-team-wrap .our-team-content {
	max-width: 1020px;
	margin: 0 auto;
}

.our-team-wrap .our-team-content h2 {
	font-size: 40px;
	line-height: 1.25;
	color: #642f8c;
	text-align: center;
	margin-bottom: 3.5%;
}

.our-team-row {
	row-gap: 30px;
}

.our-team-card {
	text-align: center;
}

.our-team-card img {
	max-width: 100%;
    height: 250px;
    margin: 0 auto 15px;
    display: block;
}

.our-team-card h4 {
	font-size: 20px;
	line-height: 1.25;
	max-width: 100%;
	color: #642f8c;
	margin-bottom: 5px;
}

.our-team-card span {
	font-size: 12px;
	line-height: 1.25;
	width: 100%;
	display: block;
	color: #642f8c;
	margin-bottom: 10px;
}

.our-team-card .more-detail {
	display: none;
	padding-top: 2px;
	margin-bottom: 15px;
}

.our-team-card .more-detail p {
	font-size: 14px;
	line-height: 1.3;
	max-width: 100%;
	color: #000;
	text-align: justify;
	margin-bottom: 12px;
}

.our-team-card .more-detail p:last-child {
	margin-bottom: 0;
}

.our-team-card .see-detail-btn {
	font-size: 14px;
    line-height: 18px;
	font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}
/*-_-_Our-Team_CSS_End_-_-*/

/*-_-_Contact-us_CSS_End_-_-*/
.contactus-wrap .contactus-content {
	padding: 6% 0;
}

.contactus-wrap .contactus-content h4 {
	font-size: 24px;
	line-height: 1.2;
	color: #642f8c;
	margin-bottom: 16px;
}

.contactus-wrap .contactus-content ul {
	padding: 0;
	margin-bottom: 32px;    
	list-style: none;
}

.contactus-wrap .contactus-content ul:last-child {
	margin-bottom: 0;
}

.contactus-wrap .contactus-content ul li {
    font-size: 16px;
    color: #777C81;
    line-height: 26px;
}

.contactus-wrap .contactus-content ul li a {
	color: #642f8c;
	word-break: break-all;
}

.contactus-wrap .contactus-content ul li a:hover {
	text-decoration: underline;
}

.mapouter {
	position: relative;
	text-align: right;
	width: 100%;
	height: 600px;
}

.gmap_canvas {
	overflow: hidden;
	background: none !important;
	width: 100%;
	height: 100%;
}

.gmap_iframe {
	height: 100% !important;
}
/*-_-_Contact-us_CSS_Start_-_-*/

/*-_-_Updates-Programs_CSS_Start_-_-*/
.updates-programs-wrap {
	padding: 6% 0;
}

.updates-programs-wrap .updates-programs-content > h2 {
	font-size: 40px;
	line-height: 1.25;
	color: #642f8c;
	text-align: center;
	margin-bottom: 3%;
}

.updates-programs-accordion .accordion-item {
	overflow: hidden;
}

.updates-programs-accordion .accordion-button {
	font-size: 18px;
	line-height: 1.25;
	color: #642f8c;
	font-weight: 700;
    font-family: "Barlow Condensed", sans-serif;
}

.updates-programs-accordion .accordion-button:focus {
    box-shadow: unset;
}

.updates-programs-accordion .accordion-button:not(.collapsed) {
	color: #fff;
	background: #642f8c;
}

.updates-programs-accordion .accordion-button:not(.collapsed)::after {
	filter: grayscale(1) invert(1);
}

.updates-programs-accordion .accordion-body iframe {
	max-width: 100%;
	margin: 0 auto;
	width: 100%;
	display: block;
}

/*-_-_Updates-Programs_CSS_Start_-_-*/

/*-_-_Responsiveness_-_-*/
@media only screen and (max-width: 1399px) {}

@media only screen and (max-width: 1199px) {
	header .navbar-brand img {
		max-width: 380px;
	}

	.banner-inner {
		max-width: 600px;
	}

	.banner-logo {
		width: 280px;
	}
}

@media only screen and (max-width: 991px) {
	header {
		overflow: unset;
	}

	header .navbar {
		padding: 20px 0;
	}

	header .navbar-nav::before {
		display: none;
	}

	.register-wrap .mailto {
		display: none;
	}

	header .navbar-collapse {
		position: absolute;
		left: 0;
		top: 100%;
		width: 100%;
		z-index: 5;
	}

	header .navbar-nav {
		margin-top: 0;
		padding: 5px 0;
	}

	header .navbar-nav li,
	header .navbar-nav li:first-child {
		padding: 0;
		border: 0;
	}

	header .navbar-nav li a {
		text-align: left;
		padding: 12px 22px !important;
	}

	header .navbar-toggler {
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		border: 0;
		padding: 0;
		box-shadow: unset !important;
	}

	header .register-btn {
		margin-right: 50px;
		padding: 12px 0;
		min-width: 110px;
	}

	.banner-logo {
		display: none;
	}

	.card-row {
		justify-content: center;
		gap: 20px;
	}

	.card-row .card-col {
		width: 44%;
	}

	.aboutus-content {
		margin-bottom: 40px;
	}
}

@media only screen and (max-width: 767px) {
	header .navbar-brand img {
        max-width: 300px;
    }

	footer .footer-logo {
        max-width: 300px;
	}

	.banner-inner {
		padding: 30px 30px;
		max-width: 100%;
		margin-left: 0;
		text-align: left;
	}

	.contactus-wrap .contactus-content {
		padding: 45px 0;
	}

	.card-row { 
		align-items: center;
		flex-direction: column;
	}

	.card-row .card-col {
		width: 100%;
		max-width: 280px;
	}

	.aboutus-wrap {
		padding: 50px 0;
	}

	.banner-inner h1,
	.aboutus-content h2 {
		font-size: 32px;
	}

	.card-wrap .card-content h3 {
		font-size: 24px;
	}

	.updates-programs-wrap .updates-programs-content > h2,
	.our-team-wrap .our-team-content h2 {
		font-size: 32px;
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 575px) {
	header .navbar-brand img {
        max-width: 240px;
    }

	footer .footer-logo {
        max-width: 300px;
	}
}

@media only screen and (max-width: 480px) {
	header .register-wrap {
		display: none;
	}
}

/* body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
} */

.contactus-wrap .container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contactus-wrap .container h1 {
    text-align: center;
    margin-bottom: 1.5rem;
	color: #642f8c;
}

.contactus-wrap .container form {
    display: flex;
    flex-direction: column;
}

.contactus-wrap .container .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contactus-wrap .container .form-group {
    flex: 1;
}

.contactus-wrap .container label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
	color: #642f8c;
}

.contactus-wrap .container input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.contactus-wrap .container button {
    padding: 1rem;
    background-color: #642f8c;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.contactus-wrap .container button:hover {
    background-color: #e8a918;
}

.send-enquirey-wrapper {
	display: flex; 
	justify-content: space-between;
}

@media screen and (max-width: 768px) {
	.send-enquirey-wrapper {
	  /*display property will be overriden as any class further inside this scope*/
	  display: block;
	}
}

/* Style for the scrolling banner */
.scrolling-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #e8a918;
    color: #ffffff;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    z-index: 1000; /* Ensure it's on top of other content */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}

/* Scrolling animation */
.scrolling-banner p {
    display: inline-block;
    animation: scroll-left 30s linear infinite;
    margin: 0;
}

/* Stop scrolling on hover */
.scrolling-banner:hover p {
    animation-play-state: paused; /* Pauses the animation on hover */
}

.scrolling-banner p + p {
    margin-left: 50px; /* Adjust this value as needed for spacing between messages */
}

/* Keyframes for scrolling animation */
@keyframes scroll-left {
    from {
        transform: translateX(100%); /* Start off-screen on the right */
    }
    to {
        transform: translateX(-100%); /* End off-screen on the left */
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .scrolling-banner {
        font-size: 14px; /* Adjust font size for smaller screens */
    }

    .scrolling-banner p {
        /* Ensure text starts and ends properly for small screens */
    }
}