/* main css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--white: #fff;
	--black: #000;
	--grey: #f9f9f9;
	--white-rgb: 255, 255, 255;
	--black-rgb: 21, 21, 21;

    --primary-navy: #06112A;
    --secondary-navy: #23305A;

    --primary-orange: #FA740B;
    --accent-orange: #FF9A16;

    --dark-text: #15100D;
    --body-text: #445F72;
    --secondary-text: #787D7F;

    --light-bg: #F2EFEC;
    --light-orange: #FFF1DE;
    --border: #E6E9ED;

    --icse-blue: #1855A5;
    --cbse-green: #009B50;
    --ssc-teal: #009BA8;
    --science-purple: #6C20C9;
    --commerce-orange: #F47716;

	--transition: all 0.3s ease-in-out;
	--shadow: 0px 4px 25px 0px #0000000f;
	--radius-sm: 8px;
	--radius-md: 18px;
	--radius-lg: 26px;
	--radius-xl: 100px;
}

html, body {
	overflow-x: hidden;
}
body {
	background-color: var(--grey);
  	font-family: "Poppins", sans-serif;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
}

a {
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  	/* font-family: "Playfair Display", serif; */
}

.bg-overlay {
	position: relative;
}
.bg-overlay:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	opacity: 0.8
}
.bg-overlay.theme-overlay:before {
	background-color: var(--color5);
}
.bg-overlay.white-overlay:before {
	background-color: #fff;
}
.bg-overlay.black-overlay:before {
	background-color: #000;
}
.bg-overlay .container {
	position: relative;
	z-index: 1;
}

.text-justify { text-align: justify; }

.bg-1 { background-color: var(--primary-navy); }
.bg-2 { background-color: var(--secondary-navy); }
.bg-3 { background-color: var(--primary-orange); }
.bg-4 { background-color: var(--accent-orange); }
.bg-5 { background-color: var(--icse-blue); }
.bg-6 { background-color: var(--cbse-green); }
.bg-7 { background-color: var(--ssc-teal); }
.bg-8 { background-color: var(--science-purple); }
.bg-9 { background-color: var(--commerce-orange); }
.bg-grey { background-color: var(--grey); }

/* header */
header { 
	position: relative;
}
.topbar {  }
.topbar .item {
	display: flex;
	align-items: center;
	column-gap: 10px;
    color: var(--white);
}
.topbar .item i {
    text-align: center;
	font-size: 14px;
}
.topbar .item span {
	display: block;
}
.topbar .item a {
	font-size: 16px;
	color: var(--white);
	text-decoration: none;
}
.topbar .social {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    border-radius: 0px;
    padding: 5px 0;
}
.social li {
	display: block;
	color: var(--white);
}
.social li a {
	color: var(--black);
	display: flex;
	width: 35px;
	height: 35px;
	border: 1px solid rgba(var(--black-rgb), .2);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.social li a:hover {
	background-color: var(--white);
}

.navbar {
	position: relative;
	background-color: var(--white);
	z-index: 10;
	box-shadow: 0 5px 5px rgba(0,0,0,0.05);
	/*backdrop-filter: blur(5px);*/
}
.navbar-brand {}
.navbar-brand img { 
	height: 80px; 
}
.nav-item {
	position: relative;
	padding: 0 10px;
}
.nav-item .nav-link {
	color: var(--navy);
	font-size: 16px;
	font-weight: 500;
	padding: 30px;
}
.nav-item:hover .nav-link {
	color: var(--primary-orange);
}
.navbar-toggler { border:none;}
.navbar-toggler:focus { box-shadow:none;}
/* .navbar-toggler-icon { filter: brightness(0) invert(1);} */
.nav-item.dropdown li:not(:last-child) {
	border-bottom: 1px solid rgba(var(--white-rgb), .2);
}
.dropdown-item {
	text-wrap: wrap;
	color: var(--white);
	padding: 6px 20px;
	transition: var(--transition);
}
.dropdown-item:hover {
	color: var(--color2);
	background-color: var(--white);
	padding-left: 25px;
}
.dropdown-toggle::after {
	content: '\f107';
	font-family:"FontAwesome";
	border: none;
	vertical-align: bottom;
}
.nav-item.dropdown .dropdown-menu {
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 99;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	width: 200px;
	border: 1px solid var(--secondary-navy);
	border-radius: 0;
	box-shadow: var(--shadow);
	background-color: var(--secondary-navy);
	transition: var(--transition);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
}
.nav-item.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}
.nav-item.dropdown:hover .dropdown-menu li a {
	position: relative;
}
/*********************/
.home_slider {
	position: relative;
}
/* slider */
.owl-slide .item {
	position: relative;
}
/* .owl-slide .item::before {
	position: absolute;
	inset: 0;
	content: '';
	background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
} */
.owl-slide .item img {
	width: 100%;
	aspect-ratio: 3/1;
	object-fit: cover;
}
.owl-slide .item .desc {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	max-width: 650px;
	padding-left: 60px;
}
.owl-slide .item .desc h1 {
	font-size: 48px;
	font-weight: 900;
	color: var(--white);
	text-shadow: 0 0 15px rgba(0,0,0,0.5);
	text-transform: uppercase;
	margin-bottom: 0;
}
.owl-slide .owl-item.active h1,
.owl-slide .owl-item.active .btn1 {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	animation-name: fadeInLeft;
	animation-delay: 0.5s;
}
.owl-slide .owl-item.active .btn1 {
	animation-name: fadeInUp;
}
.owl-slide .owl-nav {
	position: absolute;
	top: 50%;
	right: 25px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.owl-slide .owl-nav > div {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--white);
	border: 2px solid var(--white);
	border-radius: 50%;
	font-size: 20px;
	opacity: 0.6;
	transition: var(--transition);
}
.owl-slide .owl-nav > div:hover{ 
	background-color: var(--accent-red);
	border-color: var(--accent-red);
	opacity: 1;
}
.owl-slide .owl-dots {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap:10px;
}
/*********************/
.owl-carousel .owl-dots {
	display: flex;
	justify-content: center;
	gap:10px;
	margin-top: 30px;
}
.owl-carousel .owl-dots > div {
	width: 7px;
	height: 7px;
	border-radius: 7px;
	background-color: var(--primary-dark);
}
.owl-carousel .owl-dots > div.active {
	background-color: var(--accent-red);
	outline: 1px solid var(--accent-red);
	outline-offset: 5px;
}
/*********************/
.btn1 {
	position: relative;
    display: inline-flex;
	gap:10px;
	align-items: center;
	justify-content: center;
    background-color: var(--primary-orange);
    color: var(--white);
    font-size: 16px;
	font-weight: 500;
    border: none;
	border-radius: var(--radius-md);
    padding: 12px 20px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}
.btn1:before {
	content: "";
	height: 350px;
	width: 350px;
	background:  var(--accent-orange);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%) scale(0);
	transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: -1;
}
.btn1:hover{
	background: transparent;
    color: var(--white);
}
.btn1:hover:before {
	transform: translateY(-50%) translateX(-50%) scale(1);
}
.btn1.type2 { 
	background-color: transparent;
	border: 2px solid var(--accent-orange);
	color: var(--primary-orange);
}
.btn1.type2:hover {
	color: var(--white);
}
/*********************/
.heading {
    position: relative;
}
.heading span {
    position: relative;
    font-size: 18px;
    font-weight: 600;
	letter-spacing: 1px;
    color: var(--primary-orange);
    text-transform: uppercase;
}
.heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-navy);
	text-wrap: balance;
    margin-bottom: 0;
}
.line {
	display: inline-block;
	width:80px;
	height: 2.5px;
	border-radius: 3px;
	background-color: var(--primary-orange);
}
/*********************/
.checklist1 {
    display:flex;
    gap:10px;
    padding:0 !important;
    list-style:none;
    flex-wrap:wrap;
}
.checklist1 li {
    position:relative;
    padding:10px;
    border:1px solid var(--primary-orange);
    border-radius:10px;
    display: flex;
    gap:10px;
    align-items: center;
}
.checklist2 {
    padding: 0;
    list-style: none;
}
.checklist2 li {
    display: flex;
    gap:10px;
    align-items: center;
}
.checklist2 li::before {
    content: "\f270";
	font-family:bootstrap-icons;
    flex: none;
    color: var(--primary-orange);
	font-size: 21px;
    font-weight: 600;
}
/*********************/
.facts {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}
.facts .item {
	padding:0 20px;
}
.facts .item:not(:last-child) {
	border-right: 1px solid var(--border);
}
.facts .item .icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 2px solid var(--primary-orange);
	overflow: hidden;
	margin-bottom: 10px;
}
.facts .item .icon img {
	height: 45px;
	filter: drop-shadow(0 100px 0 var(--primary-orange));
	transform: translateY(-100px);
}
.facts .item h4 {
	font-size: 21px;
	font-weight: 600;
	color: var(--secondary-navy);
}
.facts .item p {
	margin-bottom: 0;
}
.facts .item:nth-child(2) .icon { border-color: var(--accent-orange);}
.facts .item:nth-child(3) .icon { border-color: var(--cbse-green);}
.facts .item:nth-child(4) .icon { border-color: var(--icse-blue);}
.facts .item:nth-child(2) .icon img { filter: drop-shadow(0 100px 0 var(--accent-orange));}
.facts .item:nth-child(3) .icon img { filter: drop-shadow(0 100px 0 var(--cbse-green));}
.facts .item:nth-child(4) .icon img { filter: drop-shadow(0 100px 0 var(--icse-blue));}
/*********************/
.welcome {
	position: relative;
}
.welcome figure {
	position: relative;
	margin-bottom: 0;
	padding-right: 60px;
}
.welcome figure img {
	border-radius: var(--radius);
}
.welcome figure div {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 160px;
	background-color: var(--white);
	padding: 25px;
	border-radius: var(--radius);
	color: var(--color2);
	text-transform: uppercase;
	box-shadow: var(--shadow);
	font-size: 21px;
	line-height: 1.4;
	border:1px solid var(--color1);
}
/*********************/
.courses .grid_view {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap:15px;
}
.courses .item {
	display: flex;
	flex-direction: column;
	gap:15px;
	position: relative;
	background-color: var(--white);
	padding: 20px;
	border-radius: var(--radius-md);
	border: 2px solid var(--border);
	box-shadow: var(--shadow);
	transition: var(--transition);
	overflow: hidden;
	color: var(--muted);
	font-size: 13px;
}
.courses .item h4 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 0;
	color: var(--icse-blue);
}
.courses .item ul {
	padding-left: 20px;
	margin: 0;
}
.courses .item .icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	background-color: color-mix(in srgb, var(--icse-blue) 10%, white);
}
.courses .item .icon img {
	height: 30px;
	filter: drop-shadow(0 100px 0 var(--icse-blue));
	transform: translateY(-100px);
}
.courses .item span { 
	color: var(--icse-blue);
	font-weight: 500;
}
.courses .item:hover {
	transform: scale(1.02);
}
.courses .item:nth-child(2) h4, .courses .item:nth-child(2) span { color: var(--cbse-green);}
.courses .item:nth-child(3) h4, .courses .item:nth-child(3) span { color: var(--ssc-teal);}
.courses .item:nth-child(4) h4, .courses .item:nth-child(4) span { color: var(--science-purple);}
.courses .item:nth-child(5) h4, .courses .item:nth-child(5) span { color: var(--commerce-orange);}

.courses .item:nth-child(2) .icon { background-color: color-mix(in srgb, var(--cbse-green) 10%, white);}
.courses .item:nth-child(3) .icon { background-color: color-mix(in srgb, var(--ssc-teal) 10%, white);}
.courses .item:nth-child(4) .icon { background-color: color-mix(in srgb, var(--science-purple) 10%, white);}
.courses .item:nth-child(5) .icon { background-color: color-mix(in srgb, var(--commerce-orange) 10%, white);}

.courses .item:nth-child(2) .icon img { filter: drop-shadow(0 100px 0 var(--cbse-green));}
.courses .item:nth-child(3) .icon img { filter: drop-shadow(0 100px 0 var(--ssc-teal));}
.courses .item:nth-child(4) .icon img { filter: drop-shadow(0 100px 0 var(--science-purple));}
.courses .item:nth-child(5) .icon img { filter: drop-shadow(0 100px 0 var(--commerce-orange));}
/*********************/
.featured .owl-carousel .owl-stage-outer { overflow: initial;}
.featured .d-grid {
	grid-template-columns: repeat(5,1fr);
	gap:20px;
}
.featured .item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	background-color: var(--white);
	color: var(--black);
	background-size: cover;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow);
	transition: var(--transition);
	overflow: hidden;
	font-size: 14px;
}
.featured .item .desc {
	padding: 20px 20px 0;
}
.featured .item .btnwrap {
	padding: 0 20px 20px;
}
.featured .item .btn1 {
	padding: 6px 20px;
	width: 100%;
}
.featured .item img {
	width: 100%;
}
.featured .item h4 {
	font-size: 1.3em;
	color: var(--color1);
}
.featured .item:hover {
	transform: scale(1.02);
}
/*********************/
/* counter */
.counter_wrap {
	/* background-image: url('../upload/map.png'); */
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	color: var(--white);
	border-radius: var(--radius-md);
	overflow: hidden;
}
.counter_wrap .d-grid {
	grid-template-columns: repeat(4, 1fr);
}
.counter_wrap .item {
	position: relative;
	overflow: hidden;
}
.counter_wrap .item:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background-color: var(--white);
	opacity: 0.2;
}
.counter_wrap .item h1 {
  	font-family: "Poppins", sans-serif;
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 0;
	color: var(--accent-orange);
}
.counter_wrap .item p {
	margin-bottom: 0;
}
.counter_wrap .item .icon {
	overflow: hidden;
}
.counter_wrap .item .icon img {
	height: 60px;
	/* filter: brightness(0) invert(1); */
	filter:drop-shadow(0 100px 0 var(--gold));
	transform: translateY(-100px);
}
/*********************/
/* testimonials */
.owl-wrap {
}
.testimonials .owl-stage {
    display: flex;
    flex-wrap: nowrap;
}
.testimonials .owl-item {
    display: flex;
    flex: 1 0 auto;
}
.testimonials .item {
    width:100%;
    height:100%;
	position: relative;
	background-color: var(--white);
	padding: 30px;
	border-radius: var(--radius-lg);
	border: 2px solid var(--border);
	/* box-shadow: var(--shadow); */
}
.testimonials .item::before {
	content: '';
	position: absolute;
	top: 0;
	right: -2px;
	width: 0;
	height: 100%;
	border-right:2px solid rgba(var(--color2-rgb), .2);
}
.testimonials .desc img {
	width: auto;
	height: 50px;
}
.testimonials .thumb img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 4px solid var(--grey);
}
.owl-3 .owl-nav > div {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--primary-navy);
	color: var(--white);
	border-radius: 50%;
	font-size: 20px;
	opacity: 0.6;
	transition: var(--transition);
}
.owl-3 .owl-nav > div.owl-prev { left: -25px;}
.owl-3 .owl-nav > div.owl-next { right: -25px;}
.owl-3 .owl-nav > div:hover{ 
	opacity: 1;
}
/*********************/
.cta {
	border-radius: var(--radius-lg);
}
.cta .btn1:before {
	width: 100%;
}
.cta .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background-color: var(--whatsapp);
	font-size: 30px;
	color: var(--white);
}
.cta .form-control {
	height: 100%;
}
.cta .item {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-grow: 1;
}
.cta .item .icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	flex-shrink: 0;
	border-radius: 50%;
	overflow: hidden;
	background-color: rgba(var(--white-rgb), .2);
}
.cta .item .icon img {
	height: 35px;
	filter: brightness(0) invert(1);
}
.cta .item .info {
	display:flex;
	flex-direction: column;
	font-size: 14px;
}
.cta .btn {
	padding: 6px 20px;
	border-radius: 999px;
}
.cta .headphone {
	width: 100%;
	/* mix-blend-mode: lighten; */
}
/*********************/
/* gallery */
.gallery {}
.gallery .item {
	display: block;
	position: relative;
	outline: 2px solid #fff;
	outline-offset: -10px;
}
.gallery .item:after {
	font-family:'FontAwesome';
	font-size: 30px;
	color: #fff;
	position: absolute;
	text-align: center;
	content: '\f055';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: scale(0);
	transition: 1s;
}
.gallery .item:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	transform: scale(0);
	transition: 0.5s;
}
.gallery .item:hover:after {
	transform: scale(1);
}
.gallery .item:hover:before {
	transform: scale(1);
}
/*********************/
.features {
	counter-reset: process;
}
.features .item {
	position: relative;
	height: 100%;
	padding: 20px 25px;
	background: var(--white);
	border-radius: 50px 50px 50px 0px;
	box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
	z-index: 1;
}
.features .item .count {
	position: absolute;
	right: 30px;
	top: 30px;
}
.features .item .count:before {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 60px;
	font-weight: 800;
	-webkit-text-stroke: 2px var(--color1);
	-webkit-text-fill-color: transparent;

	counter-increment: process;
	content: "0" counter(process) "";
}
.features .item .icon {
	width: 80px;
	height: 80px;
	line-height: 65px;
	border-radius: 50%;
	text-align: center;
	color: var(--white);
	font-size: 60px;
	background: var(--color2);
	margin-bottom: 25px;
	box-shadow: 5px 5px 0 #F2F3F5;
	position: relative;
	transition: all .5s ease-in-out;
}
.features .item:hover .icon {
	transform: rotateY(360deg);
}
.features .item .icon img {
	width: 48px;
	filter: brightness(0) invert(1);
}
.features .item .feature-content{
	flex: 1;
}
.features .item .feature-content h4 {
	color: var(--color5);
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 5px;
}
.features .item .feature-content p {
	font-size: 14px;
	color: var(--color5);
	margin-bottom: 0;
}
/* form */
.form1 {
	border-radius: var(--radius-lg);
}
.wrap-input-8 .input {
  width: 100%;
  box-sizing: border-box;
  letter-spacing: 1px;
  background-color: #F2F3F5;
  border: 1px solid #ddd; 
  padding: 7px 14px 9px; 
  transition: 0.4s;
}
.wrap-input-8 .input:focus {
  outline: none;
}
.wrap-input-8 {
  position: relative;
  margin-bottom: 10px;
}
.wrap-input-8 .input ~ .focus-border:before,
.wrap-input-8 .input ~ .focus-border:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color2);
  transition: 0.3s;
}
.wrap-input-8 .input ~ .focus-border:after {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
}
.wrap-input-8 .input ~ .focus-border i:before,
.wrap-input-8 .input ~ .focus-border i:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background-color: var(--color2);
  transition: 0.4s;
}
.wrap-input-8 .input ~ .focus-border i:after {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}
.wrap-input-8 .input:focus ~ .focus-border:before,
.wrap-input-8 .input:focus ~ .focus-border:after {
  width: 100%;
  transition: 0.3s;
}
.wrap-input-8 .input:focus ~ .focus-border i:before,
.wrap-input-8 .input:focus ~ .focus-border i:after {
  height: 100%;
  transition: 0.4s;
}
/*********************/
.certificates .item {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	border: 1px solid #ccc;
	padding: 5px;
}
/*********************/

/* footer */
footer {
	background-color: var(--light-bg);
}
.logo {
	max-height: 80px;
}
footer h4 {
	position: relative;
	color: inherit;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 20px;
	color: var(--navy-dark);
}
footer .links {
	padding: 0;
	margin: 0;
	display: grid;
	/* grid-template-columns: 1fr 1fr 1fr; */
	grid-gap: 10px;
}
footer .links.two {
	grid-template-columns: 1fr 1fr;
}
footer .links li {
	display: block;
}
footer .links li a {
	display: block;
	color: inherit;
}
footer .social li a {
}
.footer-bottom {
	border-top:1px solid rgba(var(--black-rgb), .2);
}
.footer-contact li {
	position: relative;
	display: flex;
	justify-content: start;
	color: inherit;
	font-size: 16px;
	margin-bottom: 15px;
}
.footer-contact li a {
	color: inherit;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.footer-contact li i {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	margin-right: 15px;
	border-radius: 10px;
	background-color: var(--accent-orange);
	text-align: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	color: var(--white);
}
.footer-social {
	display: flex;
	gap: 15px;
}
.footer-social li {
	list-style: none;
}
.footer-social li a {
	display: block;
	height: 38px;
	width: 38px;
	line-height: 38px;
	text-align: center;
	border-radius: 10px 10px 10px 0;
	background: var(--white);
	color: var(--color2);
	transition: 0.3s;
}
.footer-social li a img {
	height: 20px;
	transition: 0.3s;
}
.footer-social li a:hover {
	background: var(--color2);
}
.footer-social li a:hover img {
	filter: brightness(0) invert(1);
}

.call-fixed {
  position: fixed;
  box-shadow: 0px 0px 10px #e0e0e0;
  background: #fff;
  padding: 10px;
  border-radius: 50px;
  bottom: 25px;
  left: 25px;
  z-index: 10;
}
.call-fixed a {
  display: block;
  margin: 10px 0;
}

.scroll-btn {
  position: fixed;
  bottom: 300px;
  right: 30px;
  z-index: 94;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  border-radius: 50%;
  /* Small devices */
}
.scroll-btn i {
  display: inline-block;
  background-color: var(--primary-navy);
  color: var(--white);
  text-align: center;
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  z-index: 2;
  border-radius: inherit;
  position: relative;
  transition: all ease 0.8s;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.02);
}
.scroll-btn:before {
  /* content: ""; */
  position: absolute;
  left: -6px;
  top: -6px;
  right: -6px;
  bottom: -6px;
  background-color: transparent;
  border-radius: inherit;
  z-index: 1;
  border: 2px dashed var(--color1);
  transition: all ease 0.4s;
  animation: spin 13s infinite linear;
}
.scroll-btn:focus i, .scroll-btn:hover i {
  background-color: var(--accent-orange);
  color: var(--white);
}
.scroll-btn:focus:before, .scroll-btn:hover:before {
  border-color: var(--black);
}
.scroll-btn.show {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}
.scrollToTop {
  position: fixed;
  right: 20px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  z-index: 10;
}
.scrollToTop.show {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/************************/
#google_translate_element select {
    display:inline-block;
    width:auto;
    height:initial;
    padding:5px;
    color:#111;
    background-position: right 10px center;
    border-radius:3px;
    border:1px solid #ddd;
}
.goog-te-gadget { font-size: 0 !important;}
#google_translate_element span { display:none;}

.socialfix {
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	margin: 0;
	padding: 5px;
	display: flex;
	gap: 6px;
	flex-direction: column;
	background-color: rgba(var(--white-rgb), .5);
	border: 1px solid var(--white);
	border-radius: 0 8px 8px 0;
	z-index: 1;
}
.socialfix li {
	display: block;
}
.socialfix img {
	height: 28px;
}
/**************/
.whatsappfix {
  position: fixed;
  left: 50px;
  bottom: 90px;
  z-index: 1
}
.whatsappfix .video-btn > span {
  background-color: rgba(37, 211, 102,1);
}
.callfix {
  position: fixed;
  left: 20px;
  bottom: 60px;
  z-index: 1
}
.callfix .video-btn > span {
  background-color: var(--primary-orange);
}

.video-btn {
  text-align: initial;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  position: relative;
  font-size: 28px;
  font-style: italic;
  padding: 6px 0 6px 4.125rem;
  font-weight: 600;
}
.video-btn > span {
  position: absolute;
  left: 0;
  text-align: center;
  height: 3.6875rem;
  width: 3.6875rem;
  line-height: 3.6875rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(255,255,255,.1);
  top: 0;
}
.video-btn:hover, 
.video-btn:focus {color: #fff;}

/*=== Pulse Animation ===*/
.spinner:before,
.spinner:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4.0625rem;
  margin-left: -4.0625rem;
  background-color: inherit;
  -webkit-animation: pluse 2s linear infinite;
  -ms-animation: pluse 2s linear infinite;
  -o-animation: pluse 2s linear infinite;
  animation: pluse 2s linear infinite;
  width: 8.125rem;
  height: 8.125rem;
  -webkit-border-radius: inherit;
  border-radius: inherit;
  opacity: 0;
  z-index: -2;
}
.spinner:after {
  -webkit-animation: pluse 2s linear 2.3s infinite;
  -ms-animation: pluse 2s linear 2.3s infinite;
  -o-animation: pluse 2s linear 2.3s infinite;
  animation: pluse 2s linear 2.3s infinite;
  -webkit-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-ms-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@-o-keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes pluse {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
/************************/
.whyus {}
.whyus figure {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin: 0;
}
.list-item { 
	background-color: var(--white);
	border-radius: var(--radius-sm);
	padding: 15px;
	display: flex;
	gap:15px;
	overflow: hidden;
	align-items: center;
	margin-bottom: 15px;
	box-shadow: var(--shadow);
}
.list-item img { 
	height: 60px;
	flex-shrink: 0;
	filter: drop-shadow(0 100px 0 var(--accent-red));
	transform: translateY(-100px);
}
.list-item p { 
	font-weight: 600;
	margin: 0;
}
.benefits {
	display: grid;
	gap:10px;
	grid-template-columns: repeat(5, 1fr);
}
.benefits .item {
	display: flex;
	flex-direction: column;
	gap:10px;
}
.benefits .item:not(:last-child) {
	padding-right: 10px;
	border-right: 1px solid rgba(var(--black-rgb), .1);
}
.benefits .item .icon {
	overflow: hidden;
}
.benefits .item .icon img {
	height: 50px;
	filter: drop-shadow(0 100px 0 var(--gold));
	transform: translateY(-100px);
}
.benefits .item small {
	font-size: 14px;
}

.blogs .item {
	display: block;
	background-color: var(--white);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow);
	color: var(--navy-dark);
}
.blogs .item .desc {
	padding: 20px;
}
.blogs .item .desc h4 {
	font-size: 21px;
}
.blogs .item .desc small {
	opacity: 0.5;
	font-size: 12px;
}
.blogs .item .desc span {
	color: var(--gold);
	font-weight: 500;
}

.service-card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
}

/* About Image Card */
.about-image-card {
    height: auto !important;
    overflow: hidden;
}

/* Image */
.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

/* Image hover zoom */
.about-image-card:hover .about-img {
    transform: scale(1.05);
}
@media (max-width: 767px) {
    .about-img {
        height: 300px;
    }
}

.apart .owl-stage {
    display: flex;
    flex-wrap: nowrap;
}
.apart .owl-item {
    display: flex;
    flex: 1 0 auto;
}
.apart .item {
    width: 100%;
    height: 100%;
	position: relative;
	background-color: var(--white);
	padding: 30px;
	border-radius: var(--radius-lg);
	border: 2px solid var(--border);
}

/*********************
Responsive CSS
*********************/
@media only screen and (max-width: 480px) {
    .navbar { position:relative; padding:0; box-shadow:none;}
    .navbar-brand img {height:60px}
    .navbar-collapse { background-color:var(--primary-navy); margin-right: calc(var(--bs-gutter-x) * -.5); margin-left: calc(var(--bs-gutter-x) * -.5);}
    .nav-item { padding:0;}
    .nav-item .nav-link { color: var(--white); padding:10px 20px; border-top:1px solid rgba(255,255,255,0.2);}
    .nav-item.dropdown .dropdown-menu { position:relative; width:100%; display:none;}
    .nav-item.dropdown .dropdown-menu.show { display:block;}
    .dropdown-toggle::after { float:right;}
    .dropdown-toggle.show::after { transform: rotateX(180deg);}
    .owl-slide .owl-nav {display:none}
    .footer-contact li { font-size: 14px;}
    .facts { grid-template-columns: repeat(2, 1fr);}
    .facts .item { padding:10px;}
    .facts .item:not(:last-child) {border-right:none}
    .facts .item .icon { width:50px; height:50px;}
    .facts .item .icon img { height:30px;}
    .facts .item h4 { font-size:13px; margin:0;}
    .facts .item p { font-size:10px; line-height:initial;}
    .courses .grid_view {   grid-template-columns: repeat(1, 1fr);}
    .counter_wrap .d-grid {   grid-template-columns: repeat(2, 1fr);}
    .counter_wrap .item { padding:10px 0;}
    .heading h2 { font-size: 24px;}
    .checklist2 li { flex-wrap: wrap;}
    .apart h1 { text-align:center;}
    .apart h1 br { display:none;}
    .owl-3 .owl-nav > div.owl-prev { left:0;}
    .owl-3 .owl-nav > div.owl-next { right:0;}
    .testimonials .item .desc { flex-direction:column; font-size: 14px; line-height: initial;}
}