/*Common CSS*/
:root{
	--dark: #0b1224;
	--white: #fff;
	--black: #000;
	--light: #212842;
	--blue: #5b83ff;
	--bg: #0d1329;
	--gradient: linear-gradient(90deg, #62b3ff, #5568ff);
	--shadow: 0 10px 35px rgba(0,0,0,0.35);
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: Poppins, sans-serif;
	background: var(--bg);
}
body::-webkit-scrollbar{
	width: 10px;
}
body::-webkit-scrollbar-thumb{
	background: var(--gradient);
	border-radius: 10px;
}
a {
	text-decoration: none;
}
.container {
	width: min(1180px, 92%);
	margin: auto;
}
/*HEADER*/
/*TOPBAR*/
.topbar {
	background: var(--dark);
	color: var(--white);
	padding: 10px 0;
	font-size: 14px;
}
.top-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}
.social-wrap{
	display: flex;
	align-items: center;
	gap: 12px;
}
.social-wrap a{
	width: 30px;
	height: 30px;
	border-radius:50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--light);
	color: var(--white);
	transition: 0.5s ease-in-out;
}
.social-wrap a:hover{
	background: var(--gradient);
}
/*MAIN HEADER*/
.header{
	background: var(--light);
	position: sticky;
	top: 0;
	padding: 10px;
	z-index: 99;
}
.nav-wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
	font-size: 25px;
	font-weight: 800;
	color: var(--white);
	letter-spacing: 1px;
	padding: 12px 28px;
}
.logo .bx{
	font-size:40px;
	padding-right: 10px;
	background: var(--gradient);
	-webkit-background-clip:text;
	-webkit-text-fill-color:transparent;
	background-clip: text;
	vertical-align: bottom;
}
.nav {
	display:flex;
	align-items:center;
	gap:34px;
}
.nav a {
	color:var(--white);
	font-weight:500;
}
.btn,
.hero-btn{
	background: var(--gradient);
	color: var(--white);
	padding: 10px 20px;
	border-radius: 6px;
	border: none;
	display: inline-flex;
	font-weight: 300;
}
.hamburger{
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
}
.hamburger span{
	width: 32px;
	height: 3px;
	background: var(--white);
}
/*HERO SECTION*/
.hero {
	min-height: 100vh;
	background: linear-gradient(rgba(8, 14, 30, 0.62), rgba(8, 14, 30, 0.62)), url('../images/back1.jpg');
	background-size: 100%;
	background-position: center;
	position: relative;
	padding: 130px 0 22px;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	color: var(--white);
}
.tag{
	display: inline-block;
	background: var(--gradient);
	padding: 5px 10px;
	margin-bottom: 30px;
	font-weight: 400;
	font-size: 14px;
	border-radius: 10px;
	color: var(--white);
}
.hero h1{
	font-size: 4.5rem;
	line-height: 1.09;
	font-weight: 800;
	margin-bottom: 25px;
}
.hero h1 span{
	margin-top: 20px;
	background: var(--gradient);
	padding: 15px 20px 20px 20px;
	display: inline-block;
}
.hero p{
	line-height: 1.8;
	margin-bottom: 35px;
}

.feature-cards{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -350px;
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	z-index: 3;
}

.card {
	flex: 1 1 300px;
	background: var(--dark);
	padding: 45px 35px;
	color: var(--white);
	box-shadow: var(--shadow);
	transition: 0.5s ease-in-out;
}
.card:hover{
	background: var(--gradient);
}
.card:hover .icon{
	background: var(--white);
}
.card:hover .icon img{
	filter: invert(0);
}
.icon{
	width: 70px;
	height:70px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient);
	font-size: 30px;
	border-radius: 10px;
	margin-bottom: 22px;
}
.icon img {
	width: 40px;
	filter: invert(0);
}
.card h3{
	font-size: 28px;
	margin-bottom: 14px;
}
.card p{
	line-height: 1.7;
	opacity: 0.8;
}
/*ABOUT SECTION*/
.about-section{
	padding: 80px 0;
	padding-top: 450px;
}
.about-wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
	flex-wrap: wrap;
}
.about-left{flex:1 1 520px;}
.sub-title{
	color: var(--blue);
	font-weight: 600;
	display: inline-block;
	margin-bottom: 20px;
	position: relative;
}
.sub-title::after{
	content:"";
	width: 120px;
	height: 2px;
	background: var(--gradient);
	position: absolute;
	top: 50%;
	margin-left: 10px;
}

.heading {
	font-size: 55px;
	line-height: 1.2;
	margin-bottom: 25px;
	font-weight: 800;
	color: var(--white);
}
.heading span{
	color:var(--blue);
}
.desc{
	line-height: 1.8;
	opacity: 0.7;
	color: var(--white);
	margin-bottom: 30px;
}
.service-boxes{
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
	flex-direction: column;
}
.service-card {
	background: var(--light);
	padding: 15px;
	border-radius: 6px;
	display: flex;
	gap: 25px;
}
.para {
	margin-bottom: 0px;
}
.service-card h4 {
	font-size: 28px;
	color: var(--white);
}
.about-right{
	flex: 1 1 450px;
	display: flex;
	justify-content:center;
	position:relative;
}
.circle-image{
	width: 500px;
	height: 500px;
	border-radius:50%;
	overflow: hidden;
	border: 8px solid var(--blue);
	position: relative;
	z-index: 2;
}
.circle-image img,
.circle-image video {
	width: 100%;
	height:100%;
	object-fit: cover;
}
.counter-badge{
	position: absolute;
	top: 30px;
	left: 30px;
	background: var(--gradient);
	width: 160px;
	height: 160px;
	border-radius:50%;
	display:flex;
	flex-direction:column;
	justify-content: center;
	align-items: center;
	border: 4px dashed rgba(255, 255, 255, 0.6);
	z-index: 3;
}
.counter-badge span {
	margin-top: 15px;
	font-size: 13px;
	color: var(--white);
}
.counter-badge h3 {
	font-size: 45px;
	font-weight: 900;
	color: var(--white);
	margin-top: -5px;
}
/*SERVICE SECTION*/
.services{
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 7%;
	background: url(../images/dotted.png),
	radial-gradient(
		circle at 20% 30%, rgba(77, 104, 255, 0.15),
		transparent 35%),
	radial-gradient(circle at 80% 70%, rgba(77, 104, 255, 0.1), transparent 35%),
	#111a34;
	position: relative;
	overflow: hidden;
}
.wrapper{
	max-width: 1300px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 70px;
	position: relative;
	z-index: 2;
}
.serviceLeft{
	flex: 1;
	max-width: 530px;
}
.serviceRight{
	flex: 1;
	display: flex;
	justify-content: center;
}
.grid{
	display: grid;
	grid-template-columns: repeat(2, 300px);
	gap: 30px;
}
.serviceCard{
	height:220px;
	background: var(--dark);
	border: 1px solid rgba(120, 140, 255, 0.15);
	padding: 35px 30px;
	position: relative;
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: 0.5s ease-in-out;
	position: relative;
}
.serviceCard::before{
	content: "";
	position: absolute;
	right: -35px;
	top: -35px;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: rgba(255,255,255,0.06);
}
.serviceCard.active{
	background: linear-gradient(135deg, #6da8ff, #5469ff);
}
.serviceCard:hover{
	background: var(--gradient);
}
.serviceCard:hover .serviceIcon{
	background: var(--white);
}
.serviceCard:hover .arrow{background:var(--white);}
.serviceIcon{
	width: 54px;
	height: 54px;
	border: 1px solid rgba(140, 160, 255, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: var(--blue);
	margin-bottom: 28px;
}
.active .serviceIcon{
	background: var(--white);
	color: var(--blue);
}
.serviceCard h3{
	font-size: 23px;
	line-height: 1.35;
	color: var(--white);
	font-weight: 700;
}
.arrow{
	position:absolute;
	right: 20px;
	bottom: 18px;
	width: 36px;
	height: 36px;
	display: flex;
	color: var(--blue);
	align-items: center;
	justify-content: center;
	background: #1c2b68;
}
.active .arrow{
	background: var(--white);
	color: var(--blue);
}
/*BENEFIT SECTION*/
.benefit{
	min-height: 100vh;
	padding: 90px 7%;
	background: linear-gradient(rgba(7, 19, 40, 0.92), rgba(7, 19, 40, 0.92)),
	radial-gradient(
		circle at benefitleft top,
		rgba(90, 110, 255, 0.15),
		transparent 30%
	), #071328;
	position: relative;
	overflow: hidden;
}
.wrapper {
	max-width: 1250px;
	margin: auto;
	display: flex;
	align-items: center;
	gap: 70px;
	position: relative;
	z-index: 2;
}
.benefitleft,
.benefitright{
	flex: 1;
}
.brush-box {
	position: relative;
	max-width: 540px;
	margin: auto;
}
.brush-box img {
	width: 100%;
	display: block;
	position: relative;
	z-index: 1;
	border-radius: 4px;
}
.tabs {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	border: 2px solid rgba(255 255 255 / 23%);
	padding: 3px;
	display: inline-flex;
}
#tab1,
#tab2{display:none}
.tabs label {
	cursor: pointer;
	padding: 14px 28px;
	font-weight: 700;
	font-size: 15px;
	color: var(--white);
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: 0.5s;
}
.tab-content {
	display: none;
	width: 100%;
	margin-top: 30px;
}
#tab1:checked ~ .content1 {display: block;}
#tab2:checked ~ .content2 {display: block;}
#tab1:checked ~ .tab label[for="tab1"]{
	background: var(--gradient);
	color: var(--white);
}
#tab2:checked ~ .tabs label[for="tab2"]{
	background: var(--gradient);
	color: var(--white);
}
.lead {
	font-size: 20px;
	line-height: 1.5;
	color: var(--white);
	font-weight: 400;
	margin-bottom: 30px;
	max-width: 620px;
}
/*Counter Section*/
.countersec{
	background: url('../images/dotted.png'), var(--light);
	padding: 90px 7% 160px;
	position: relative;
}
.counterWrap{
	max-width: 1200px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}
.counterbox{
	flex: 1 1 220px;
	text-align: center;
}
.counterbox i {
	font-size: 48px;
	background: var(--gradient);
	-webkit-background-clip:text;
	-webkit-text-fill-color:transparent;
	display: block;
	margin: bottom;
}
.counterbox h2 {
	font-size: 56px;
	color: var(--white);
	margin-bottom: -5px;
}
.counterbox p {
	color: #d8ddff;
	font-size: 20px;
}
.ctabox{
	max-width: 1150px;
	margin: 70px auto -240px;
	background: var(--gradient);
	padding: 55px 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 25px;
	box-shadow: var(--shadow);
}
.ctabox h3 {
	font-size: 40px;
	color: var(--white);
	font-weight: 900;
}
.ctabtn{
	background: var(--white);
	color: var(--dark);
	padding: 15px 30px;
	text-decoration: none;
	font-weight: 700;
}
/*Business Category Section*/
.businessCategory{
	padding: 120px 20px;
	padding-top: 200px;
}
.tabsButton{
	display: flex;
	gap:10px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 25px;
	margin-top: 50px;
}
.tabButton{
	padding: 12px 20px;
	background: var(--light);
	cursor: pointer;
	border-radius: 6px;
	color: var(--white);
	transition: 0.4s;
}
.tabButton.active{
	background: var(--gradient);
}
.slider {
	overflow: hidden;
	position: relative;
	max-width: 1100px;
	margin: auto;
}

.slides {
	display: flex;
	transition: 0.5s ease;
}
.slide {
	min-width: 100%;
	display: flex;
	gap: 20px;
	background: var(--light);
	padding: 20px;
	border-radius: 10px;
	align-items: center;
	flex-wrap: wrap;
}
.slide img {
	width: 100%;
	height: 350px;
	border-radius: 10px;
}
.content {
	flex: 1;
	text-align: left;
}
.content h2 {
	margin-bottom: 0px;
	color: var(--white);
	font-size: 30px;
}
.content p {
	color: var(--white);
	margin-bottom: 40px;
	opacity: 0.7;
}

.dots {
	display: flex;
	justify-content: center;
	margin-top: 25px;
	gap: 8px;
}
.dot{
	width: 40px;
	height: 5px;
	background: #555;
	border-radius: 2px;
}
.dot.active{
	background: var(--gradient);
}
/*Pricing Section*/
.pricingSection {
	padding: 90px 20px;
	background: url('../images/dotted.png'), var(--light);
}
.pricingContainer {
	max-width: 1100px;
	margin: auto;
	padding: 60px 20px;
	text-align: center;
}
.pricing-subtitle {
	color: var(--blue);
	font-size: 14p;
	margin-bottom: 10px;
}
.pricing-cards {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 50px;
}
.price-card {
	background: var(--dark);
	padding: 30px 20px;
	color: var(--white);
	border-radius: 12px;
	width: 300px;
	transition: 0.3s;
	position: relative;
}
.price-card:hover {
	transform: translateY(-10px);
}
.price-card.active {
	background: var(--gradient);
	box-shadow: var(--shadow);
}
.price-icon{
	width: 60px;
	height: 60px;
	margin: 0 auto 15px;
	border-radius: 50%;
	background: var(--gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}
.price-icon img {
	width: 40px;
	filter: invert(1);
}
.price-plan{
	margin-bottom: 10px;
}
.price-amount{
	font-size: 28px;
	font-weight: bold;
	margin: 10px 0 20px;
}
.price-features {
	list-style: none;
	color: var(--white);
	opacity: 0.7;
	font-size: 14px;
	margin-bottom: 20px;
}
.price-features li{
	margin: 6px 0;
}
.price-card.active .btn{
	background: var(--white);
	border: none;
	color: var(--blue);
}
/*Testimonal Section*/
.testimonal-section{
	max-width: 1100px;
	margin: auto;
	padding: 120px 20px;
}
.testimonal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.swiper {
	padding-bottom: 40px;
}
.swiper-wrapper{
	padding: 50px 0px;
}
.testimonal-card{
	background: var(--light);
	padding: 20px;
	border-radius: 10px;
	position: relative;
}
.user-img {
	width: 60px;
	height: 60px;
	border-radius: 8px;
	position: absolute;
	top: -30px;
	left: 20px;
	border: 3px solid var(--blue);
}
.testimonal-text{
	color: var(--white);
	font-size: 14px;
	opacity: 0.7;
	margin-top: 40px;
	margin-bottom: 15px;
}
.user-name{
	font-weight: bold;
	color: var(--white);
}
.user-role {
	font-size: 13px;
	color: var(--white);
	opacity: 0.7;
}
.stars {
	margin-top: 10px;
	color: gold;
}
.swiper-pagination-bullet{
	background: #555;
	opacity: 1;
}
.swiper-pagination-bullet-active{
	background: var(--white);
}
/*Blog Section*/
.blog-section {
	max-width: 1100px;
	margin: auto;
	padding: 60px 20px;
	text-align: center;
}
.blog-title{
	color: var(--blue);
	font-size: 14px;
	margin-bottom: 10px;
}
.blog-cards {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
} 
.blog-card {
	background: var(--light);
	border-radius: 12px;
	overflow: hidden;
	width: 320px;
	text-align: left;
	transition: 0.4s;
}
.blog-card:hover {
	transform: translateY(-10px);
}
.blog-img{
	width: 100%;
	height: 200px;
	object-fit: cover;
}
.blog-content{
	padding:20px;
}
.blog-tags{
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}
.blog-tag{
	font-size: 12px;
	padding: 5px 10px;
	background: var(--dark);
	color: var(--white);
	border-radius: 20px;
}
.blog-heading {
	font-size: 16px;
	color: var(--white);
	margin-bottom: 15px;
}



/*Footer Section*/
.footer {
	background: url('../images/dotted.png'), var(--light);
	padding: 60px 20px 20px;
	margin-top: 60px;
	position: relative;
}
.footer-container {
	max-width: 1100px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.footer-col {
	flex: 1 1 220px;
}
.footer-logo {
	font-size: 28px;
	color: var(--white);
	font-weight: bold;
	margin-bottom: 15px;
}
.footer-logo .bx{
	font-size: 40px;
	padding-right: 10px;
	background: var(--gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color:transparent;
	background-clip: text;
	vertical-align: bottom;
}
.footer-social {
	display: flex;
	gap: 10px;
}
.footer-social div {
	width: 40px;
	height: 40px;
	background: var(--dark);
	border-radius: 50%;
	color: var(--white);
	display: flex;
	align-items: center;
	font-size: 20px;
	justify-content: center;
	cursor: pointer;
}
.footer-title {
	margin-bottom: 15px;
	color: var(--white);
	font-weight: 600;
}
.footer-links{
	list-style: none;
	color: var(--white);
	font-size: 14px;
	opacity: 0.7;
}
.footer-links li{
	margin-bottom: 8px;
	cursor: pointer;
}
.footer-contact li{
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}
.subscribe-box{
	display: flex;
	margin-bottom: 10px;
}
.subscribe-box input {
	flex: 1;
	padding: 10px;
	border: none;
	outline: none;
	border-radius: 6px 0 0 6px;
}
.subscribe-box button{
	padding: 10px 15px;
	border: none;
	background: var(--gradient);
	color: var(--white);
	border-radius: 0 6px 6px 0;
	cursor: pointer;
}
.checkbox {
	font-size: 12px;
	color: var(--white);
}
.checkbox input[type="checkbox"]{
	zoom: 1.3;
	vertical-align: bottom;
}
.footer-bottom {
	border: 1px solid #1e293b;
	background: var(--dark);
	padding: 10px;
	max-width: 1100px;
	margin: auto;
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--white);
}
#backToTop{
	position: absolute;
	bottom: 30px;
	right: 30px;
	z-index: 9999;
	background: var(--gradient);
	color: var(--white);
	border: 3px solid var(--gradient);
	padding: 0px 8px;
	font-size: 40px;
	border-radius: 50px;
	cursor: pointer;
	box-shadow: var(--shadow);
	transition: all 0.4s ease;
	padding-top: 7px;
}
#backToTop:hover {
	background: var(--white);
	border: 3px solid var(--gradient);
	color: var(--gradient);
}
#backToTop a {
	color: var(--white);
} 
#backToTop:hover a {
	color: var(--gradient);
}
/*BREACKPOINTS RESPONSIVE*/
@media(max-width: 768px){
	.hero {background-size: cover;}
	.nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--dark);
		flex-direction: column;
		padding: 20px;
		display: none;
	}
	.nav.show{display:flex;}
	.hamburguer{display:flex;}
	.hero{padding-top: 90px}
	.feature-cards {
		position: static;
		margin-top: 70px;
	}
	.top-flex{
		justify-content: center;
		text-align: center;
	}
	.logo{font-size:22px;}
	.hero h1 {font:32px}
	.about-wrap{
		flex-direction: column;
		text-align: center;
	}
	.sub-title:after{display: none;}
	.service-boxes{justify-content: center;}
	.heading{font-size: 32px;}
	.circle-image{width:300px;height:300px}
	.service-card{text-align:left; gap:16px;}
	.icon{width: 85px;}
	.service-card h4 {font: 22px;}
	.desc{line-height:1.2;opacity:0.7;font-size:12px;}
	.counter-badge {width: 120px; height: 120px;}
	.services{padding:60px 20px;}
	.grid{grid-template-columns: 1fr; width: 100%;}
	.serviceCard{width: 320px; text-align: left;}
	.wrapper{flex-direction: column; text-align: center;}
	.tabs{flex-direction: column; width:100%;max-width:340px;}
	.lead{font-size:22px;}
	.countersec{padding: 70px 20px 130px;}
	.counterWrap{justify-content: center;}
	.ctabox{text-align:center; justify-content: center;}
	.ctabox h3 {font: 28px;}
	.ctabtn{padding:15px 28px;}
	.slide{flex-direction: column; text-align: center;}
	.content{text-align:center;}
	.pricing-cards{flex-direction: column; text-align:center;}
	.blog-cards{flex-direction: column; text-align:center;}
	.footer-container{flex-direction: column;}
	.footer-bottom{flex-direction: column; gap:10px;}
}




































