@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");


.navbar {
	position: fixed !important;
	top: 0px !important;
	width: 100%;
	z-index: 1049;
	background: #fff;
}


.top-navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;

  background: #fff;
  color: #fff;
  height: 70px;
  padding: 1em;
  width: 100%;
  max-width: 1150px;
  margin: auto;
  position: -webkit-sticky; 
  position: sticky;
  top: 0;
  z-index: 10;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px; /* Adjust the gap as needed */

}

.menu li {
  display: flex;
  align-items: center;
}


.menu li a {
  color: #000; font-weight: 500;
}

.menu li a:hover {
  text-decoration: none;
	 color: #17479E; font-weight: 500;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}
.separator {
  margin-left: 10px; /* Adjust the spacing as needed */
  color: #000; /* Adjust the color as needed */
}

.menu li:last-child .separator {
  display: none; /* Hide the separator after the last item */
}
.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #17479E;
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

#menu-toggle:checked ~ .menu li:not(:last-child)::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ccc; /* Adjust the color to match your design */
    margin: 10px 0; /* Adjust the spacing around the hr */
}

.menu-button::before {
  content: "";
  margin-top: -8px;
}

.menu-button::after {
  content: "";
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 700px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 80px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1; background-color: #193579;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    display: none;
  }
  #menu-toggle:checked ~ .menu li {
   /* border-bottom: 1px solid #ccc;*/
    height: 30px;
  /*  padding: 0.5em;*/
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
    text-align: center;
    color: #fff !important;
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #193579;
  }
  .menu li a {
    color: #fff;
  }
  .menu > li:not(:last-child) {
  
  }

  .separator {
   display: none;
  }

 
}



.header_heading {
	color: #f97316;
	font-size: 22px;
	font-weight: 700;
}
.logo {
	width: 50%;
}

@media only screen and (max-width:1024px){
  .header_heading {
	display: none;
}
.logo{
  width: 100%;
}
.logo img {
	width: 100%;
}
}
.navbar {
	padding-right: 10px !important;
}

.logo {
	display: flex;
	align-items: center;
}

.des_logo {
	width: 13%;
	display: flex;
	align-items: end;
}

.des_logo img {
	width: 80%;
}

.mang_logo {
  width: 55%;
}

.mang_logo img {
	width: 65%;
}

.logo hr {
	color: #cccccc;
	height: 65px;
	rotate: 180deg;
	width: 1px;
	margin: 0px 10px !important;
	margin-left: -5px !important;
}

@media only screen and (max-width:768px){
  .logo {
	flex-direction: row-reverse;
}
.logo hr {
	display: none;
}
.des_logo {
	width: 23%;
}
.mang_logo {
	width: 100%;
}
.top-navbar {
	padding: 10px 0px !important;
}
.top-navbar .coupon-btn {
	display: none;
}
.des_logo {
	width: 18%;
	display: flex;
	align-items: end;
	justify-content: end;
}
.des_logo img {
	width: 100%;
}
}

.coupon-btn img {
	width: 10%;
	border-radius: 50px;
}



.coupon-btn {
	position: relative;
	padding: 7px 0px;
	font-size: 14px;
	font-weight: bold;
	color: #ffffff;
	background: linear-gradient(135deg, #2ecc71, #27ae60);
	border: none;
	border-radius: 8px;
	cursor: pointer;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(46, 204, 113, 0.4);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	animation: pulse 2s infinite;
	margin-right: 15px;
}

/* Shine animation */
.coupon-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-25deg);
    animation: shine 2.5s infinite;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* Shine movement */
@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}






body {
	font-family: Helvetica Now Display;
	height: 100%;
	width: 100%;
	overflow-x: hidden !important;
	scroll-behavior: smooth;
	transition: 2s;
}

html {
	font-family: Helvetica Now Display;
	scroll-padding-top: 80px;
	overflow-x: hidden !important;
}

* {
	margin: 0px;
	padding: 0px;
}

section {
	margin: 30px 0px 30px 0px;
	padding: 20px;
}

hr {
	margin: 0.5rem 0;
	color: inherit;
	background-color: currentColor;
	border: 0;
	opacity: 0.25;
}
p {
	margin-top: 0;
	margin-bottom: 0rem; font-weight: 500; font-size: 14px!important;
}
.orng {
	color: #ee3024;
}
video {
	margin-bottom: -10px;
}
a {
	color: #0d6efd;
	/* text-decoration: underline; */
	text-decoration: none;
}
.iti{width:100%;}

#logo-section img {
		width: 150px;
	}
	#header-right button {
		float: right;
	}
	.top-header {
		background-color: #fff;
		padding: 20px 50px;
	}

	.topbtn1 {
		background-color: #fff;
		border: 1px solid #fff;
		padding: 10px 13px;
		margin-right: 230px;
	}
	.topbtn1:hover {
		background-color: #efefef !important;
		border-radius: 5px;
		border: 1px solid #707070;
		padding: 10px 13px;
		margin-right: 7px;
	}
	.topbtn2 {
		cursor: pointer;
		background: #fff;
		padding: 10px 24px;
		border-radius: 5px;
		border: 1px solid #000;
		color: #000;
		text-decoration: none;
	}
	.topbtn3 {
		cursor: pointer;
		background-image: linear-gradient(270deg, #ff6600 0%, #ee3024 100%);
		padding: 10px 24px;
		border-radius: 5px;
		border: 1px solid #f78d2d;
		color: #fff;
		text-decoration: none;
		margin-left: 50px !important;
		margin-top: 5px;
	}

	.topbtn3:hover {
		cursor: pointer;
		background: #074a76 !important;
		padding: 10px 24px;
		border-radius: 5px;
		border: 1px solid #074a76;
		color: #fff;
		text-decoration: none;
	}

	.top-menu-btn {
		background-color: #fff;
		border: 1px solid #707070;
		padding: 10px 20px;
		margin-right: 7px;
		border-radius: 5px;
	}
	.top-menu-btn:hover {
		background-color: #efefef !important;
		border-radius: 5px;
		border: 1px solid #707070;
		padding: 10px 20px;
		margin-right: 7px;
		border-radius: 5px;
	}
	.topbar p {
		color: #fff;
		text-align: center;
		padding: 10px;
		font-size: 14px;
	}

	/* .nav {
	background-color: #f7f7f7;
	display: flex;
	align-items: center;
	height: 60px;
	padding: 0px 90px;
}
	.nav > .nav-header {
	flex: 0.95;
	padding-left: 1rem;
}
	.nav > .nav-header > .nav-title {
	font-size: 22px;
	color: #003399;
}
	.nav > .nav-list {
	display: flex;
	float: left;
	gap: 2rem;
}
	.nav > .nav-list > li {
	list-style-type: none;
	padding: 18px 30px;
}
	.nav > .nav-list > li a {
	text-decoration: none;
	color: #1c1c1c;
	cursor: pointer;
	font-weight: 600;
}
	.nav > .nav-list > li:hover {
	background-color: #e6e6e6;
	cursor: pointer;
	padding: 18px 30px;
}
	.nav > #nav-check {
	display: none;
} */

	.orangetext {
		color: #ff881d;
	}
	dl,
	ol,
	ul {
		margin-top: 0;
		margin-bottom: 0rem;
	}

	.logo-img {
		width: 70%;
	}

	/* start banner section */
	#banner {
		background-image: url("./images/banner-manipal-des-final.webp");
		background-size: cover;
		background-repeat: no-repeat;
		padding: 20px;
		margin-top: 80px;
	}

	#banner h1 {
	color: #fff;
	font-size: 38px;
	font-weight: 500;
	margin-top: 10px;
	margin-bottom: 10px;
	font-family: 'Anton', sans-serif !important;
}

	#banner h2 {
		color: #fff;
		font-size: 28px;
		font-weight: bold;
	}
	.course-highlight {
	width: fit-content;
	padding: 10px;
	margin-top: 10px;
	padding-left: 0px;
}
	.mba-hh {
		font-size: 60px;
		font-weight: bold;
	}
	.cc {
	font-size: 26px;
	font-weight: 500;
	color: #fff;
}
	.course-highlight h2 {
	margin: 0px;
}

	.btn {
		background-color: #fff;
		margin: 0;
		align-items: center;
		justify-content: center;
		margin-top: 10px;
	}
	.h-title {
		text-align: center;
		font-weight: 600;
	}

	#advantage {
		background-color: #fdf8f4;
		padding: 50px;
	}

	#advantage p {
	
		font-size:17px!important;
		text-align: center;
	}
	/* approvals */
	#approvals {
		/* background-color: #efefef; */
		padding: 30px 0px;
	}
	/* .img-top-apr {
	width: 60%;
	margin-top: 65px;
} */
	#apr {
		margin: 15px;
	}
	#apr img {
		width: 80%;
	}
	#approvals p {
		font-size: 17px;
		text-align: center;
		font-weight: 500;
		line-height: 1.2;
	}
	/*End banner section */
	#programs {
		background-color: #f4ece6;
		position: relative;

		padding-bottom: 74px;
	}
	#programs h2 {
		text-align: center;
		padding: 20px;
	
	}

	.course-box {
		padding: 30px 20px;
		background-color: #ffffff;
		border-radius: 5px;
		box-shadow: 0px 3px 13px rgba(0, 0, 0, 0.1607843137);
		margin: 10px;
		text-align: left !important;
	}
	.course-box h2{text-align: left!important; padding: 0px!important; font-weight: bold;}

	.course-box h3 {
		color: #333;
		font-size: 22px;
		font-weight: 500;
	}
	.course-box p {
		font-size: 14px;
		/* margin-top: 10px; */
	}
	.coursepp {
		margin: 20px 0px;
	}

	.download-brochure {
		cursor: pointer;
		background-image: linear-gradient(
			270deg,
			#ff6600 0%,
			#ee3024 100%
		) !important;
		border-radius: 5px;
		border-style: none;
		color: #fff;
		width: 100%;
		position: relative;
		margin-top: 10px;
		padding: 10px;
	}

	.download-brochure:hover {
		cursor: pointer;
		background-image: linear-gradient(
			270deg,
			#ee3024 100%,
			#ff6600 0%
		) !important;
		border-radius: 5px;

		color: #fff;

		width: 100%;
		position: relative;
		margin-top: 10px;
		padding: 10px;
	}
	.under-box {
		display: flex;
		margin-top: 20px;
	}

	#E1 {
		background-image: linear-gradient(
			270deg,
			#ff6600 0%,
			#ee3024 100%
		) !important;
		padding: 80px 30px;
		color: #fff;
	}
	#E1 h2 {
		color: #f7b314;
		font-weight: bold;
	}


	/* #about{background-image: url("./images/manipal-about.png");background-size: cover; background-repeat: no-repeat;} */
	#about h2{text-align: center; font-weight: 600!important;}
	#about p{text-align: center;}
	.about-cnt{max-width: 80%; justify-content: center; margin: auto; align-items: center;}

	.university-img{width: 100%; margin-top: -150px; margin-bottom: 20px;}
	#achievement {
		padding:50px 0px 0px 0px;
		/* margin-bottom: 300px; */
	}

	#achievement-box {
		width: 23%;
	
		
	}

	#achievement h2 {
		font-size: 40px;
		font-weight: 600!important;
		background: -webkit-linear-gradient(#ff6600, #ee3024);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
	#achievement p {
		font-weight: 400;
	}

	/* .owl-carousel .owl-item img {
	width: 20% !important;
} */

	.owl-carousel .owl-item .slide img {
		display: block;

		width: 30%;
	}
	.left-info,
	.right-info {
		margin: 10px;
	}
	#scholarship {
		background-color: #006372;
		color: #fff;
	}

	#txt-sch {
		padding: 30px;
	}
	#scholarship h2 {
		font-weight: 500;
		color: #fff;
		text-align: center;
	}
	#scholarship p {
		color: #fff;
		text-align: center;
	}
	#enroll-frm {
		background-image: linear-gradient(270deg, #ff6600 0%, #ee3024 100%);
		padding: 70px 30px;
	}
	.c2 {
		color: #fff;
		/* padding-top: 20px; */
	}

	.number {
		background-color: #f7f7f7;
		padding: 50px 20px;
	}
	.number h2 {
		font-weight: 600;
		color: #074a76;
	}
	.number p {
		font-weight: 600;
	}

	.sp-text-blue {
		color: #074a76;
	}

	.shadow-effect {
		background: #fff;

		border-radius: 10px;
		text-align: center;
		border: 1px solid #ececec;
		box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.02);
	}
	#testimonials {
		margin: 60px 0px;
	}
	#testimonials h2 {
		text-align: center;
		font-weight: bold;
	}
	#testimonials-box {
		box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
		margin: 30px;
		padding: 30px;
		border-radius: 5px;
		min-height: 400px;
	}
	#testimonials-box h3 {
		font-size: 18px;
	}

	.owl-carousel .owl-item .slide1 img {
		width: 100px !important;
		padding:0px 10px 10px 0px;
	}

	.owl-carousel .nav-btn {
		height: 47px;
		position: absolute;
		width: 26px;
		cursor: pointer;
		top: 100px !important;
	}

	.owl-carousel .owl-prev.disabled,
	.owl-carousel .owl-next.disabled {
		pointer-events: none;
		opacity: 0.2;
	}
	/* footer */
	#footer {
		padding: 10px;
		background-color: #1F1F1F;
		color: #fff;

		box-shadow: 0px 20px 22px rgba(0, 0, 0, 0.1607843137);
	}
	#footer img {
		width: 150px;
	}
	.copyright{display: flex; align-items: center; color: #fff; justify-content: space-between;}


	.owl-nav button {
		position: absolute;
		top: 50%;
		background-color: #000;
		color: #fff;
		margin: 0;
		transition: all 0.3s ease-in-out;
	}
	.owl-nav button.owl-prev {
		left: 0;
	}
	.owl-nav button.owl-next {
		right: 0;
	}

	.owl-dots {
		text-align: center;
		padding-top: 15px;
	}
	.owl-dots button.owl-dot {
		width: 15px;
		height: 15px;
		border-radius: 50%;
		display: inline-block;
		background: #ccc;
		margin: 0 3px;
	}
	.owl-dots button.owl-dot.active {
		background-color: #000;
	}
	.owl-dots button.owl-dot:focus {
		outline: none;
	}
	.owl-nav button {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		background: rgba(255, 255, 255, 0.38) !important;
	}
	/* span {
	font-size: 70px;
	position: relative;
	top: -5px;
} */
	.owl-nav button:focus {
		outline: none;
	}
	/*FORM-section*/

	#form {
		padding: 20px 20px;
		background-color:#fff;

		margin-top: 0px;
		margin: 0px 0px 0px 0px;
		border-radius: 10px; box-shadow: 0 5px 20px #757575; 
	}

	.frm-heading h5 {
		text-align: center;
		font-size: 25px;
		color: #ee3024; 
	}
	.frm-heading p {
		text-align: center;
		font-size: 15px;
		font-weight: 500;
		color: #484848; margin-top: -10px;
		/* margin-top: -18px; */
	}
	label {
		color: #000000;
		font-weight: 500;
		padding-top: 0px;
		font-size: 14px; margin-bottom: 0px!important;
	}
	#ftr-frm label{color:#fff;}

	.form-control {
		line-height: 1.5;
		background-color: #f7f7f7 !important;
		border-style: none !important;
		font-size: 0.95em;
		margin-bottom: 10px;
	}
	#ftr-frm{margin-bottom: 10px!important;}

	/* .form-control1 {
		line-height: 1.5;
		background-color: #f7f7f7 !important;
		border-style: none !important;
		font-size: 0.95em;
		margin-bottom: 5px;
	} */
	.required {
		color: red;
	}

	.sub-btn {
		background-image: linear-gradient(270deg, #ff6600 0%, #ee3024 100%);
		color: #fff;
		width: 100%;
		border-style: none;
		padding: 5px;
		border-radius: 3px;
		font-weight: 500; margin:10px 0px!important;
	}
	
	.sub-btn-footer {
		background-color:#f7b314;
		color: #fff;
		width: 100%;
		border-style: none;
		padding: 5px;
		border-radius: 3px;
		font-weight: 500;
	}

	.about-text {
		margin: 30px 0px;
	}

	.modal {
		display: none;
		position: fixed;
		z-index: 1;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		overflow: auto;
		background-color: rgba(0, 0, 0, 0.4);
		z-index: 9999;
	}
	.modal-content {
		background-color: transparent !important;
		margin: 2% auto;
		border-style: none;
		width: 35%;
	}
	/* Close button style */
	.close {
		
		float: right;
	
		font-size: 28px;
		position: absolute;
		font-weight: bold;
		margin-left: 90%;
		/* margin-top: 50px; */
	}
	.close:hover,
	.close:focus {
		color: #ee3024;
		text-decoration: none;
		cursor: pointer;
	}



	.owl-dots {
		display: none;
	}

	.owl-dots button.owl-dot.active {
		background-color: #000;
		display: none;
	}

	.owl-carousel .owl-dots.disabled,
	.owl-carousel .owl-nav.disabled {
		display: block !important;
	}

	/*faqs  start  */
#faqs {
  margin: 50px 10px;
}
#faqs h2 {
  color: #08417b;
  font-weight: 600;
  margin-left: 5px;
}

.accordionItem {
  float: left;
  display: block;
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.accordionItemHeading {
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  padding: 20px 10px;
  color: #000;
  width: 100%;
}
.close .accordionItemContent {
  height: 0px;
  transition: height 1s ease-out;
  -webkit-transform: scaleY(0);
  -o-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  float: left;
  display: block;
  font-size: 14px;
}
.open .accordionItemContent {
  padding: 10px;
  background-color: #fff;
  width: 100%;
  margin: 0px 0px 10px 0px;
  display: block;
  font-size: 14px;

  -webkit-transition: -webkit-transform 0.4s ease-out;
  -o-transition: -o-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
  box-sizing: border-box;
}

.open .accordionItemHeading {
  margin: 0px;
}

@media (max-width: 600px) {
	.top-header {
		background-color: #fff;
		padding: 20px 20px;
	}

	#header-left {
		width: 50%;
	}
	#header-right {
		width: 50%;
	}
	.topbtn1 {
		background-color: #fff;
		border: 1px solid #fff;
		padding: 10px 13px;
		/* margin-right: 7px; */
	}
	.topbtn1:hover {
		background-color: #efefef !important;
		border-radius: 5px;
		border: 1px solid #707070;
		padding: 10px 13px;
		margin-right: 7px;
	}
	.topbtn2 {
		cursor: pointer;
		background: #fff;
		padding: 10px 24px;
		border-radius: 5px;
		border: 1px solid #000;
		color: #000;
		text-decoration: none;
	}
	.topbtn3 {
		cursor: pointer;
		background-image: linear-gradient(270deg, #ff6600 0%, #ee3024 100%);
		padding: 10px 12px;
		border-radius: 5px;
		border: 1px solid #f78d2d;
		color: #fff;
		text-decoration: none;
		margin-left: -10px; width:100%;
	}

	.topbtn3:hover {
		cursor: pointer;
		background: #074a76 !important;
		padding: 10px 24px;
		border-radius: 5px;
		border: 1px solid #074a76;
		color: #fff;
		text-decoration: none;
	}

	.top-menu-btn {
		background-color: #fff;
		border: 1px solid #707070;
		padding: 10px 20px;
		margin-right: 7px;
		border-radius: 5px;
	}
	.top-menu-btn:hover {
		background-color: #efefef !important;
		border-radius: 5px;
		border: 1px solid #707070;
		padding: 10px 20px;
		margin-right: 7px;
		border-radius: 5px;
	}
	.topbar p {
		color: #fff;
		text-align: center;
		padding: 10px;
		font-size: 14px;
	}

	/* .nav {
	background-color: #fff;
	display: flex;
	align-items: center;
	height: 60px;
	padding-left: 17px;
	padding-right: 20px;
	margin: 0px;
	box-shadow: 0px 0px 5px 1px #a3a3a3;
} */

	.nav > .nav-btn {
		display: inline-block;
		position: absolute;
		right: 0;
		top: 0;
		/* padding-top: 2.5rem; */
		/* .nav > .nav-list; */
	}
	.nav > .nav-btn > label {
		display: inline-block;
		/* width: 50px; */
		/* height: 50px; */
		/* padding: 13px; */
		background-color: #074a76;
		padding: 10px 10px 7px 10px;
		margin-top: 10px;
		margin: 15px;
		border-radius: 5px;
	}
	.nav > .nav-btn > label > span {
		display: block;
		width: 25px;
		height: 8px;
		border-top: 2px solid #eee;
		cursor: pointer;
	}
	.nav > .nav-list {
		position: absolute;
		display: flex;
		flex-direction: column;
		gap: 1rem;
		width: 100%;
		background-color: #f7f7f7;
		color: #000;
		height: 0;
		transition: all 0.3s ease-in;
		/* top: 115px; */
		left: 0;
		overflow: hidden;
		z-index: 100;
	}
	.nav > .nav-list > li {
		width: 100%;
		margin-top: 1.5rem;
		list-style: none;
	}
	.nav > #nav-check:checked ~ .nav-list {
		height: calc(20vh - 0px);
	}
	.nav > .nav-list > li a {
		text-decoration: none;
		color: #000;
		cursor: pointer;
		font-weight: 500;
	}

	#course-dropdown {
		width: 50%;
	}

	#number-button {
	}
	*/ section {
		margin: 30px 0px 30px 0px;
		padding: 20px 10px;
	}
	p {
		margin-top: 0;
		margin-bottom: 0rem;
	}

	.orangetext {
		color: #ff881d;
	}
	dl,
	ol,
	ul {
		margin-top: 0;
		margin-bottom: 0rem;
	}

	.logo-img {
		width: 100%;
	}

	/* start banner section */

	
		#banner {
	background-image: url("images/banner-muj-mobile1.webp");
	background-size: cover;
	background-repeat: no-repeat;
	padding: 20px 0px;
}

	#banner h1 {
	color: #fff;
	font-size: 32px;
	font-weight: 500;
}
.banner_about {
	width: 100%;
}

	#banner h2 {
		color: #fff;
		font-size: 20px;
		font-weight: bold;
	}
	.course-highlight {
	width: 100%;
	padding: 6px;
	padding-left: 0px;
	padding-top: 0px;
}
	.mba-hh {
		font-size: 60px;
		font-weight: bold;
	}
	.cc {
		font-size: 22px;
		font-weight: 500;
	}
	.welcome {
	margin-top: 15px !important;
}
	.btn {
		background-color: #fff;
		margin: 0;
		align-items: center;
		justify-content: center;
		margin-top: 10px;
	}
	.h-title {
		text-align: center;
		font-weight: 500; font-size: 25px;
	}
.adv p{font-size: 16px;}
	#advantage {
		background-color: #fdf8f4;
		padding: 20px;
	}
	#advantage h2 {
		font-weight: 500;
	}
	#advantage p {
		font-weight: 600;
		font-size: 17px;
		text-align: center;
	}
	/* approvals */
	#approvals {
		/* background-color: #efefef; */
		padding: 30px 20px 20px 20px;
	}
	/* .img-top-apr {
	width: 60%;
	margin-top: 65px;
} */
	#apr {
		margin: 15px;
	}
	#apr img {
		width: 80%;
	}
	#approvals p {
		font-size: 15px;
		text-align: center;
		font-weight: 500;
		line-height: 1.2;
	}
	/*End banner section */
	#programs {
		background-color: #f4ece6;
		position: relative;
padding: 20px;
		padding-bottom: 74px;
	}
	#programs h2 {
		text-align: center;
		padding: 20px;
	}

	.course-box {
		padding: 30px 20px;
		background-color: #ffffff;
		border-radius: 5px;
		box-shadow: 0px 3px 13px rgba(0, 0, 0, 0.1607843137);
		margin: 10px;
		text-align: left !important;
	}
.course-box h2{text-align: left; padding: 0px!important; font-weight: bold;}
	.course-box h3 {
		color: #333;
		font-size: 18px;
		font-weight: 500;
	}
	.course-box p {
		font-size: 14px;
	}
	.coursepp {
		margin: 20px 0px;
	}

	.download-brochure {
		cursor: pointer;
		background-image: linear-gradient(
			270deg,
			#ff6600 0%,
			#ee3024 100%
		) !important;
		border-radius: 5px;
		border-style: none;
		color: #fff;
		width: 100%;
		position: relative;
		margin-top: 10px;
		padding: 10px;
	}

	.download-brochure:hover {
		cursor: pointer;
		background-image: linear-gradient(
			270deg,
			#ee3024 100%,
			#ff6600 0%
		) !important;
		border-radius: 5px;

		color: #fff;

		width: 100%;
		position: relative;
		margin-top: 10px;
		padding: 10px;
	}
	.under-box {
		display: flex;
		margin-top: 20px;
	}

	#E1 {
		background-image: linear-gradient(
			270deg,
			#ff6600 0%,
			#ee3024 100%
		) !important;
		padding: 20px;
		color: #fff;
	}
	#e1-1,
	#e1-2 {
		padding: 20px 5px;
	}
	#E1 h2 {
		color: #f7b314;
		font-weight: bold; font-size: 30px;
	}
	
/* #about{background-image: url("./images/manipal-about.png");background-size: contain; background-repeat: no-repeat;} */
	#about h2{text-align: center; }
	#about p{text-align: center; font-size: 14px;}
	.about-cnt{max-width: 100%; justify-content: center; margin: auto; align-items: center;}

	.university-img{width: 100%; margin-top: -100px; }
	#achievement {
		padding: 20px;
	}

	#achievement-box {
		width: 50%;
		padding: 20px 0px;
	}
	#achievement h2 {
		font-size: 30px;
		font-weight: bold;
		    background: -webkit-linear-gradient(#ff6600, #ee3024);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
	
	#achievement p {
		font-weight: 400;
	}

	/* .owl-carousel .owl-item img {
	width: 20% !important;
} */
	.owl-carousel .owl-item .slide img {
		display: block;
		width: 100px;
		/* width: 100%; */
	}
	.left-info,
	.right-info {
		margin: 10px;
	}
	#scholarship {
		background-color: #006372;
		color: #fff;
	}

	#txt-sch {
		padding: 30px 20px 0px 20px;
	}
	
	#enroll-frm {
		background-image: linear-gradient(270deg, #ff6600 0%, #ee3024 100%);
		padding: 10px;
		
	}

	.c2 {
		padding: 10px;
		text-align: center; color:#fff;
	}
	.c2 h2 {
		font-weight: bold;
	}
	
	.thanku {
		background-color: #FCFEFC!Important;
	}

	#testimonials {
		margin: 60px 20px;
	}
	
	#testimonials h2 {
		text-align: center;
		font-weight: 500;
	}
	
	#testimonials-box {
		box-shadow: 0 9px 18px rgba(0, 0, 0, 0.12), 0 5px 7px rgba(0, 0, 0, 0.05);
		margin: 10px;
		padding: 20px;
		border-radius: 5px;
		min-height: 400px;
	}
	
	#testimonials-box h3 {
		font-size: 18px;
	}

	.owl-carousel .owl-item .slide1 img {
		width: 100px !important;
		padding: 0px 10px 10px 0px;
	}

	.owl-dots {
		display: flex;
		justify-content: center;
	}

	.owl-dots .owl-dot {
		margin: 10px 5px; /* Adjust spacing between dots if needed */
	}

	.owl-dots .owl-dot span {
		width: 10px;
		height: 10px;
		background: #d6d6d6;
		border-radius: 50%; /* Ensure dots are circular */
		display: block;
		transition: background-color 0.2s ease;
	}

	.owl-dots .owl-dot.active span,
	.owl-dots .owl-dot:hover span {
		background: #869791;
	}

	/* FOOTER */
	#footer {
		background-color: #1F1F1F;
		padding: 10px;
	}
	#footer img {
		width: 40%;
	}
		.copyright{display: flex; align-items: center; color: #fff; justify-content: space-between;}

	#form {
		padding: 30px 20px;
		background-color: #fff;
		 margin: 0px; box-shadow: 0 5px 20px #ccc; border-radius: 6px;
		 margin-top: -20px;
		/* margin: 0px 20px; */
	}

	.frm-heading h5 {
		text-align: center;
		font-size: 25px;
		color: #ee3024; 
	}
	.frm-heading p {
		text-align: center;
		font-size: 15px;
		font-weight: 500;
		color: #484848; margin-top: -10px;
		/* margin-top: -18px; */
	}
	label {
		color: #000000;
		font-weight: 500;
		padding-top: 0px;
		font-size: 14px;
		margin-bottom: 0px!important;
	}

	#ftr-frm label{color:#fff; display: none;}
	#ftr-frm{margin-bottom: 5px;}

	.form-control {
		line-height: 1.5;
		background-color: #f7f7f7 !important;
		border-style: none !important;
		font-size: 0.75em;
		margin-bottom: 10px;
	}
	.required {
		color: red;
	}

	.sub-btn {
		background-image: linear-gradient(270deg, #ff6600 0%, #ee3024 100%);
		color: #fff;
		width: 100%;
		border-style: none;
		padding: 5px;
		border-radius: 3px;
		font-weight: 500;
	}

	.sub-btn-footer {
		background-color:#f7b314;
		color: #fff;
		width: 100%;
		border-style: none;
		padding: 5px; margin-bottom: 20px;
		border-radius: 3px;
		font-weight: 500;
	}

	.modal {
		display: none;
		position: fixed;
		z-index: 1;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		overflow: auto;
		background-color: rgba(0, 0, 0, 0.4);
		transition: opacity 0.5s ease-in-out;
	}
	.modal-content {
		margin: 35% auto;
		/* padding: 20px; */
		width: 95%;
		background-color: transparent;
		border-style: none;
	}
	/* Close button style */
	.close {
		/* color: #fff; */
		float: right;
		font-size: 28px;
		font-weight: bold;
		position: absolute;
		margin-left: 88%;
		margin-top: -40px;
	}
	.close:hover,
	.close:focus {
		color: #ee3024;
		text-decoration: none;
		cursor: pointer;
	}
	a {
		color: #0d6efd;
		/* text-decoration: underline; */
		text-decoration: none;
	}
	video {
		margin-bottom: -10px;
	}

.iti iti--allow-dropdown iti--separate-dial-code {
    width: 100%!important;
}
.iti input {
    width: 100%;
    padding-left: 82px;
    box-sizing: border-box;
}
	.iti {
    position: relative;
    display: inline-block;
    width: 100%!important;
}
 /*faqs  start  */
  #faqs {
    padding: 10px;
  }
  #faqs h2 {
    color: #08417b;
    font-weight: 600;
    font-size: 22px;

    margin-bottom: 30px;
  }

  .accordionItem {
    float: left;
    display: block;
    width: 100%;
    border-bottom: 1px solid #ccc;
  }
  .accordionItemHeading {
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    padding: 10px;
    color: #000;
    width: 100%;
  }
  .close .accordionItemContent {
    height: 0px;
    transition: height 1s ease-out;
    -webkit-transform: scaleY(0);
    -o-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    float: left;
    display: block;
    font-size: 14px;
  }
  .open .accordionItemContent {
    padding: 10px;
    background-color: #fff;
    width: 100%;
    margin: 0px 0px 10px 0px;
    display: block;
    font-size: 12px;

    -webkit-transition: -webkit-transform 0.4s ease-out;
    -o-transition: -o-transform 0.4s ease;
    -ms-transition: -ms-transform 0.4s ease;
    transition: transform 0.4s ease;
    box-sizing: border-box;
  }

  .open .accordionItemHeading {
    margin: 0px;
  }}
  .accordionItemContent {
  display: none;
}

.accordionItem.open .accordionItemContent {
  display: block;
}

.accordionItemHeading::after {
  content: "+";
  float: right;
  font-size: 19px;
  color: #08417b;
}

.accordionItem.open .accordionItemHeading::after {
  content: "-";
  float: right;
  font-size: 19px;
  color: #08417b;
}
.disclaimer_popup{color: #011bfe; font-size: 12px; text-decoration: underline; cursor:pointer;}




#popupForm #form {
	padding: 0px;
	box-shadow: none;
}
/* Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup box */
.popup-content {
    background: #ffffff;
    width: 90%;
    max-width: 420px;
    padding: 25px;
    border-radius: 15px;
    position: relative;
    animation: popupFade 0.4s ease;
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.4);
}

/* Close button */
.close-btn {
    position: absolute;
    top: -4px;
    right: 10px;
    font-size: 30px !important;
    cursor: pointer;
    color: #27ae60;
}

/* Animation */
@keyframes popupFade {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Submit button */
.sub-btn {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}







#sode_about {
	background: #19347b;
	background-size: cover;
	padding: 60px;
	margin: 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#sode_about h1 {
	color: #fff;
	text-transform: capitalize;
	font-size: 30px;
	font-weight: 600;
	line-height: 24px;
	padding-bottom: 10px;
	text-align: center;
}

#sode_about p {
	color: #fff;
	width: 80%;
	padding: 5px 0px 10px 0px;
	font-size: 12px;
	text-align: center;
}

.sode_about_button .compare_btn {
	background: #2bbf6a;
	padding: 8px 15px;
	color: #fff;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	margin-left: 5px;
}

.sode_about_button .compare_btn:hover {
	text-decoration: none;
}

.sode_secondary {
	font-size: 18px;
}
.sode_about_mobile {
	display: none;
}


@media only screen and (max-width:768px){
	#sode_about {
	background-image: none;
	background-size: cover;
	padding: 50px 20px 50px 20px;
	background: #19347b;
}
#sode_about p {
	width: 100%;
}
.sode_about_mobile {
	display: unset;
	width: 100%;
}
.sode_secondary {
	font-size: 12px;
}
}




.apply-section {
	padding: 0px 20px 60px 20px;
	background: #ffffff;
	text-align: center;
	margin: 0px;
}

.apply-section h2 {
    font-size: 30px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
  color: #193579;
}

.section-desc {
	max-width: 900px;
	margin: 0 auto 50px;
	color: #555;
	font-size: 14px;
	padding-top: 10px;
}

/* Steps layout */
.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* Step card */
.step-card {
    background: #fff;
    padding: 20px 18px;
    border-radius: 14px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.step-card h4 {
	font-size: 16px;
	margin: 20px 0 10px;
	color: #000;
	font-weight: 600;
	padding-bottom: 10px;
}

.step-card p {
	font-size: 12px;
	color: #444;
}

/* Number circle */
.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

/* Bottom border */
.step-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    width: 100%;
    border-radius: 0 0 14px 14px;
}

/* Color themes */
.orange .step-number { border: 3px solid #ff8c32; color: #ff8c32; }
.orange::after { background: #ff8c32; }
.orange { background: #fff4e9; }

.blue .step-number { border: 3px solid #0b5ed7; color: #0b5ed7; }
.blue::after { background: #0b5ed7; }
.blue { background: #f2f8ff; }

.pink .step-number { border: 3px solid #ff2d6f; color: #ff2d6f; }
.pink::after { background: #ff2d6f; }
.pink { background: #fff1f6; }

.green .step-number { border: 3px solid #1faa59; color: #1faa59; }
.green::after { background: #1faa59; }
.green { background: #effff5; }

.purple .step-number { border: 3px solid #8e2de2; color: #8e2de2; }
.purple::after { background: #8e2de2; }
.purple { background: #f9f0ff; }

/* Responsive */
@media (max-width: 1200px) {
    .steps-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .steps-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
	.apply-section h2 {
	font-size: 20px;
}
.step-card p {
	font-size: 14px;
	color: #444;
}
}





/* Media footer strip */
.media-footer-strip {
    background: #fafafa;
    padding: 20px;
    border-top: 1px solid #eee;
	margin: 0px;
}

.media-footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* Logo wrapper */
.media-logo {
    flex: 1;
    text-align: center;
}

/* Logos */
.media-logo img {
	max-height: 100%;
	max-width: 190px;
	width: auto;
	filter: grayscale(100%);
	opacity: 0.6;
	transition: all 0.3s ease;
}

/* Hover effect */
.media-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Tablet & Mobile */
@media (max-width: 768px) {
    .media-footer-container {
        justify-content: center;
    }

    .media-logo {
        flex: 0 0 45%;   /* 2 logos per row */
        max-width: 45%;
    }
	.media-logo img {
	max-width: 120px;
}
}

/* Small phones */
@media (max-width: 400px) {
    .media-logo {
	flex: 0 0 40%;
	max-width: 40%;
}
}




.mini-footer {
	background: #f6f8fa;
	color: #777;
	position: relative;
}

.mini-footer hr {
	color: #fff !important;
	height: 2px;
	margin: 0px 10px !important;
}

/* Top section */
.mini-footer-top {
  text-align: center;
  padding: 20px 15px 25px;
}

/* Social icons */
.social-icons {
  margin-bottom: 10px;
}

.social-icons a {
  color: #fff;
  margin: 0 6px;
  font-size: 16px;
  text-decoration: none;
}

/* Footer links */
.footer-links {
  margin-bottom: 10px;
}

.footer-links a {
  color: #1e90ff;
  font-size: 14px;
  text-decoration: none;
  margin: 0 8px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Address */
.footer-address {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* Blue copyright bar */
.mini-footer-bottom {
	background: #0b3c66;
	color: #fff;
	text-align: center;
	padding: 7px 10px;
	font-size: 13px;
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0b72d9;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 12px;
  border-radius: 4px;
}



#footer-bottom-bar {
	padding: 10px 30px;
	font-size: 13px;
	color: var(--white-color);
	text-align: center;
}



.welcome {
	width: fit-content;
	padding: 6px 20px;
	background: #fff;
	font-size: 16px;
	border-radius: 7px;
	color: #f97316;
	font-weight: 600;
	margin-bottom: 15px !important;
	margin-top: 50px;
}


.btn2 {
	font-size: 13px;
	padding: 5px 20px;
	background-image: linear-gradient( 270deg, #ff6600 0%, #ee3024 100% ) !important;
	border: 1.5px solid var(--secondary-color);
	border-radius: 30px;
	color: #fff;
	font-weight: 600;
}

.sode_content {
	color: #fff;
	font-size: 18px !important;
	line-height: 1;
	padding-bottom: 10px;
}

.banner_about {
	color: #fff;
	width: 65%;
	padding-top: 10px;
}

.banner_download_btn {
	width: fit-content;
	padding: 8px 20px !important;
}

.banner_download_btn:hover {
	width: fit-content;
}

@media only screen and (max-width:768px){
	.banner_about {
	width: 100%;
}
}



.e1_heading {
	text-align: center;
	font-size: 30px !important;
	padding-bottom: 20px;
	color: #fff !important;
}
#E1 h2 {
	color: #f7b314;
	font-weight: bold;
	font-size: 18px;
}

@media only screen and (max-width:768px){
	.e1_heading {
	font-size: 24px !important;
}
#e1-1 h2 {
	text-align: center;
}
#e1-1 p {
	text-align: center;
}
#e1-2 h2 {
	text-align: center;
}
#e1-2 p {
	text-align: center;
}
}





.custom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.custom-modal-content {
	background: #fff;
	width: 100%;
	max-width: 800px !important;
	max-height: 80vh;
	overflow-y: auto;
	margin: 5% auto;
	padding: 30px 40px;
	border-radius: 10px;
	position: relative;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

#footer-bottom-bar span {
	color: #000;
	text-decoration: none !important;
	font-size: 14px !important;
	cursor: pointer;
	font-weight: 500;
}

.custom-modal-content h5 {
	font-size: 18px !important;
	padding-top: 15px;
}

.custom-modal-content h2 {
	font-size: 28px;
}


.footer_sode_logo {
	width: 50%;
}

.footer_sode_logo_container {
	display: flex;
	align-content: center;
	justify-content: center;
}


.compare_box h4 {
	color: #fff;
	font-size: 16px;
	text-align: center;
}

.compare_Section {
  padding: 60px;
  background-color: #f6f8fa;
}
.compare_box {
	padding: 50px;
	background: linear-gradient( 270deg, #ff6600 0%, #ee3024 100% ) !important;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.compare_box h2 {
  color: #fff;
  font-weight: 700;
}
/* .compare_box a {
  background: #ffd508;
  padding: 5px 20px;
  color: #000;
  cursor: pointer;
  border-radius: 10px;
} */

.compare_box a {
	cursor: pointer;
}

.compare_btn img {
	width: 70px;
	border-radius: 100%;
	margin-bottom: -120px;
}


@media only screen and (max-width:768px){
  .compare_Section {
	padding: 40px 20px;
  background-color: #f6f8fa;
}

.compare_box {
	padding: 50px 20px 20px 20px;
	background: var(--accent-color);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.compare_box h2 {
	text-align: center;
	font-size: 26px;
}
.compare_box a {
	margin-top: 10px;
}

.compare_btn img {
	width: 70px;
	border-radius: 100%;
	margin-bottom: -60px;
}

.footer_sode_logo {
	width: 100%;
	padding: 0px 35px;
}

#footer-bottom-bar {
	padding: 10px 40px;
}

}

.footer_sode_logo_container a {
	text-align: center;
}



.frm-heading p {
	color: #000;
	font-size: 14px;
}


.coupon-btn {
	position: fixed;
	right: 10px;
	bottom: 15px;
	border: none;
	border-radius: 100%;
	z-index: 9999999999;
	padding: 0px !important;
}
.coupon-btn img {
    width: 60px; /* adjust if needed */
    border-radius: 50%;
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.3),
        0 0 20px rgba(46, 204, 113, 0.6);
    transition: 0.3s ease;
}

.coupon-btn img:hover {
    transform: scale(1.1);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.4),
        0 0 35px rgba(46, 204, 113, 0.9);
}



.custom_img_section img {
  display: none;
}

@media only screen and (max-width:768px){
  .custom_img_section img {
	width: 90%;
	border-radius: 20px;
	margin: 15px 0px;
	display: unset;
}
.col-md-3.custom_img_section {
	display: flex;
	justify-content: center;
}
.coupon-btn {
	bottom: 70px;
}
}

.sticky_btn_Section {
	display: none;
}

@media only screen and (max-width:768px){
  .sticky_btn_Section {
	display: unset;
}

  .footer_sticky_buttons {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 3px;
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 99999;
	background: linear-gradient( 270deg, #ff6600 0%, #ee3024 100% ) !important;
	padding: 10px;
}
.footer_sticky_buttons a {
	background: #25d366;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	color: #fff;
	padding: 6px;
	border-radius: 100px;
	font-size: 16px;
}
.footer_sticky_buttons .apply_btn {
	background: #fff;
	color: #ee3024;
	border-radius: 100px;
	font-size: 16px;
	border: none;
}
.footer_sticky_buttons .wp_btn svg {
	width: 16px !important;
	fill: #fff;
}
}





.hashtag {
	font-size: 16px !important;
	padding-bottom: 8px;
}

.banner_about {
	font-size: 19px !important;
	padding-top: 5px;
}


#banner-cnt h2 {
	font-size: 36px;
}

.custom_courses {
	font-size: 22px !important;
}


@media only screen and (max-width:768px){
  .top-navbar .coupon-btn-main {
	display: none;
}
}

.custom-modal-content p {
	font-size: 13px;
}


@media only screen and (max-width:768px){
  .mini-footer-bottom {
	padding-bottom: 70px;
}
#hero-section {
	margin-top: 70px;
}

}

.coupon-btn-main.coupon-button-mobile {
	margin-top: 0px;
	margin-bottom: 10px;
}

.navbar {
	box-shadow: 0px 5px 20px #00000025;
}

#myForm #checkboxWrapper {
	margin-top: 10px;
}

#compareForm #checkboxWrapper {
	margin-top: 10px;
}




.coupon-btn-main img {
	width: 10%;
	border-radius: 50px;
	margin-right: 10px;
}



.coupon-btn-main {
	position: relative;
	padding: 7px 0px;
	font-size: 14px;
	font-weight: bold;
	color: #ffffff;
	background: linear-gradient(135deg, #2ecc71, #27ae60);
	border: none;
	border-radius: 8px;
	cursor: pointer;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(46, 204, 113, 0.4);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	animation: pulse 2s infinite;
	margin-right: 15px;
}

/* Shine animation */
.coupon-btn-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-25deg);
    animation: shine 2.5s infinite;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* Shine movement */
@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}

.coupon-btn-main.coupon-button-mobile {
	display: none;
}

@media only screen and (max-width:768px){
	#popupForm .frm-heading {
	padding-top: 20px;
}
#popupForm .frm-heading h5 strong span {
	background: unset;
	font-size: 20px;
}
#comparePopup .frm-heading h5 strong span {
	background: unset;
	font-size: 20px;
}
#myModal #closeButton {
	top: 22px;
	right: 10px;
}
#downloadbrochuremodal #closeButton {
	top: 22px;
	right: 10px;
}
.coupon-btn-main.coupon-button-mobile {
	display: block;
}

.d-block.d-lg-none {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.d-block.d-lg-none #form {
	width: 90%;
}
.coupon_btn_container {
	display: flex;
	align-items: center;
	justify-content: center;
}
.col-md-5.banner_text_section {
	padding: 0px 20px !important;
}
}


.col-md-5.banner_text_section {
	display: flex;
	flex-direction: column;
	justify-content: center;
}


.hash_tag {
	color: #fff;
	padding-top: 20px;
}





.call_fix_image img {
	width: 65px;
	position: fixed;
	bottom: 85px;
	right: 23px;
	border-radius: 50px;
	z-index: 9999;
	box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 35px rgba(46, 204, 113, 0.9);
}

@media only screen and (max-width:768px){
  .call_fix_image img {
	width: 60px;
	bottom: 140px;
	right: 26px;
}
}


.call_fix_text {
	background-image: linear-gradient( 270deg, #ff6600 0%, #ee3024 100% ) !important;
	padding: 3px 20px;
	border-radius: 20px;
	color: #fff !important;
	font-weight: 500;
	position: relative;
	overflow: hidden;
	width: fit-content !important;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	letter-spacing: -0.5px;
	margin-top: -12px;
}

.call_fix_text:hover {
	color: #fff;
	text-decoration: none;
}

.call_fix_text_section {
	padding-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Shine animation */
.call_fix_text::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 30%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-25deg);
    animation: shine 2.5s infinite;
}

/* Shine movement */
@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}