@import url('https://fonts.googleapis.com/css2?family=Yatra+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ruluko&display=swap');
.yatra-one-regular {
  font-family: "Yatra One", serif;
  font-weight: 400;
  font-style: normal;
}
.ruluko-regular {
  font-family: "Ruluko", serif;
  font-weight: 400;
  font-style: normal;
}

:root{
	--black:#000000;
	--red:#FF024B;
	--white:#FFF;
	--yatra:"Yatra One", serif;
	--ruluko:"Ruluko", serif;
}
/* animation hero image*/
.box{
	position: relative;
	width: 300px;
	height: 300px;
	background: white;
	border-radius: 50%;
	overflow: hidden;
}
.box::before{
	content: "";
	position: absolute;
	inset: -10px 140px;
	background: linear-gradient(315deg, #00ccff, #FF024B);
	transition: 0.5s;
	animation: animate 4s linear infinite;
}
.box:hover::before{
	inset: -20px 0px;
}
@keyframes animate{
	0%{
		transform: rotate(0deg);
	}
	0%{
		transform: rotate(360deg);
	}
}
.box::after{
	content: "";
	position: absolute;
	inset: 6px;
	background: #162052;
	border-radius: 50%;
	z-index: 1;
}
.content{
	position: absolute;
	inset: 30px;
	border: 6px solid #070a1c;
	z-index: 3;
	border-radius: 50%;	
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;

}
.content img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5;
	pointer-events: none;
	z-index: 3;
}
.box:hover .content img{
	opacity: 0;

}
.content h2{
	text-align: center !important;
	color: var(--white);
	font-family: var(--yatra);
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 7.68px;
}
.content h2 span{
	color: var(--white);
	font-family: var(--ruluko);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 3.84px;
}

/*animation end */
body{
	background: var(--black);
/*	overflow: hidden;*/
}
/*menu bar start*/
.navbar-scroll{
	background-color: green;
}
.header{
	border-bottom: 1px solid var(--red);
	animation: scroll-transition;
	animation-timeline: scroll(y);
	transition: .5s;
}
@keyframes scroll-transition{
	0%{
		background-color: ;
	}
	0.1%,100%{
		background-color: var(--black);
	}
}
.menu li{
	margin: 0px 5px;
	
}
.menu li a{
	
	font-family: var(--ruluko);
	color: var(--white);
	font-size: 16px;
	padding: 5px 15px !important;
	border-bottom: 2px solid transparent;
	transition: .33s;
	text-transform: uppercase;
}
.menu li a:hover,.menu li a.active{
	color: var(--white) !important;
	border-radius: 0 0 15px 15px;
	border-bottom: 2px solid var(--red);
}
.logo{
	font-family: var(--yatra);
	font-size: 35px;
	font-weight: 700;
	color: var(--white);
}
.logo:hover{
	color: var(--white);
}
/*menu bar start*/
/*banner start*/
.hero{
	/*background-image: url("../images/bgimage.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;*/
/*	min-height: 100vh;*/
overflow: hidden;
	
}
.sub_title{
	color: var(--white);
	font-family: var(--ruluko);
	font-size: 30px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 3.84px;
}
.title{
	color: var(--white);
	font-family: var(--yatra);
	font-size: 35px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 7.68px;
}
.c_title{
	color: var(--white);
	font-family: var(--yatra);
	font-size: 35px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 7.68px;
}
.ss_title{
	color: var(--white);
	font-family: var(--ruluko);
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.4px;
	text-transform: capitalize;
}
.paragraph{
	color: var(--white);
	font-family: var(--ruluko);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.28px;
}
.hero p span{
	width: 24px;
	height: 24px;
	color: var(--red);
}

.button{
	display: inline-flex;
	padding: 10px 14px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 4px;
	border: 1px solid var(--red);
	background-color: transparent;
	text-decoration: none;
	text-transform: capitalize;
	color: var(--white);
	transition: .33s;
}
.button:hover{
	-webkit-box-shadow: 0px 0px 10px 2px rgba(255,2,75,1);
-moz-box-shadow: 0px 0px 10px 2px rgba(255,2,75,1);
box-shadow: 0px 0px 10px 2px rgba(255,2,75,1);
}
.text_aimate{
	display: inline-block;
	font-size: 25px !important;
}
.text_aimate span {
	position: relative;
	display: inline-block;
	color: transparent;
	-webkit-text-stroke: .7px var(--red);
	animation: display-text 16s linear infinite;
	animation-delay: calc(-4s * var(--i));
}
@keyframes display-text{
	25%,100%{
		display: none;
	}
}
.text_aimate span::before{
	content: attr(data-text);
	position: absolute;
	width: 0%;
	border-right: 2px solid var(--red);
	color: var(--red);
	white-space: nowrap;
	overflow: hidden;
	animation: fill-text 4s linear infinite;
}
@keyframes fill-text{
	10%,100%{
		width: 0;
	}
	70%,90%{
		width: 100%;
	}
}
/*.hero img{
	border-radius: 50%;
	-webkit-box-shadow: 0px 0px 50px 0px rgba(255,2,75,1);
-moz-box-shadow: 0px 0px 50px 0px rgba(255,2,75,1);
box-shadow: 0px 0px 50px 0px rgba(255,2,75,1);
transition: .33s;
}*/
/*.hero img:hover{
	transform: scale(1.03);
	-webkit-box-shadow: 0px 0px 40px 10px rgba(255,2,75,1);
-moz-box-shadow: 0px 0px 40px 10px rgba(255,2,75,1);
box-shadow: 0px 0px 40px 10px rgba(255,2,75,1);
}*/
.hero ul li {
	width: 45px;
	height: 45px;
	display: inline-flex;
	padding: 10px 14px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 50%;
	border: 1px solid var(--red);
	background-color: transparent;
	text-decoration: none;
	text-transform: capitalize;
	transition: .33s;
}
.hero ul li a {
	color: var(--white);
	font-size: 25px;
}
.hero ul li:hover{
	transform: scale(1.05);
	-webkit-box-shadow: 0px 0px 20px 5px rgba(255,2,75,1);
-moz-box-shadow: 0px 0px 20px 5px rgba(255,2,75,1);
box-shadow: 0px 0px 20px 5px rgba(255,2,75,1);
}
/*skills start*/
.skill{
	margin: 100px 0px;
}
.skill h1 span{
	color: var(--red);
}
.skils_card{
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.60);
	background: rgba(255, 255, 255, 0.10);
	backdrop-filter: blur(0.30000001192092896px);
}
.s_skill{
	text-align: center;
	padding: 20px;
	border-radius: 12px;
	border: 1px solid #FF024B;
	backdrop-filter: blur(0px);
}
.flex_box{
	display: flex;
	justify-content: center;
	align-items: center;
}
.s_icon{
	width: 80px;
	height: 80px;
	flex-shrink: 0;
	background: var(--red);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.s_icon i{
	color: var(--white);
	font-size: 50px;
}
.s_skill h6{
	margin-top: 10px;
	color: var(--white);
	font-family: var(--yatra);
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.s_skill p{
	color: rgba(255, 255, 255, 0.50);
	text-align: center;
	font-family: var(--ruluko);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
/*skills start*/
/*speacialities*/
.speacialities{}
.speacialities h1 span{
	color: var(--red);
}
.s_speacial{}
.s_speacial img{}
.s_speacial h5{
	border-bottom: 1px solid var(--red);
	margin-left: 12%;
	padding-bottom: 10px;
	color: var(--red);
	font-family: var(--yatra);
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 1.92px;
}
.s_speacial p{
	margin-left: 12%;
	color: var(--white);
	font-family: var(--ruluko);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.speacial_img{}
.speacial_img img{
	border-radius: 12px;
	border: 1px solid #FF024B;
/*	background: url(<path-to-image>) lightgray 50% / cover no-repeat, #D9D9D9;*/
	backdrop-filter: blur(0px);
}
/*speacialities*/
/*tea strat*/
.tea{
	margin-top: 100px;
}
.tea_wrapper{
	padding: 20px 40px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.60);
	background: rgba(255, 255, 255, 0.10);
	backdrop-filter: blur(0.30000001192092896px);
}
.Counter_up{
	padding: 20px;
	border-radius: 12px;
border: 1px solid var(--red);
backdrop-filter: blur(0px);
/*height: 180px !important;*/
}
.Counter_up h3{
	color: var(--red);
	font-family: var(--yatra);
	font-size: 40px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.8px;
	text-align: center;
}
.Counter_up h3 span{
	color: var(--red);
font-family: var(--yatra);
font-size: 40px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 0.8px;
}
.Counter_up h6{
	color: var(--white);
	text-align: center;
font-family: var(--ruluko);
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 6.6px;
}
/*tea strat*/
/*project start*/
.project{
	margin: 100px 0px;
}
.project h1 span{
	color: var(--red);
}
.s_project{
	padding: 40px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.60);
	background: rgba(255, 255, 255, 0.10);
	backdrop-filter: blur(0.30000001192092896px);
}
.project_img img{
border-radius: 12px;
background: url(<path-to-image>) lightgray 50% / cover no-repeat, #D9D9D9;
backdrop-filter: blur(0px);
}
.project_text{}
.project_text h5{
	color: var(--red);
	font-family: var(--yatra);
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 1.92px;
	border-bottom: 1px solid var(--red);
	padding-bottom: 10px;
}
.project_text p{
	color: var(--white);
	font-family: var(--ruluko);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.arrow_icon{
	text-align: right;
}
.arrow_icon i{
	font-size: 60px;
	
	color: var(--red);
}
/*project end*/
/*experiance start*/
.experiance{
	margin-bottom: 100px;
}
.experiance h1 span{
	color: var(--red);
}
.exp_card{
	padding: 40px;
	border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.60);
background: #000;
backdrop-filter: blur(0.30000001192092896px);
}
.e_card{
	border-radius: 12px;
border: 1px solid #FFF;
background: var(--red);
backdrop-filter: blur(18.5px);
}
.e_img{
	border-right: 2px solid var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
}
.e_img img{
	width: 100px;
	height: 100px;
	border-radius: 50%;
	padding: 10px;
}
.ex_text h2{
	color: var(--white);
font-family: var(--yatra);
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.ex_text p{
	color: var(--white);
font-family: var(--ruluko);
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: normal;
}
.cv{

}
.cv h2{
	text-align: center;
	text-transform: capitalize;
}
.cv a{}
.d_cv{
	display: flex;
	justify-content: center;
	align-items: center;
}
/*experiance end*/
/*contact*/
.contact{
	margin-bottom: 100px;
}
.contact h1 span{
	color: var(--red);
}
.contact_form{
	padding: 40px;
	border-radius: 12px;
border: 1px solid var(--red);
background: rgba(255, 255, 255, 0.10);
backdrop-filter: blur(0.30000001192092896px);
}
.input_field input{
	border: none;
    border-bottom: 1px solid var(--white);
    background: transparent;
    outline: none;
    height: 40px;
    color: #fff;
    font-size: 20px;
    width: 100%;
    color: var(--white);
    font-family: var(--ruluko);

}
.input_field input::placeholder{
	color: var(--white);
	font-family: var(--ruluko);
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 3.2px;
}
.contac_info li{
	font-family: var(--ruluko);
	font-size: 20px;
	color: var(--white);
}
.contac_info li i{
	color: var(--red);
	margin-right: 8px;
}
/*contact*/
footer{
	border-top: 1px solid var(--red);
	
	text-align: center;
}
footer h4{
	font-family: var(--yatra) !important;
}

/*testimonial start*/
.testimonial{
	margin-bottom: 100px;
}
.testimonial h1 span{
	color: var(--red);
}


.s_testimonial{
	margin: 0px 10px;
	display: flex;
	height: 410px;
	padding: 20px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 18px;
	border-radius: 15px;
	background: rgba(255,2,75, 0.05);
	-webkit-box-shadow: 0px 0px 10px 2px rgba(255,2,75,1);
-moz-box-shadow: 0px 0px 10px 2px rgba(255,2,75,1);
box-shadow: 0px 0px 10px 2px rgba(255,2,75,1);
	backdrop-filter: blur(5px);

	transition: 0.33s;	
}
.t_img img{
	width: 100px;
	height: 100px;
	border-radius: 50%;
}
.t_img{
	display: flex;
	justify-content: center;
	align-items: center;
}
.s_testimonial h2{
	color: var(--red);
	font-family: var(--yatra);
	font-size: 32px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: capitalize;
	text-align: center;
}
.s_testimonial p{
	color:var(--white);
	text-align: center;
	font-family: var(--ruluko);
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: capitalize;
	line-height: 25px;
}
/*testimonial end*/
/*flip card */
.mainbox{
	position: relative;
	width: 100%;
	height: 160px;
}
.thecard{
	position: absolute;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: all 0.5s ease;
}
.thecard:hover{
	transform: rotateY(180deg);
}
.f_part{
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
/*			background: #ffc720;*/
color: #333;
}
.b_part{
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	background: #FF024B;
	border-color: white;
	color: #333;
	transform: rotateY(180deg);
}
/*flip card */