@import url('https://fonts.googleapis.com/css?family=Livvic:400,600&amp;display=swap');

/*

*/

:root {
	--theme-blue-color: #2d4a8a;
	--theme-darkBlue-color: #263045;
	--light-blue: #f7f9fe;
    --heading-color:#222;
    --paragraph-color: #555;
    --border-color: #c0d2f9;
    --blue-border-color: #c4ccde;
    --light-blue-bg: #eaedf3;
}	

body{
	font-family: 'Livvic', sans-serif;
}

a, input, button, select, textarea, input, button, select, textarea, .transition{
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

input:focus, button:focus, select:focus, textarea:focus{
	outline: none;
}

p{
	color: var(--paragraph-color);
}

strong{
	font-weight: 600;
}

a{
	display: inline-block;
}

a:hover{
	text-decoration: none;
}

ul, ol{
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

h1, h2, h3, h4, h5, h6{
	color: var(--heading-color);
	font-weight: 600
}

h6 a{
	color: var(--theme-blue-color);
}

h6 a:hover{
	color: var(--theme-darkBlue-color);
}

p a{
	color: var(--theme-blue-color)
}

.smallHeading{
	font-size: 19px;
	color: var(--heading-color);
	font-weight: 600;
	margin: 0 0 10px 0
}

.lightBlueBG{
	background-color: var(--light-blue-bg);
	background-image: url(../images/pattern.png);
	background-position: left top;
	background-repeat: repeat;
}

.buttonStyle{
	background-color: var(--theme-blue-color);
	padding: 16px 25px;
	color: white;
	font-weight: 600;
	border: 1px solid var(--theme-blue-color);
}

.buttonStyle:hover{
	background-color: transparent;
	color: var(--theme-blue-color);
}

.buttonStyleTrans{
	background-color: white;
	padding: 16px 25px;
	color: var(--theme-blue-color);
	font-weight: 600;
	border: 1px solid var(--theme-blue-color);
}

.buttonStyleTrans:hover{
	background-color: var(--theme-blue-color);
	color: white;
}

.sectionPadding{
	padding: 100px 0;
}

.headingStyle{
	margin: 0 0 30px 0
}

.headingStyle .topHead{
	font-size: 15px;
	color: var(--theme-blue-color);
	font-weight: 600
}

.headingStyle .mainHead{
	font-size: 36px;
	color: var(--heading-color);
	font-weight: 600;
	line-height: 1.3em;
	position: relative;
}

.headingStyle .mainHead span{
	color: var(--theme-blue-color);
}

.headingStyle .mainHead:before{
	content: "";
	position: absolute;
	bottom: -15px;
	left: 0;
	width: 100px;
	height: 4px;
	background-color: var(--theme-blue-color)
}

.headingStyle .mainHead:after{
	content: "";
	position: absolute;
	bottom: -18px;
	left: 100px;
	width: 11px;
	height: 11px;
	background-color: var(--theme-blue-color)
}

.headingStyle .mainHead.centerBorder:before{
	content: "";
	position: absolute;
	bottom: -15px;
	left: 40%;
	width: 20%;
	height: 4px;
	background-color: var(--theme-blue-color)
}

.headingStyle .mainHead.centerBorder:after{
	content: "";
	position: absolute;
	bottom: -18px;
	left: 49%;
	width: 2%;
	height: 11px;
	background-color: var(--theme-blue-color)
}

.listStyle li{
	margin: 10px 0;
	position: relative;
	padding: 0 0 0 15px;
}

.listStyle li:before{
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 1px solid var(--theme-blue-color);
	position: absolute;
	top: 35%;
	left: 0px;
}

#header{

}

.topHeader{
	background-color: var(--theme-darkBlue-color);
	font-size: 14px;
}

.topHeader p{
	color: white;
}

.topHeader p a{
	margin: 0 5px;
	color: white
}

.topHeader p a:hover{
	color: var(--border-color)
}

.topHeader .buttonStyle{
	float: right;
	margin-left: 20px;
}

.topHeader .buttonStyle:hover{
	color: white
}

.mainHeader{
	padding: 20px 0
}

.mainHeader a{
	display: block;
}

.mainHeader .contactInfo{
	float: right;
	margin-right: 10px;
}

.contactInfo i{
	font-size: 40px;
	color: var(--theme-blue-color);
}

.contactInfo .heading{
	font-size: 18px;
	color: var(--heading-color);
	font-weight: 600
}

.contactInfo p{
	font-size: 15px;
	color: var(--paragraph-color);
	margin: 0
}

.contactInfo p a{
	color: var(--paragraph-color);
}

.navigation{
	background-color: var(--light-blue);
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	position: relative;
}

.navigation:before{
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	top: 0;
	width: 33%;
	background-color: var(--theme-blue-color)
}

.navbar-light .navbar-nav .nav-link{
	color: var(--theme-darkBlue-color);
	padding: 13px 20px;
	font-weight: 600
}

.navigation .callNow, .navigation .callNow a{
	color: white;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover{
	color: var(--theme-blue-color)
}

.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link{
	color: var(--theme-blue-color)
}

.navbar-nav .dropdown-menu{
	display: none;
	background-color: var(--theme-blue-color);
	border-radius: 0;
	padding: 0;
	margin: 0;
	width: 300px;
	border: none;
}

.navbar-nav>li:hover>ul{
	display: block;
}

.navbar-nav .dropdown-menu a{
	color: white;
	padding: 8px;
	display: block;
}

.navbar-nav .dropdown-menu li{
	position: relative;
}

.navbar-nav .dropdown-menu ul{
	left: 100%;
	top: 0;
	position: absolute;
}

.navbar-nav>li>ul>li:hover>ul{
	display: block;
}

.navbar-nav .dropdown-menu a:hover{
	background-color: var(--theme-darkBlue-color)
}

#heroSection{
	background-image: url(../images/bgpattern.jpg);
	background-size: cover;
	padding: 60px 0;
}

#heroSection h6{
	font-size: 21px;
	color: var(--theme-blue-color);
	line-height: 1.6em;
}

#heroSection h1{
	font-size: 55px;
	color: var(--theme-darkBlue-color);
	font-weight: 600
}

#heroSection h1 span{
	color: var(--theme-blue-color)
}

#heroSection p{
	font-size: 18px;
	color: var(--heading-color)
}

.queryFormBox{
	background-color: var(--theme-darkBlue-color);
	padding: 20px;
}

.queryFormBox input[type="text"], .queryFormBox input[type="email"], .queryFormBox input[type="tel"]{
	padding: 10px;
	width: 100%;
	margin: 0 0 10px 0;
	border: 1px solid white;
}

.queryFormBox input[type="text"]:focus, .queryFormBox input[type="email"]:focus, .queryFormBox input[type="tel"]:focus{
	background-color: var(--theme-blue-color);
	color: white;
}

.queryFormBox input[type="submit"]{
	padding: 10px 20px;
	border: 1px solid var(--theme-blue-color);
	background-color: var(--theme-blue-color);
	color: white;
}

.queryFormBox input[type="submit"]:hover{
	background-color: var(--border-color);
	color: var(--theme-blue-color);
}

.heroImage{
	background-image: url(../images/gosee.jpg);
	background-size: cover;
	width: 500px;
	height: 400px;
	animation: blobEffect 5s linear infinite;
}

@keyframes blobEffect{
	0%, 100%{
		border-radius: 64% 36% 27% 73% / 55% 58% 45% 42%;
	}
	25%{
		border-radius: 73% 27% 26% 38% / 73% 36% 64% 27%;
	}
	50%{
		border-radius: 28% 72% 44% 56% / 49% 40% 60% 51%;
	}
	25%{
		border-radius: 40% 60% 70% 30% / 47% 62% 38% 53%;
	}
}

#ourServices{

}

.serviceBox .icon{
	width: 80px;
	height: 80px;
	display: inline-block;
	border: 1px solid var(--blue-border-color);
	font-size: 40px;
	line-height: 80px;
	background-color: white;
	color: var(--theme-blue-color);
	margin: 0 0 80px 0;
	position: relative;
}

.serviceBox .icon:before{
	content: "";
	width: 1px;
	height: 82px;
	background-color: var(--blue-border-color);
	position: absolute;
	bottom: -82px;
	left: 49%;
}

.serviceBox .serviceContent{
	background-color: white;
	border: 1px solid var(--blue-border-color);
	padding: 20px;
	margin: 0 0 30px 0
}

.serviceContent a{
	color: var(--theme-blue-color);
	font-weight: 600
}

.serviceContent a:hover{
	color: var(--theme-darkBlue-color);
}

.serviceBox:hover .icon{
	background-color: var(--theme-blue-color);
	color: white
}

.serviceBox:hover .serviceContent{
	background-color: var(--theme-blue-color);
	color: white
}

.serviceBox:hover .serviceContent .smallHeading, .serviceBox:hover .serviceContent p, .serviceBox:hover .serviceContent a{
	color: white
}

.slick-prev, .slick-next{
	width: 60px;
	height: 60px;
	z-index: 10;
	top: 66%
}

.slick-prev:before, .slick-next:before{
	font-size: 60px;
	color: var(--theme-blue-color)
}

.slick-next{
	right: -50px;
}

.slick-prev{
	left: -50px;
}

.coursesBox{
	position: relative;
	margin: 0 0 30px 0
}

.coursesBox:before{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,.6);
	z-index: 0;

	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.coursesBox:hover:before{
	background-color: rgba(0,0,0,.9);
}

.coursesBox .numofprogram{
	color: white;
	position: absolute;
	bottom: 48px;
	left: 20px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
}

.coursesBox .title{
	color: white;
	position: absolute;
	bottom: 15px;
	left: 20px;
	font-weight: 600;
	font-size: 24px;
}

.courseStyleBox{
	position: relative;
	overflow: hidden;
	margin: 0 0 30px 0
}

.courseStyleBox:before{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,.6);
	z-index: 0;

	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.courseStyleBox .title{
	color: white;
	position: absolute;
	bottom: 10px;
	left: 15px;
	font-weight: 600;
	font-size: 18px;
}

.courseStyleBox p{
	position: absolute;
	bottom: -90px;
	left: 15px;
	color: white;
	padding-right: 15px
}

.courseStyleBox:hover .title, .courseStyleBox:hover p{
	-moz-transform: translateY(-90px);
	-webkit-transform: translateY(-90px);
	-o-transform: translateY(-90px);
	-ms-transform: translateY(-90px);
	transform: translateY(-90px);	
}

.digitalMarketingCourses.owl-carousel .owl-nav button.owl-next, .digitalMarketingCourses.owl-carousel .owl-nav button.owl-prev, .digitalMarketingCourses.owl-carousel button.owl-dot{
	position: absolute;
	top: 40%;
	background-color: var(--theme-blue-color);
	width: 40px;
	height: 40px;
    font-size: 30px;
    color: white;
}

.digitalMarketingCourses .owl-next{
	right: -50px;
}

.digitalMarketingCourses .owl-prev{
	left: -50px;
}

.digitalMarketingCourses .owl-prev span, .digitalMarketingCourses .owl-next span{
	-moz-transform: translateY(-5px);
	-webkit-transform: translateY(-5px);
	-o-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
	display: inline-block;
}

.reviewBox{
	border: 1px solid var(--blue-border-color);
	background-color: white;
	padding: 20px;
	margin: 20px 0 30px 0
}

.reviewerPic{
	position: relative;
	-moz-transform: translateY(-40px);
	-webkit-transform: translateY(-40px);
	-o-transform: translateY(-40px);
	-ms-transform: translateY(-40px);
	transform: translateY(-40px);	
}

.reviewerPic:after{
	content: "";
	background-image: url(../images/quote.png);
	background-repeat: no-repeat;
	background-position: left top;
	position: absolute;
	bottom: -60px;
	left: 30%;
	width: 60px;
	height: 52px;
}

.reviewCarousel.owl-theme .owl-dots .owl-dot span{
	background: var(--paragraph-color);
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.reviewCarousel.owl-theme .owl-dots .owl-dot.active span, .reviewCarousel.owl-theme .owl-dots .owl-dot:hover span{
	background: var(--theme-blue-color);
	width: 30px;
}

.blogBox{
	border: 1px solid var(--light-blue-bg);
	margin: 0 0 30px 0
}

.blogPic{
	position: relative;
	margin: 0 0 30px 0
}

.blogPic .date{
	background-color: var(--theme-blue-color);
	color: white;
	font-weight: 600;
	font-size: 18px;
	text-align: center;
	padding: 5px 10px;
	position: absolute;
	left: 20px;
	bottom: -20px;
	line-height: 1.3em;
}

.blogBox .smallHeading{
	margin: 0 15px 10px 15px;
}

.blogBox .minRead{
	border-top: 1px solid var(--light-blue-bg);
	border-bottom: 1px solid var(--light-blue-bg);
	margin: 0 15px;
	color: var(--paragraph-color);
	padding: 3px 0
}

.blogBox p{
	margin: 10px 15px;
}

.blogBox a{
	margin: 0 15px 15px;
	font-weight: 600;
	color: var(--theme-blue-color)
}

.blogBox a:hover{
	color: var(--theme-darkBlue-color)
}

#footer{
	background-color: var(--heading-color);
	padding: 40px 0 20px 0;
	font-size: 15px;
}

#footer .smallHeading{
	color: var(--light-blue);
	font-size: 18px;
}

.footerLinks a{
	display: block;
	margin: 8px 0;
	color: var(--light-blue);
}

.footerLinks a:hover{
	color: var(--border-color)
}

.bottomFooter{
	background-color: #121212;
	padding: 25px 0;
	margin: 30px 0 20px 0
}

.footerInfo{
	display: inline-block;
}

.footerInfo li{
	display: inline-block;
	border-right: 1px solid var(--border-color);
	padding: 0 15px;
	text-align: left;
	line-height: 1em;
}

.footerInfo li i{
	width: 36px;
	height: 36px;
	border: 1px solid var(--border-color);
	display: inline-block;
	line-height: 33px;
	color: var(--border-color);
	border-radius: 50%;
	text-align: center;
	margin: 0 10px 0 0;
	-moz-transform: translateY(-10px);
	-webkit-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);	
}

.footerInfo li span{
	display: block;
	font-size: 14px;
}

.footerInfo li a{
	font-size: 18px;
	color: white;
	line-height: 1.3em;
}

.footerSocialLinks{
	display: inline-block;
	margin: 0 0 0 15px;
}

.footerSocialLinks a{
	width: 36px;
	height: 36px;
	display: inline-block;
	line-height: 36px;
	background-color: var(--border-color);
	color: var(--theme-blue-color);
	border-radius: 50%;
	text-align: center;	
	-moz-transform: translateY(-10px);
	-webkit-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	transform: translateY(-10px);
	margin: 0 5px;
}

.footerSocialLinks a:hover{
	background-color: var(--theme-blue-color);
	color: var(--border-color)
}

#footer p{
	font-size: 14px;
	color: var(--border-color);
	margin: 0
}

#footer p a{
	color: var(--border-color);
}

.newsLetterForm span{
	color: var(--border-color);
	font-size: 15px;
	display: inline-block;
	margin: 0 15px 0 0
}

.newsLetterForm input[type="text"]{
	padding: 10px;
	border: 1px solid var(--border-color);
	background-color: transparent;
	color: white;
	margin: 0 15px 0 0;
	width: 40%;
}

.newsLetterForm input[type="submit"]{
	padding: 10px 20px;
	border: 1px solid var(--theme-blue-color);
	background-color: var(--theme-blue-color);
	color: white;
}

.newsLetterForm input[type="submit"]:hover{
	background-color: var(--border-color);
	color: var(--theme-blue-color);
}

.scrollup {
	padding: 5px 10px;
    position: fixed;
    bottom: 50px;
    right: 30px;
    display: none;
    background-color: var(--theme-blue-color);
    text-align: center;
    z-index: 99999;
    color: white;
    text-transform: uppercase;
    border: 1px solid var(--theme-blue-color);
}

.scrollup:hover{
	color: var(--theme-blue-color);
	background-color: white;
}

#breadCrumb{
	background-image: url(../images/bgpattern.jpg);
	background-size: cover;
	padding: 30px 0;
}

#crumbs{
	color: var(--paragraph-color);
	font-weight: 600;
	font-size: 14px;
}

#crumbs a{
	color: var(--theme-blue-color);
	position: relative;
}

#crumbs a:after{
	content: "/";
	margin: 0 8px 0 10px;
}

.highLightBox{
	background-color: var(--theme-blue-color);
	padding: 15px;
	color: white;
	margin: 0 0 30px 0
}

.contactDetails{
	background-color: var(--light-blue-bg);
	padding: 20px;
	border: 1px solid var(--blue-border-color);
}

.contactDetails .icon{
	font-size: 30px;
	color: var(--theme-blue-color);
	background-color: white;
	width: 50px;
	height: 50px;
	border: 1px solid var(--blue-border-color);
}

.contactDetails .head{
	font-weight: 600
}

.formStyle input[type="text"], .formStyle input[type="email"], .formStyle input[type="tel"], .formStyle textarea{
	padding: 7px;
	width: 100%;
	border: 1px solid var(--blue-border-color);
	margin-bottom: 20px;
}

.formStyle textarea{
	min-height: 100px;
	margin-bottom: 10px;
}

.formStyle input[type="submit"]{
	background-color: var(--theme-blue-color);
	padding: 8px 20px;
	color: white;
	font-weight: 600;
	border: 1px solid var(--theme-blue-color);
	margin: 14px 0 0 0
}

.formStyle input[type="submit"]:hover{
	background-color: transparent;
	color: var(--theme-blue-color);
}

.socilLink a{
	width: 40px;
	height: 40px;
	background-color: white;
	border: 1px solid var(--theme-blue-color);
	line-height: 40px;
	text-align: center;
	font-size: 18px;
	border-radius: 50%;
	margin: 0 5px;
	color: var(--theme-blue-color)
}

iframe{
	display: block;
}

#innerSection ol{
	list-style: decimal;
	margin: 0 0 0 20px;
}

#innerSection ol li{
	margin: 10px 0;
	color: var(--paragraph-color)
}

#innerSection ul li{
	margin: 10px 0;
	position: relative;
	padding: 0 0 0 15px;
	color: var(--paragraph-color)
}

#innerSection ul li:before{
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 1px solid var(--theme-blue-color);
	position: absolute;
	top: 35%;
	left: 0px;
}

.blogDesign{
	position: relative;
	margin: 0 0 40px 0
}

.blogDesign .post-categories li a{
	background-color: var(--theme-darkBlue-color);
	color: white;
	padding: 5px 8px;
	display: inline-block;
	border-radius: 1px;
	font-size: 11px;
	text-transform: uppercase;
	position: absolute;
	left: 10px;
	top: 10px;
}

.blogDesign .post-categories li a:hover{
	background-color: var(--theme-blue-color)
}

.blogDesign h4 a{
	font-size: 19px;
	line-height: 1.4em;
	color: var(--heading-color)
}

.blogDesign h4 a:hover{
	color: var(--theme-blue-color)
}

.blogDesign .readMore{
	color: var(--theme-blue-color);
	font-weight: 600
}

.blogMeta a{
	color: var(--theme-blue-color);
	font-weight: 600
}

.blogMeta a:hover{
	color: var(--theme-darkBlue-color);
}

.widgetArea{
	margin: 0 0 30px 0;
}

.widgetArea ul li a{
	color: var(--heading-color);
	font-size: 14px;
	padding: 8px 0;
	border-bottom: 1px solid var(--blue-border-color);
	display: block;
	font-weight: 600
}

.widgetArea ul li a:hover{
	color: var(--theme-blue-color)
}

.clickToCall{
	position: fixed;
	bottom: 30px;
	left: 30px;
	background-color: var(--theme-blue-color);
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 25px;
	text-align: center;
	border-radius: 50%;
	color: white;
	z-index: 999
}

.clickToCall:after{
	content: "";
	position: absolute;
	top: 0px;
	bottom: 0;
	right: 0;
	left: 0;
	border: 3px solid var(--border-color);
	border-radius: 50px;
	animation: zoomOut 3s linear infinite;
}

.clickToCall:hover{
	background-color: var(--theme-darkBlue-color);
	color: white;
}

@keyframes zoomOut{
	0%{
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		-o-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	33%{
		-moz-transform: scale(1.5);
		-webkit-transform: scale(1.5);
		-o-transform: scale(1.5);
		-ms-transform: scale(1.5);
		transform: scale(1.5);
		opacity: .6;
		border-width: 6px;
	}
	66%{
		-moz-transform: scale(1.7);
		-webkit-transform: scale(1.7);
		-o-transform: scale(1.7);
		-ms-transform: scale(1.7);
		transform: scale(1.7);
		opacity: .3;
		border-width: 6px;
	}
	100%{
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		-o-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
		opacity: 0;
		border-width: 9px;
	}
}

.callContent{
	display: none;
	position: fixed;
	background-color: white;
	padding: 15px 25px;
	bottom: 120px;
	left: 30px;
	border-radius: 10px;
	color: var(--theme-blue-color);
	font-weight: 600;
	text-align: center;

	-webkit-box-shadow: 0 0 15px 0 #ddd;
	box-shadow: 0 0 15px 0 #ddd;
	z-index: 999;
}

.callContent:after{
	content: "";
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 20px solid white;
	position: absolute;
	bottom: -20px;
	left: 15px;
}

#statsBoxWrapper{
	-moz-transform: translateY(-20px);
	-webkit-transform: translateY(-20px);
	-o-transform: translateY(-20px);
	-ms-transform: translateY(-20px);
	transform: translateY(-20px);
	margin: 0 0 -20px 0
}

#statsBox{
	background-color: var(--theme-darkBlue-color);	
	box-shadow: 0 15px 12px -12px var(--theme-blue-color);
}

#statsBox h5{
	color: white;
	padding: 20px 0 0 0;
	font-size: 26px;
}

#statsBox p{
	color: white;
	font-size: 14px;
}

.courseAccordian, .magic-accordion {
	margin: 20px 0
}

.courseAccordian .title, .magic-accordion .head {
	border: 1px solid var(--light-blue-bg);
	padding: 10px;
	position: relative;
	margin: 5px 0;
	color: var(--theme-blue-color);
	cursor: pointer;
	font-family: 'Quicksand', sans-serif;
	font-weight: 600;
	font-size: 17px;

	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.courseAccordian .title:hover, .magic-accordion .head:hover, .courseAccordian .title, .magic-accordion .head.active {
	background-color: var(--theme-darkBlue-color);
	color: white;
}

.courseAccordian ol ul, .magic-accordion .body{
	margin: 0 0 0 10px;
}

.courseAccordian ol ul li a {
	display: block;
	background-color: #eee;
	padding: 1rem;
	color: #777;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.courseAccordian ol ul li a:hover {
	background-color: #55acee;
	color: #fff;
}

.courseAccordian ol ul {
	display: none;
}

.courseAccordian .open {
	transform: rotate(45deg);
	transition: all .25s ease;
}

.courseAccordian .fa {
	transition: all .25s ease;
	float: right;
	margin: 3px 0 0 0
}

.magic-accordion .body ul li{
	margin: 10px 0 !important;
	position: relative;
	padding: 0 0 0 15px !important
}

.magic-accordion .body ul li:before {
    border: 1px solid var(--theme-blue-color) !important
}

.magic-accordion .head:after{
	content: "\f067";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 13px;
	position: absolute;
	top: 13px;
	right: 10px;
}

.magic-accordion .head.active:after{
	content: "\f068";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 13px;
	position: absolute;
	top: 13px;
	right: 10px;
}

.whatsappChat{
    position: fixed;
    right:0;
    top:calc(50% - 75px);
    z-index:999;
}

.whatsappChat img{
    height:150px;
}

@media screen and (min-width: 100px) and (max-width: 767px){
	.topHeader{
		text-align: center;
		padding-top: 10px;
	}

	.topHeader .text-right{
		display: none
	}

	.topHeader p{
		padding-top: 0px !important;
	}

	.topHeader .buttonStyle{
		display: none
	}

	.mainHeader .contactInfo{
		float: none;
		margin-top: 10px;
	}

	.navigation:before{
		width: 100%
	}

	.navbar-light .navbar-toggler{
		background-color: white
	}

	.navbar-toggler{
		width: 100%
	}

	.navbar-toggler p{
		float: left;
		margin: 4px 0 0 0
	}

	.navbar-light .navbar-toggler-icon{
		float: right
	}

	.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link{
		color: white;
	}

	.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover{
		color: white
	}

	.navbar-light .navbar-nav .nav-link{
		color: white;
		padding-left: 10px;
	}

	.navigation .callNow, .navigation .callNow a{
		text-align: center;
		padding-bottom: 10px;
	}

	#heroSection{
		padding: 30px 0
	}

	#heroSection h1{
		font-size: 32px;
	}

	.queryFormBox{
		margin: 20px 0 0 0
	}

	.buttonStyle, .buttonStyleTrans{
		padding: 10px 15px;
	}

	.heroImage{
		width: 100%;
		height: 200px;
		margin: 30px 0 0 0
	}

	.sectionPadding{
		padding: 30px 0
	}

	.headingStyle .mainHead{
		font-size: 23px;
	}

	.listStyle li{
		margin: 10px 0 0 0
	}

	#aboutUs h6{
		margin-bottom: 20px;
	}

	.serviceBox .icon{
		margin: 0 0 40px 0;
	}

	.serviceBox .icon:before{
		height: 42px;
		bottom: -42px;
	}

	.reviewerPic{
		margin-bottom: -20px;
	}

	.reviewerPic:after{
		background-image: none
	}

	.footerInfo{
		display: block;
	}

	.footerInfo li{
		display: block;
		border-right: none;
		margin: 0 0 10px 0
	}

	.footerSocialLinks{
		margin: 10px 0 0 0
	}
	
	.digitalMarketingCourses .owl-next{
	    right: 0;
	}
	
	.digitalMarketingCourses .owl-prev{
	    left: 0;
	}
	
	.scrollup{
	    right: 40%;
	    bottom: 0;
	}
}

@media screen and (min-width: 768px) and (max-width: 1023px){

	.mainHeader .contactInfo{
		width: 48%;
	}

	.buttonStyle{
		padding: 16px 16px;
	}

	.navigation:before{
		width: 100%
	}

	.navbar-light .navbar-toggler{
		background-color: white
	}

	.navbar-toggler{
		width: 100%
	}

	.navbar-toggler p{
		float: left;
		margin: 4px 0 0 0
	}

	.navbar-light .navbar-toggler-icon{
		float: right
	}

	.navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show>.nav-link{
		color: white;
	}

	.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover{
		color: white
	}

	.navbar-light .navbar-nav .nav-link{
		color: white;
		padding-left: 10px;
	}

	.navigation .callNow, .navigation .callNow a{
		text-align: center;
		padding-bottom: 10px;
	}

	#heroSection{
		padding: 40px 0
	}

	#heroSection h1{
		font-size: 36px;
	}

	.heroImage{
		width: 100%;
		margin: 20px 0 0 0
	}

	.sectionPadding{
		padding: 50px 0
	}

	#aboutUs h6{
		margin-bottom: 20px;
	}

	.coursesBox .title{
		font-size: 21px;
	}

	.reviewerPic{
		margin-bottom: -20px;
	}

	.reviewerPic:after{
		background-image: none
	}

}

@media screen and (min-width: 1024px) and (max-width: 1200px){
	.navbar-light .navbar-nav .nav-link{
		padding: 13px 11px;
	}
}

@media screen and (min-width: 1500px) and (max-width: 8000px){
    .navigation:before{
        width: 37%;
    }
}

/*==================Arjun==================*/

.sectionPadding2{
	padding: 20px;
}

  /* Top Info Bar */
    .top-bar {
      background: #0d2c63;
      color: #fff;
      text-align: center;
      padding: 8px 0;
      font-size: 0.95rem;
      letter-spacing: 0.5px;
    }

    /* Hero Section */
    .hero {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(120deg, #0a1f4d, #123b8c);
      padding: 80px 10%;
      gap: 50px;
      flex-wrap: wrap;
    }

    .hero-text {
      flex: 1;
      min-width: 340px;
    }

    .hero-text h1 {
      font-size: 2.3rem;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 20px;
      color: #ffffff;
    }

    .hero-text h2 {
      font-size: 1.2rem;
      color: #bcd4ff;
      margin-bottom: 15px;
      font-weight: 500;
    }

    .hero-text p {
      font-size: 1rem;
      color: #e1e7f5;
      line-height: 1.7;
      max-width: 550px;
    }

    /* Form Box */
    .form-box {
      flex: 1;
      max-width: 380px;
      background: #fff;
      color: #000;
      border-radius: 16px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
      padding: 35px 35px;
      position: relative;
      overflow: hidden;
    }

    .form-box h3 {
      text-align: center;
      margin-bottom: 25px;
      font-weight: 600;
      font-size: 1.25rem;
      color: #0a1f4d;
      border-bottom: 2px solid #123b8c;
      padding-bottom: 10px;
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-group input {
      width: 100%;
      padding: 12px 15px;
      border: 1.5px solid #d0d4da;
      border-radius: 8px;
      font-size: 1rem;
      outline: none;
      transition: 0.3s;
    }

    .form-group input:focus {
      border-color: #123b8c;
      box-shadow: 0 0 0 3px rgba(18, 59, 140, 0.2);
    }

    .submit-btn {
      width: 100%;
      padding: 12px;
      background: linear-gradient(135deg, #123b8c, #0a1f4d);
      color: #fff;
      font-size: 1rem;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
    }

    .submit-btn:hover {
      background: linear-gradient(135deg, #0a1f4d, #123b8c);
      transform: translateY(-2px);
    }

    /* WhatsApp Floating Button */
    .whatsapp-btn {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      width: 55px;
      height: 55px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      cursor: pointer;
      transition: 0.3s;
      z-index: 100;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
      background-color: #1ebd5d;
    }

    /* Responsive Design */
    @media (max-width: 900px) {
      .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 6%;
      }

      .hero-text h1 {
        font-size: 2rem;
      }

      .form-box {
        width: 100%;
        max-width: 420px;
        margin-top: 30px;
      }
    }
    .wrapper{
    	text-align: center;
    }
    #batchCountdown{
    	color: #fff;
    	background-color: #fff;
    	display: inline-block;
    	padding: 10px;
    	border-radius: 5px;
    }


    /*====================CSS Delhi | Ghaziabad | Dehradun ====================*/
    /*====================CSS Delhi | Ghaziabad | Dehradun ====================*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

.wt-footer-nav-wrap {
    width: 100%;
    padding: 20px 0;
    background: transparent; /* No background as requested */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wt-help-links-inner {
    display: flex;
    align-items: center;
    gap: 15px; /* Spacing between links */
}

/* Modern Link Styling */
.wt-help-item-modern {
    text-decoration: none;
    color: #ffffff; /* Default font color white */
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px; /* Spacing between icon and text */
    position: relative; /* Essential for animation */
    transition: color 0.3s ease;
    padding-bottom: 5px; /* Spacing for the animated line */
}

/* Icons styling */
.wt-help-item-modern i {
    color: #ffffff; /* Icons also white initially */
    font-size: 15px;
    transition: 0.3s ease;
}

/* The Animated Line (Not real underline) */
.wt-help-item-modern::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%; /* Initially no width */
    height: 3px; /* Thin animated line */
    background: linear-gradient(to right, #2563eb, #3b82f6); /* Premium blue gradient */
    border-radius: 5px;
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Ultra-smooth entry */
}

/* Hover Effect: Text turns blue and line appears */
.wt-help-item-modern:hover {
    color: #2563eb; /* Text becomes blue */
}

.wt-help-item-modern:hover i {
    color: #2563eb; /* Icon becomes blue */
    transform: translateY(-2px); /* Subtle icon lift */
}

.wt-help-item-modern:hover::before {
    width: 100%; /* Line spreads across full text */
}

.wt-help-divider-modern {
    color: #ffffff;
    font-weight: 300;
    opacity: 0.5;
    font-size: 1.1rem;
}

/* Responsive adjustment for Mobile */
@media (max-width: 600px) {
    .wt-help-item-modern {
        font-size: 0.85rem;
    }
}


    @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

.wt-section {
    background: #ffffff;
    padding: 80px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.wt-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Heading Styling */
.wt-header {
    text-align: center;
    margin-bottom: 60px;
}

.wt-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e3a8a; /* Deep Blue */
    letter-spacing: -1.5px;
    margin-bottom: 15px;
}

.wt-header h1 span {
    background: linear-gradient(to right, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wt-header p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Grid: Strict 4 Column */
.wt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Responsive */
@media (max-width: 1100px) { .wt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 650px) { 
    .wt-grid { grid-template-columns: 1fr; }
    .wt-header h1 { font-size: 2rem; }
}

/* Modern Card Style */
.wt-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 25px;
    text-decoration: none;
    color: #1e293b;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.wt-card:hover {
    transform: translateY(-12px);
    border-color: #2563eb;
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.15);
}

.wt-icon-box {
    width: 50px;
    height: 50px;
    background: #1e3a8a;
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.wt-card:hover .wt-icon-box {
    background: #2563eb;
    transform: scale(1.1) rotate(5deg);
}

.wt-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e3a8a;
}

.wt-list {
    list-style: none;
    margin-bottom: 25px;
    padding: 0;
}

.wt-list li {
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.wt-list li i {
    color: #10b981; /* Success Green */
    margin-right: 12px;
    font-size: 14px;
}

.wt-footer-link {
    margin-top: auto;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2563eb;
    display: flex;
    align-items: center;
}

.wt-footer-link i {
    margin-left: 8px;
    transition: 0.3s;
}

.wt-card:hover .wt-footer-link i {
    transform: translateX(6px);
}

.wt-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #eff6ff;
    color: #1e3a8a;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}


/*==================================*/

/* Responsive Table Design */
    .seo-table-wrapper {
        width: 100%;
        overflow-x: auto;
        margin: 30px 0;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    .seo-fee-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
        background: #fff;
    }
    .seo-fee-table thead {
        background: #232f3e;
        color: #ffffff;
    }
    .seo-fee-table th, .seo-fee-table td {
        padding: 18px;
        text-align: left;
        border-bottom: 1px solid #eee;
    }
    .seo-fee-table th {
        font-size: 14px;
        letter-spacing: 1px;
    }
    .seo-fee-table tbody tr:hover {
        background-color: #fcfcfc;
    }
    /* Bold Keywords for SEO */
    strong {
        color: #111;
        font-weight: 700;
    }

    #batchCountdown{font-weight:bold; color:#003366;}

    /* Container */
.simple-wrapper {
    display: flex;
    justify-content: center;
    padding: 30px;
    background-color: #ffffff; /* White background for clean look */
    margin-top: -5%;
}

/* Minimalist Button */
.minimal-ai-btn {
    display: inline-block;
    padding: 12px 32px;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #0f172a; /* Dark Slate text */
    text-decoration: none;
    background: transparent;
    border: 1.5px solid #0f172a; /* Simple dark border */
    border-radius: 4px;
    transition: all 0.4s ease;
    position: relative;
    
    /* Simple Pulse Animation (Infinity) */
    animation: simple-pulse 3s ease-in-out infinite;
}

/* Subtlest possible animation */
@keyframes simple-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

/* Hover Effect */
.minimal-ai-btn:hover {
    background-color: #0f172a; /* Fills with dark color on hover */
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    animation: none; /* Stops animation on hover */
}

/* Responsive */
@media (max-width: 480px) {
    .minimal-ai-btn {
        width: 100%;
        text-align: center;
    }
}

/* Tooltip Logic - Position and Style */
.minimal-ai-btn {
    position: relative; /* Tooltip positioning ke liye */
}

/* The Tooltip Box */
.minimal-ai-btn::after {
    content: attr(data-tooltip); /* HTML se text uthayega */
    position: absolute;
    bottom: 125%; /* Button ke upar dikhane ke liye */
    left: 50%;
    
    transform: translateX(-50%) translateY(10px);
    background-color: #0f172a; /* Same dark slate as button */
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

/* Tooltip Little Triangle (Arrow) */
.minimal-ai-btn::before {
    content: '';
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border-width: 6px;
    border-style: solid;
    border-color: #0f172a transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

/* Hover State: Tooltip becomes visible */
.minimal-ai-btn:hover::after, 
.minimal-ai-btn:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

    /* Premium AI Banner Section */
    .ai-premium-banner {
        width: 100%;
        max-width: 950px;
        margin: 40px auto;
        padding: 25px 35px;
        background: #ffffff;
        /* Subtle Shadow & Border */
        border: 1px solid #edf2f7;
        border-left: 6px solid #007bff; /* Branded Blue Accent */
        border-radius: 16px;
        
        display: flex;
        align-items: center;
        justify-content: space-between;
        
        /* Smooth Entrance & Hover */
        box-shadow: 0 10px 30px rgba(0, 123, 255, 0.04);
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-sizing: border-box;
        overflow: hidden;
    }

    /* Hover Interaction */
    .ai-premium-banner:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 123, 255, 0.1);
        border-color: #cbd5e0;
    }

    /* Content Area */
    .ai-content-box {
        flex: 1;
        padding-right: 40px;
    }

    /* Professional Headline & Text */
    .ai-content-box h4 {
        margin: 0 0 8px 0;
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 19px;
        color: #1a202c;
        font-weight: 700;
    }

    .ai-content-box p {
        margin: 0;
        font-family: 'Segoe UI', sans-serif;
        font-size: 15px;
        color: #4a5568;
        line-height: 1.6;
    }

    .ai-keyword {
        color: #007bff;
        font-weight: 600;
    }

    /* Premium Button with Glow */
    .ai-btn-premium {
        display: inline-block;
        padding: 14px 28px;
        background: #007bff;
        color: #ffffff !important;
        text-decoration: none !important;
        font-family: 'Inter', sans-serif;
        font-size: 15px;
        font-weight: 600;
        border-radius: 12px;
        white-space: nowrap;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
    }

    .ai-btn-premium:hover {
        background: #0056b3;
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 123, 255, 0.35);
    }

    /* Mobile View */
    @media (max-width: 768px) {
        .ai-premium-banner {
            flex-direction: column;
            text-align: center;
            padding: 25px;
        }
        .ai-content-box {
            padding-right: 0;
            margin-bottom: 20px;
        }
    }
    
    
    @media screen and (min-width: 100px) and (max-width: 767px) {
    .topHeader .text-right {
        display: block;
    }

.topHeader p {
    display: flex;
    justify-content: center; /* Horizontally center karega */
    align-items: center;     /* Vertically center karega */
}

.topHeader p a {
    margin: 0 6px;
    color: white;
    font-size: 11px;
    text-decoration: none; /* Optional: Underline hatane ke liye */
}
}