/*
	Portfolio: Fonguong Edrick
	Software Engineer & Technology Entrepreneur
	Based in Cameroon
*/

/************************************/
/***** 	    General css		     ****/
/************************************/

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

body{
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	color: #707070;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin-top:0;
	font-weight: 700;
}

img{
	max-width: 100%;
}

a{
	transition: all 0.3s ease;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

::-moz-selection{
	background: #FABFC1;
	color: #262261;
}

::selection{
	background: #FABFC1;
	color: #262261;
}


.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #111;
	z-index: 9999;
	text-align: center;
}

.loader{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 120px;
	display: flex;
	flex-flow: column nowrap;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.preloader .diamon{
   width: fit-content;
   height: auto;
   background: transparent;
}

.preloader .diamond:nth-child(1) {
    -webkit-animation-delay: -1000ms;
    animation-delay: -1000ms;
}

.preloader .diamond:nth-child(2) {
    -webkit-animation-delay: -2000ms;
    animation-delay: -2000ms;
}

.preloader .diamond:nth-child(3) {
    -webkit-animation-delay: -3000ms;
    animation-delay: -3000ms;
}

.preloader .diamond:nth-child(4) {
    -webkit-animation-delay: -4000ms;
    animation-delay: -4000ms;
}

@-webkit-keyframes diamonds {
    50% {
        -webkit-transform: translateY(-50px) rotate(45deg) scale(1);
        transform: translateY(-50px) rotate(45deg) scale(1);
    }
    100% {
        -webkit-transform: translateY(-100px) rotate(45deg) scale(0);
        transform: translateY(-100px) rotate(45deg) scale(0);
    }
}

@keyframes diamonds {
    50% {
        -webkit-transform: translateY(-50px) rotate(45deg) scale(1);
        transform: translateY(-50px) rotate(45deg) scale(1);
    }
    100% {
        -webkit-transform: translateY(-100px) rotate(45deg) scale(0);
        transform: translateY(-100px) rotate(45deg) scale(0);
    }
}

.row.no-gutters{
	margin-right: 0;
	margin-left: 0;
}

.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*=" col-"] {
	padding-right: 0;
	padding-left: 0;
}

.btn-custom{
	display: inline-block;
    background: #26bdef;
    border: 2px solid #26bdef;
    color: #fff;
    font-size: 16px;
	letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 12px 30px 10px;
    transition: all 0.3s;
}

.btn-custom:hover{
	color: #26bdef;
	background: none;
}

/************************************/
/*****    Navigation area css   *****/
/************************************/

.header{
	height: 1em;	
}

header .navbar{
	padding: 0;
	background: #262261;
	z-index: 40;
	transition: all 0.3s;
}

.navbar-brand h1{
	font-family: 'Berkshire Swash', cursive;
	font-weight: normal;
	transition: all 0.3s;
	color: #fff;
	margin: 0;
}

.navbar-brand h1 span{
	color: #FABFC1;
}

header .navbar-collapse.collapse{
	-webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.navbar .navbar-nav .nav-item{
	padding: 40px 6px 36px;
	transition: all 0.3s;
}

.navbar .navbar-nav .nav-link{
	padding: 4px 10px;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	transition: all 0.3s;
}

.navbar .navbar-nav .nav-link.active{
	background: none;
	color: #FABFC1;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus{
	color: #fff;
}

.navbar .navbar-nav .nav-link.active:hover,
.navbar .navbar-nav .nav-link.active:focus{
	color: #FABFC1;
}

header .navbar.sticky-header{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: #262261;
}

.sticky-header .navbar-nav .nav-item{
	padding: 23px 6px;
}

.sticky-header .navbar-brand img{
	height: 40px;
}

.navbar-toggle{
	display: none;
	position: absolute;
	top: 22px;
	right: 15px;
}

.navbar-toggle .slicknav_btn{
	background: none;
	border: 1px solid #fff;
	border-radius: 0;
}

.navbar-toggle .slicknav_icon-bar{
	background: #fff;
	box-shadow: none;
	height: 1px;
	margin-top: 2px;
	margin-bottom: 4px;
}

.slicknav_menu{
	padding: 0;
	background: none;
}

.slicknav_btn{
	margin: 0;
}

.slicknav_nav a{
	color: #fff;
	padding: 8px 0;
	text-transform: uppercase;
}

.slicknav_nav a:hover{
	background: none;
	color: #FABFC1;
}

/************************************/
/*****     Banner Section css    ****/
/************************************/

.banner {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background: url(../images/d3man1.jpeg) no-repeat top right;
    background-size: cover;
    background-position: right top; /* Shift background image to the right */
    padding: 15em 0 10em;
}

.banner-content h2{
	font-size: 22px;
	font-weight: 300;
	color: #fff;
	line-height: 2.3em;
	margin-bottom: 1.5em;
	letter-spacing: 0.04em;
}

.banner-content h2 span.before-heading{
	display: block;
	font-size: 22px;
}

.banner-content h2 span{
	display: block;
	font-size: 56px;
	font-weight: 300;
}

.banner-content h5{
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 1.5em;
}

.btn-download{
	display: inline-block;
	border: 2px solid #fff;
	padding: 14px 30px;
	border-radius: 4px;
	color: #fff;
	transition: all 0.3s;
}

.btn-download:hover{
	border-color: #FABFC1;
	color: #FABFC1;
}

/**************************************/
/*****     About us Section css    ****/
/**************************************/

.about-us{
	padding: 80px 0;
}

.section-title{
	text-align: center;
	padding-bottom: 20px;
	margin-bottom: 80px;
	position: relative;
}

.section-title:after{
	content: '';
	display: block;
	width: 60px;
	margin-left: -30px;
	height: 0;
	position: absolute;
	bottom: 0;
	left: 50%;
	border-bottom: 10px dotted #FABFC1;
}

.section-title h2{
	color: #FABFC1;
	font-family: 'Berkshire Swash', cursive;
	font-weight: normal;
	font-size: 36px;
}

.section-title p{
	color: #707070;
	
}

.about-image{
	position: relative;
	margin-right: 10px;
	margin-bottom: 10px;
}

.about-image:after{
	content: '';
	display: block;
	position: absolute;
	top: 20px;
	left: 20px;
	right: -10px;
	bottom: -10px;
	border: 1px solid #262261;
	z-index: -1;
}

.about-image img{
	width: 100%;
}

.about-content h3{
	color: #FABFC1;
	font-weight: 400;
	font-size: 26px;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 30px;
}

.about-content h3:after{
	content: '';
	display: block;
	width: 20%;
	height: 4px;
	background: #FABFC1;
	position: absolute;
	left: 0;
	bottom: 0;
}

.about-content p{
	line-height: 1.6em;
	margin-bottom: 1.6em;
}

.about-content ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.about-content ul:after{
	content: '';
	display: block;
	clear: both;
}

.about-content ul li{
	float: left;
	width: 48%;
	padding: 4px 0 4px 36px;
	margin-right: 2%;
	position: relative;
}

.about-content ul li b,
.about-content ul li strong{
	font-weight: 600;
}

.about-content ul li i{
	color: #FABFC1;
	font-size: 20px;
	position: absolute;
	top: 0;
	left: 0;
}

/**************************************/
/*****     Services Section css    ****/
/**************************************/

.services{
	padding: 100px 0 70px;
	background: #262261;
	position: relative;
}

.service-single{
	background: #fff;
	padding: 40px 30px;
	text-align: center;
	border: 1px solid #19163f;
	margin-bottom: 30px;
	position: relative;
	box-shadow: #19163f;
}

.service-single:before{
	content: '';
	display: block;
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	border-top: 1px solid #FABFC1;
	border-bottom: 1px solid #FABFC1;
	transform: scale(0,1);
	transition: all 0.6s;
}

.service-single:after{
	content: '';
	display: block;
	position: absolute;
	top: -1px;
	left: -1px;
	right: -1px;
	bottom: -1px;
	border-left: 1px solid #FABFC1;
	border-right: 1px solid #FABFC1;
	transform: scale(1,0);
	transition: all 0.6s;
}

.service-single:hover:before,
.service-single:hover:after{
	transform: scale(1);
}

.service-single .icon-box{
	color: #FABFC1;
	font-size: 60px;
	line-height: 1em;
	margin-bottom: 26px;
}

.service-single h3{
	font-size: 20px;
	font-weight: 400;
	color: #FABFC1;
	margin-bottom: 16px;
}

.service-single p{
	margin-bottom: 0;
}

/***************************************/
/*****     My Resume Section css    ****/
/***************************************/

.my-resume{
	padding: 100px 0 70px;
}

.sub-title{
	display: inline-block;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	background: #FABFC1;
	padding: 14px 20px;
	text-transform: uppercase;
	margin-bottom: 50px;
}

.sub-title i{
	margin-right: 10px;
	color: #fff;
}

.experience-single{
	background: #222;
	padding: 40px 30px;
	margin-top: 30px;
	position: relative;
}

.experience-single:before{
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-bottom: 30px solid #222;
	border-right: 30px solid transparent;
	position: absolute;
	top: -30px;
	left: 30px;
}

.experience-single h5{
	color: #FABFC1;
	font-weight: 400;
}

.experience-single h4{
	color: #fff;
	font-weight: 400;
	font-size: 20px;
	margin-bottom: 20px;
}

.experience-single p{
	margin: 0;
	line-height: 1.6em;
}

.experience-pagination,
.education-pagination{
	text-align: center;
	margin-top: 20px;
}

.experience-pagination .swiper-pagination-bullet,
.education-pagination .swiper-pagination-bullet{
	width: 12px;
	height: 12px;
	border: 2px solid #222;
	opacity: 1;
	background: none;
	transition: all 0.4s;
}

.education-pagination .swiper-pagination-bullet-active,
.experience-pagination .swiper-pagination-bullet-active{
	border-color: #FABFC1;
}

.skill-single{
	margin-bottom: 30px;
}

.skill-single h5{
	font-size: 18px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 4px;
	letter-spacing: 0.04em;
}

.skill-ratting{
	font-size: 20px;
	color: #FABFC1;
}

.counter-single{
	background: #222;
	border: 1px solid #333;
	margin-bottom: 30px;
	position: relative;
	height: 82px;
	padding-left: 100px;
	padding-top: 12px;
}

.counter-single .icon-box{
	font-size: 50px;
	color: #FABFC1;
	line-height: 80px;
	margin-bottom: 10px;
	width: 80px;
	height: 80px;
	border-right: 1px solid #333;
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
}

.counter-single h4{
	font-size: 28px;
	color: #fff;
	font-weight: 700;
	margin: 0;
}

.counter-single p{
	margin: 0;
}

/***************************************/
/*****     Portfolio Section css    ****/
/***************************************/

.portfolio{
	background: #262261;
	padding: 100px 0;
}

.portfolio-nav{
	text-align: center;
	margin-bottom: 50px;
}

.portfolio-nav ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.portfolio-nav ul li{
	display: inline-block;
}

.portfolio-nav ul li a{
	display: block;
	background: #222;
	color: #707070;
	padding: 6px 20px;
	border: 1px solid #333;
	margin: 0 4px;
	transition: all 0.4s;
}

.portfolio-nav ul li a.active-portfolio{
	background: #FABFC1;
	color: #fff;
	border-color: #FABFC1;
}

.single-portfolio{
	position: relative;
	margin-bottom: 30px;
}

.single-portfolio-overlay{
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	background: rgba(0,0,0,0);
	padding: 20px;
	transition: all 0.6s;
}

.single-portfolio-overlay h2{
	color: #fff;
	font-size: 22px;
	font-weight: 500;
	margin-top: 20px;
	opacity: 0;
	transition: all 0.8s;
}

.single-portfolio-overlay h3{
	font-weight: 400;
	font-size: 16px;
	color: #FABFC1;
	opacity: 0;
	transition: all 0.8s;
}

.single-portfolio:hover .single-portfolio-overlay{
	background: rgba(0,0,0,0.8);
}

.single-portfolio:hover .single-portfolio-overlay h2{
	opacity: 1;
	margin-top: 0;
}

.single-portfolio:hover .single-portfolio-overlay h3{
	opacity: 1;
}

.mfp-content{
	background: #222;
	max-width: 668px;
	padding: 20px;
	border: 1px solid #333;
}

.mfp-content .content .image{
	width: 40%;
	float: left;
}

.mfp-content .content .desc{
	width: 56%;
	float: right;
}

.mfp-content .content .desc h4{
	font-size: 20px;
	color: #fff;
	font-weight: 400;
}

.mfp-content .content .desc h5{
	font-size: 16px;
	color: #FABFC1;
	font-weight: 400;
	margin-bottom: 20px;
}

.mfp-content .content .desc p{
	line-height: 1.6em;
	margin-bottom: 1.6em;
}

.btn-view-project{
	display: inline-block;
	font-size: 16px;
	background: #333;
	border: 1px solid #444;
	padding: 6px 20px;
	color: #707070;
	transition: all 0.3s;
}

.btn-view-project:hover{
	border-color: #FABFC1;
	color: #FABFC1;
	background: none;
}

.mfp-close-btn-in .mfp-close{
	color: #707070;
}

.load-more-portfolio{
	text-align: center;
	margin-top: 30px;
}

.load-more-portfolio a{
	display: inline-block;
	font-size: 18px;
	background: #222;
	color: #707070;
	padding: 18px 40px;
	border: 1px solid #333;
	transition: all 0.3s;
}

.load-more-portfolio a:hover{
	border-color: #FABFC1;
	color: #FABFC1;
}

/***************************************/
/*****     Our Team Section css     ****/
/***************************************/

.our-team{
	padding: 100px 0;
}

.team-single{
	position: relative;
	margin-bottom: 35px;
}

.team-single figure img{
	filter: grayscale(100%);
}

.team-info{
	position: absolute;
	background: #222;
	border: 1px solid #333;
	left: 30px;
	right: 30px;
	bottom: -35px;
	padding: 14px 20px;
	text-align: center;
}

.team-info:before{
	content: '';
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-top: 1px solid #FABFC1;
    border-bottom: 1px solid #FABFC1;
    transform: scale(0,1);
    transition: all 0.6s;
}

.team-info:after{
	content: '';
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-left: 1px solid #FABFC1;
    border-right: 1px solid #FABFC1;
    transform: scale(1,0);
    transition: all 0.6s;
}

.team-info h3{
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 2px;
}

.team-info p{
	font-size: 14px;
	margin: 0;
}

.team-single:hover .team-info:before,
.team-single:hover .team-info:after{
	transform: scale(1);
}

/***************************************/
/*****      Pricing Section css     ****/
/***************************************/

.pricing{
	padding: 100px 0;
	background: #262261;
}

.pricing-single{
	text-align: center;
	background: #222;
	border: 1px solid #333;
	position: relative;
}

.pricing-single:before{
	content: '';
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-top: 1px solid #ff5d56;
    border-bottom: 1px solid #ff5d56;
    transform: scale(0,1);
    transition: all 0.6s;
}

.pricing-single:after{
	content: '';
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-left: 1px solid #ff5d56;
    border-right: 1px solid #ff5d56;
    transform: scale(1,0);
    transition: all 0.6s;
}

.pricing-header{
	padding: 30px 20px 10px;
	border-bottom: 1px solid #333;
	position: relative;
	overflow: hidden;
}

.pricing-header .icon-box{
	font-size: 40px;
	color: #ff5d56;
    line-height: 1em;
	margin-bottom: 10px;
}

.pricing-header h3{
	color: #fff;
	font-size: 22px;
	font-weight: 400;
	margin: 0;
}

.pricing-header p{
	margin: 0;
	font-size: 40px;
	font-weight: 700;
	color: #fff;
}

.pricing-header p span{
	font-size: 18px;
	font-weight: 300;
	color: #707070;
}

.pricing-body{
	padding: 30px;
}

.pricing-body ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.pricing-body ul li{
	padding: 10px 0;
	border-bottom: 1px solid #282828;
}

.pricing-body ul li:last-child{
	border: none;
}

.pricing-footer{
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.btn-buynow{
	display: inline-block;
	border: 1px solid #ff5d56;
	color: #ff5d56;
	padding: 10px 30px;
	transition: all 0.4s;
}

.btn-buynow:hover{
	background: #ff5d56;
	color: #fff;
}

.pricing-single:hover:before,
.pricing-single:hover:after{
	transform: scale(1);
}

.recommanded{
	position: absolute;
    left: -30px;
    top: 16px;
    background: #ff5d56;
    width: 130px;
    color: #fff;
    padding: 6px;
    font-size: 14px;
    transform: rotate(-45deg);
}

/*******************************************/
/*****      Enhanced Testimonial Section     ****/
/*******************************************/

.testimonials {
	padding: 120px 0;
	background: linear-gradient(135deg, #1a1745 0%, #262261 50%, #1a1745 100%);
	position: relative;
	overflow: hidden;
}

.testimonials::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(250, 191, 193, 0.05) 0%, transparent 60%);
	animation: testimonialFloat 20s ease-in-out infinite;
}

.testimonials::after {
	content: '';
	position: absolute;
	bottom: -50%;
	right: -50%;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(250, 191, 193, 0.03) 0%, transparent 50%);
	animation: testimonialPulse 15s ease-in-out infinite reverse;
}

@keyframes testimonialFloat {
	0%, 100% { transform: translate(0, 0) rotate(0deg); }
	33% { transform: translate(-20px, -20px) rotate(1deg); }
	66% { transform: translate(20px, -10px) rotate(-1deg); }
}

@keyframes testimonialPulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.1); opacity: 0.8; }
}

.testimonial-single {
	background: linear-gradient(145deg, 
		rgba(255,255,255,0.07) 0%, 
		rgba(250, 191, 193, 0.05) 25%,
		rgba(255,255,255,0.03) 100%);
	backdrop-filter: blur(20px);
	border-radius: 30px;
	padding: 50px 40px;
	margin: 20px;
	border: 1px solid rgba(250, 191, 193, 0.2);
	box-shadow: 
		0 20px 60px rgba(0,0,0,0.3),
		inset 0 1px 0 rgba(255,255,255,0.1);
	position: relative;
	text-align: center;
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	z-index: 2;
}

.testimonial-single:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 
		0 40px 80px rgba(0,0,0,0.4),
		0 0 50px rgba(250, 191, 193, 0.3),
		inset 0 1px 0 rgba(255,255,255,0.2);
	border-color: rgba(250, 191, 193, 0.4);
}

.testimonial-quote {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #FABFC1, #ff9fa3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(250, 191, 193, 0.4);
}

.testimonial-quote i {
	font-size: 24px;
	color: #262261;
	animation: quoteBounce 2s ease-in-out infinite;
}

@keyframes quoteBounce {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
}

.testimonial-content {
	margin: 40px 0 30px;
}

.testimonial-content p {
	font-size: 20px;
	line-height: 1.8;
	color: #e8e8e8;
	font-style: italic;
	font-weight: 300;
	position: relative;
	z-index: 1;
}

.testimonial-rating {
	margin: 25px 0;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.testimonial-rating i {
	font-size: 18px;
	color: #FABFC1;
	text-shadow: 0 0 10px rgba(250, 191, 193, 0.5);
	animation: starTwinkle 3s ease-in-out infinite;
	animation-delay: calc(var(--i) * 0.1s);
}

.testimonial-rating i:nth-child(1) { --i: 1; }
.testimonial-rating i:nth-child(2) { --i: 2; }
.testimonial-rating i:nth-child(3) { --i: 3; }
.testimonial-rating i:nth-child(4) { --i: 4; }
.testimonial-rating i:nth-child(5) { --i: 5; }

@keyframes starTwinkle {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.7; transform: scale(1.1); }
}

.testimonial-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}

.author-img {
	position: relative;
}

.author-img img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 3px solid #FABFC1;
	box-shadow: 0 10px 30px rgba(250, 191, 193, 0.3);
	transition: all 0.3s ease;
}

.testimonial-single:hover .author-img img {
	transform: scale(1.1);
	box-shadow: 0 15px 40px rgba(250, 191, 193, 0.5);
}

.verification-badge {
	position: absolute;
	bottom: -5px;
	right: -5px;
	width: 28px;
	height: 28px;
	background: linear-gradient(135deg, #FABFC1, #ff9fa3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 3px solid #262261;
}

.verification-badge i {
	font-size: 12px;
	color: #262261;
	font-weight: bold;
}

.author-info {
	text-align: left;
}

.author-info h3 {
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 5px;
	font-family: 'Berkshire Swash', cursive;
}

.author-info h4 {
	font-size: 16px;
	color: #FABFC1;
	font-weight: 500;
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.author-info .company {
	font-size: 14px;
	color: rgba(255,255,255,0.7);
	font-style: italic;
}

/* Navigation Arrows */
.testimonial-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 40px;
	pointer-events: none;
	z-index: 10;
}

.testimonial-prev,
.testimonial-next {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, rgba(250, 191, 193, 0.2), rgba(250, 191, 193, 0.1));
	backdrop-filter: blur(20px);
	border: 1px solid rgba(250, 191, 193, 0.3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	pointer-events: all;
	transition: all 0.3s ease;
	opacity: 0.7;
}

.testimonial-prev:hover,
.testimonial-next:hover {
	opacity: 1;
	transform: scale(1.1);
	background: linear-gradient(135deg, rgba(250, 191, 193, 0.4), rgba(250, 191, 193, 0.2));
	box-shadow: 0 10px 30px rgba(250, 191, 193, 0.3);
}

.testimonial-prev i,
.testimonial-next i {
	color: #FABFC1;
	font-size: 18px;
}

/* Enhanced Pagination */
.testimonial-pagination {
	text-align: center;
	margin-top: 60px;
	position: relative;
	z-index: 5;
}

.testimonial-pagination .swiper-pagination-bullet {
	opacity: 1;
	background: rgba(255,255,255,0.3);
	width: 16px;
	height: 16px;
	border-radius: 50%;
	margin: 0 8px;
	transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
	cursor: pointer;
	border: 2px solid transparent;
}

.testimonial-pagination .swiper-pagination-bullet:hover {
	background: rgba(250, 191, 193, 0.6);
	transform: scale(1.2);
}

.testimonial-pagination .swiper-pagination-bullet-active {
	background: linear-gradient(135deg, #FABFC1, #ff9fa3);
	border-color: rgba(255,255,255,0.3);
	transform: scale(1.3);
	box-shadow: 0 5px 20px rgba(250, 191, 193, 0.4);
}

/* Testimonial Stats */
.testimonial-stats {
	margin-top: 80px;
	position: relative;
	z-index: 2;
}

.stat-item {
	text-align: center;
	padding: 30px 20px;
	background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(250, 191, 193, 0.03));
	backdrop-filter: blur(15px);
	border-radius: 20px;
	border: 1px solid rgba(250, 191, 193, 0.1);
	margin-bottom: 30px;
	transition: all 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-10px);
	background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(250, 191, 193, 0.06));
	border-color: rgba(250, 191, 193, 0.2);
	box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-item h3 {
	font-size: 42px;
	font-weight: 700;
	color: #FABFC1;
	margin-bottom: 10px;
	text-shadow: 0 0 20px rgba(250, 191, 193, 0.3);
	font-family: 'Berkshire Swash', cursive;
}

.stat-item p {
	font-size: 16px;
	color: rgba(255,255,255,0.8);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 500;
}

/* Slide Animation */
.swiper-slide.slide-active .testimonial-single {
	animation: slideEntry 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes slideEntry {
	0% {
		transform: translateY(30px) scale(0.95);
		opacity: 0.7;
	}
	100% {
		transform: translateY(0) scale(1);
		opacity: 1;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.testimonials {
		padding: 80px 0;
	}
	
	.testimonial-single {
		padding: 40px 25px;
		margin: 10px;
	}
	
	.testimonial-content p {
		font-size: 18px;
	}
	
	.testimonial-author {
		flex-direction: column;
		gap: 15px;
	}
	
	.author-info {
		text-align: center;
	}
	
	.testimonial-nav {
		display: none;
	}
	
	.stat-item h3 {
		font-size: 36px;
	}
}

/*******************************************/
/*****      Newsletter Section css      ****/
/*******************************************/

.newsletter{
	background: #262261;
	padding: 80px 0;
}

.newsletter-content{
	text-align: center;
	margin-bottom: 40px;
}

.newsletter-content h3{
    font-family: 'Berkshire Swash', cursive;
	font-weight: normal;
	color: #FABFC1;	
}

.newsletter-content p{
	font-size: 18px;	
}

.newsletter-form{
	text-align: center;
}

.newsletter-form .form-inline{
	max-width: 568px;
	background: #fff;
	padding: 10px;
	margin: 0 auto;
	border-radius: 50px;
	border: 1px solid #fff;
}

.newsletter-form .form-group{
	width: 100%;
}

.newsletter-form .form-control{
	width: 80%;
	background: none;
	border: none;
	font-family: inherit;
	font-size: 20px;
	height: 60px;
	padding: 0 30px;
	box-shadow: none;
	outline: 0;
	color: #707070;
}

.newsletter-form .btn-subscribe{
	width: 20%;
	background: none;
	border: none;
	color: #FABFC1;
	font-size: 40px;
	text-align: right;
	padding: 0 30px;
	cursor: pointer;
}

.newsletter-form .btn-subscribe:hover,
.newsletter-form .btn-subscribe:focus{
	box-shadow: none;
	outline: 0;
}

/*******************************************/
/*****      Latest Blog Section css     ****/
/*******************************************/

.latest-blog{
	padding: 100px 0;
}

.blog-single{
	background: #222;
	border: 1px solid #333;
}

.blog-header{
	position: relative;
}

.blog-header-overlay{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.5);
	text-align: center;
	transform: scale(0.8);
	opacity: 0;
	transition: all 0.6s;
}

.blog-single:hover .blog-header-overlay{
	opacity: 1;
	transform: scale(1);
}

.blog-header-overlay a{
	display: block;
	width: 50px;
	height: 50px;
	background: #FABFC1;
	border: 1px solid #FABFC1;
	font-size: 20px;
	color: #fff;
	line-height: 50px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -25px;
	margin-left: -25px;
	transition: all 0.5s;
}

.blog-header-overlay a:hover{
	background: none;
	color: #FABFC1;
}

.blog-header figure{
	margin: 0;
}

.blog-header figure img{
	filter: grayscale(100%);
}

.blog-single .blog-body{
	padding: 30px 20px;
}

.blog-single .blog-body h2{
	font-size: 20px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 14px;
}

.blog-single .blog-body p{
	margin: 0;
	line-height: 1.6em;
}

.blog-footer{
	padding: 20px;
	border-top: 1px solid #333;
}

.blog-footer ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

.blog-footer ul li{
	display: inline-block;
	margin-right: 10px;
}

.blog-footer ul li i{
	color: #FABFC1;
	margin-right: 6px;
}

/************************************/
/*****      Brand Slider css     ****/
/************************************/

.brand-sponser{
	padding: 60px 0;
	background: #262261;
}

.brand-slide{
	text-align: center;
}

.brand-slide img{
	opacity: 0.4;
	transition: all 0.4s;
}

.brand-slide:hover img{
	opacity: 1;
}

/************************************/
/*****       Contact us css      ****/
/************************************/

.contactus{
	padding: 100px 0;
	background: #262261;
}

.contact-form .form-control{
	/* background: #222; */
	border: none;
	border-radius: 0;
	height: auto;
	padding: 12px 18px;
	border: 1px solid #333;
	margin-bottom: 10px;
	resize: none;
	outline: 0;
	box-shadow: none;
	/* color: #fff; */
	border-radius: .5rem;
}

.btn-contact{
	background: none;
	display: inline-block;
    border: 1px solid #FABFC1;
    color: #FABFC1;
    padding: 12px 30px;
	cursor: pointer;
	margin-top: 20px;
    transition: all 0.4s;
	border-radius: .5rem;
}

.btn-contact:hover{
	background: #FABFC1;
	color: #fff;
}

/*****************************************/
/*****     Contact Information css    ****/
/*****************************************/

.contact-information{
	background: linear-gradient(#111111 50%,#262261 50%);
}

.contact-info-single{
	background: #222;
	padding: 20px;
	text-align: center;
	border: 1px solid #333;
	position: relative;
}

.contact-info-single:before{
	content: '';
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-top: 1px solid #FABFC1;
    border-bottom: 1px solid #FABFC1;
    transform: scale(0,1);
    transition: all 0.6s;
}

.contact-info-single:after{
	content: '';
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-left: 1px solid #FABFC1;
    border-right: 1px solid #FABFC1;
    transform: scale(1,0);
    transition: all 0.6s;
}

.contact-info-single:hover:before,
.contact-info-single:hover:after{
	transform: scale(1);
}

.contact-info-single h3{
	font-size: 20px;
	font-weight: 400;
	color: #fff;
	padding-bottom: 15px;
	margin-bottom: 10px;
	position: relative;
	z-index: 1;
}

.contact-info-single h3:after{
	content: '';
	display: block;
	width: 40px;
	margin-left: -20px;
	height: 3px;
	background: #FABFC1;
	position: absolute;
	left: 50%;
	bottom: 0;
}

.contact-info-single p{
	margin: 0;
	position: relative;
	z-index: 1;
}

/****************************************/
/*****       Footer Section css      ****/
/****************************************/

.main-footer{
	padding: 100px 0;
	background: #262261;
}

.footer-logo{
	text-align: center;
}

.footer-logo h1{
	font-family: 'Berkshire Swash', cursive;
    font-weight: normal;
    transition: all 0.3s;
    color: #fff;
}

.footer-logo h1 span{
	color: #FABFC1;
}

.footer-about{
	max-width: 568px;
	margin: 30px auto 0;
	text-align: center;
}

.footer-about p{
	line-height: 1.6em;
	margin-bottom: 1.6em;
}

.footer-social{
	text-align: center;
	margin-top:40px;
}

.footer-social a{
	display: inline-block;
	width: 60px;
	height: 60px;
	font-size: 22px;
	background: #222;
	line-height: 60px;
	color: #707070;
	border-radius: 50%;
	border: 1px solid #333;
	margin: 0 6px;
	transition: all 0.5s;
}

.footer-social a:hover{
	background: none;
	border-color: #FABFC1;
	color: #FABFC1;
}

.footer-copyright{
	max-width: 568px;
	margin: 40px auto 0;
	text-align: center;
	padding-top: 40px;
	position: relative;
}

.footer-copyright:before{
	content: '';
	display: block;
	width: 100px;
	height: 4px;
	background: #333;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -50px;
}

.footer-copyright p{
	line-height: 1.6em;
	margin: 0;
}

.footer-copyright p a{
	color: #707070;
	text-decoration: underline;
	transition: all 0.3s;
}

.footer-copyright p a:hover{
	color: #FABFC1;
}

/*********************************/
/*****     Media Query Css    ****/
/*********************************/

@media only screen and (max-width: 991px){
	.header .navbar-nav{
		display: none;
	}
	
	.header .navbar{
		align-items: flex-start;
	}
	
	.navbar-brand{
		padding: 13px 0;
	}
	
	.header .navbar .container{
		position: relative;
		flex-wrap: wrap;
	}
	
	.header .navbar-toggle,
	#responsive-menu{
		display: block;
		width: 100%;
	}
	
	.about-us,
	.portfolio,
	.testimonials,
	.newsletter,
	.contactus,
	.main-footer{
		padding: 60px 0;
	}
	
	.services,
	.my-resume,
	.our-team,
	.pricing,
	.latest-blog{
		padding: 60px 0 30px;
	}
	
	.banner{
		background-position: top right;
	}
	
	.section-title{
		padding-bottom: 10px;
		margin-bottom: 60px;
	}
	
	.section-title h2{
		font-size: 26px;
	}
	
	.section-title:after{
		width: 48px;
		margin-left: -24px;
		border-width: 8px;
	}
	
	.section-title p{
		font-size: 14px;
	}
	
	.newsletter-content h3{
		font-size: 22px;
	}
	
	.newsletter-content p{
		font-size: 16px;
	}
	
	.about-image{
		margin-bottom: 50px;
	}
	
	.team-single{
		margin-bottom: 65px;
	}
	
	.contact-info-single{
		margin-bottom: 30px;
	}
}

@media only screen and (max-width: 767px){
	.about-content ul li{
		width: 100%;
		float: none;
	}
	
	.banner{
		padding: 160px 0 60px;
	}
	
	.banner-content h2{
		font-size: 16px;
	}
	
	.banner-content h2 span{
		font-size: 28px;
	}
	
	.banner-content p{
		font-size: 16px;
	}
	
	.about-content h3{
		font-size: 22px;
	}
	
	.service-single .icon-box{
		font-size: 40px;
	}
	
	.experience{
		margin-bottom: 50px;
	}
	
	.skill-content{
		margin-bottom: 20px;
	}
	
	.experience-single{
		padding: 20px;
	}
	
	.experience-single h5{
		font-size: 16px;
	}
	
	.experience-single h4{
		font-size: 16px;
	}
	
	.pricing-single{
		margin-bottom: 30px;
	}
	
	.newsletter-form .form-group{
		margin: 0;
	}
	
	.newsletter-form .form-inline{
		padding: 0;
		border-radius: 0;
	}
	
	.newsletter-form .form-control{
		float: left;
		font-size: 16px;
		padding: 0 16px;
	}
	
	.newsletter-form .btn-subscribe{
		float: right;
		padding: 0;
		padding-top: 8px;
		text-align: center;
		font-size: 30px;
	}
	
	.blog-single{
		margin-bottom: 30px;
	}
	
	.footer-social a{
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 20px;
	}
}

@media only screen and (max-width: 575px){
	
	.header .container{
		width: 100%;
		padding-left: 15px !important;
		padding-right: 15px !important;
	}
	
	.portfolio-nav ul li a{
		padding: 4px 6px;
		margin: 0 2px;
		font-size: 14px;
	}
	
	.pricing-body{
		padding: 30px 20px;
	}
	
	.testimonial-header h3{
		font-size: 20px;
		color: #ff5d56;
	}
	
	.testimonial-header h4{
		font-size: 16px;
		color: #ff5d56;
	}
	
	.testimonial-single p{
		font-size: 16px;
	}
	
	.testimonial-pagination{
		margin-top: 0;
	}
}


/************************************/
/***** WORLD-CLASS ENHANCEMENTS *****/
/************************************/

/* Enhanced Button Styles */
.btn-download {
	position: relative;
	overflow: hidden;
	z-index: 1;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.btn-download:before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s ease;
	z-index: -1;
}

.btn-download:hover:before {
	left: 100%;
}

/* Glowing effect on brand */
.navbar-brand h1 {
	text-shadow: 0 0 10px rgba(250, 191, 193, 0.3);
}

.navbar-brand h1 span {
	background: linear-gradient(135deg, #FABFC1, #ff9a9e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Enhanced Service Cards */
.service-single {
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border-radius: 8px;
}

.service-single:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(38, 34, 97, 0.15);
}

.service-single .icon-box i {
	transition: all 0.4s ease;
}

.service-single:hover .icon-box i {
	transform: scale(1.2) rotate(5deg);
}

/* Animated Section Titles */
.section-title h2 {
	position: relative;
	display: inline-block;
}

/* Enhanced About Image */
.about-image {
	transition: all 0.5s ease;
}

.about-image:hover {
	transform: scale(1.02);
}

.about-image:hover:after {
	border-color: #FABFC1;
}

/* Skill Bars Animation */
.skill-progress .progress-bar {
	animation: skillFill 1.5s ease-out forwards;
	background: linear-gradient(90deg, #262261, #FABFC1);
}

@keyframes skillFill {
	from { width: 0; }
}

/* Experience Cards */
.experience-single {
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
	padding-left: 20px;
}

.experience-single:hover {
	border-left-color: #FABFC1;
	transform: translateX(5px);
}

/* Portfolio Items */
.portfolio-single {
	transition: all 0.4s ease;
	overflow: hidden;
	border-radius: 8px;
}

.portfolio-single:hover {
	transform: scale(1.03);
	box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.portfolio-single img {
	transition: all 0.5s ease;
}

.portfolio-single:hover img {
	transform: scale(1.1);
}

/* Contact Form Enhancements */
.contact-form .form-control {
	transition: all 0.3s ease;
	border: 2px solid #eee;
}

.contact-form .form-control:focus {
	border-color: #FABFC1;
	box-shadow: 0 0 15px rgba(250, 191, 193, 0.2);
	transform: translateY(-2px);
}

/* Social Icons Pulse */
.footer-social a,
.social-links a {
	transition: all 0.3s ease;
}

.footer-social a:hover,
.social-links a:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 10px 20px rgba(250, 191, 193, 0.3);
}

/* Gradient Text Effect */
.cd-words-wrapper b {
	background: linear-gradient(135deg, #fff, #FABFC1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Enhanced Pricing Cards */
.pricing-single {
	transition: all 0.4s ease;
	border-radius: 12px;
	overflow: hidden;
}

.pricing-single:hover {
	transform: translateY(-15px);
	box-shadow: 0 25px 50px rgba(38, 34, 97, 0.2);
}

/* Blog Cards Enhancement */
.blog-single {
	transition: all 0.4s ease;
	border-radius: 8px;
	overflow: hidden;
}

.blog-single:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #262261, #FABFC1);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: #262261;
}

/* Loading Animation Enhancement */
.preloader {
	background: linear-gradient(135deg, #262261, #1a1745);
}

/* Footer Gradient */
.footer {
	background: linear-gradient(135deg, #262261, #1a1745);
}

/* Testimonial Enhancement */
.testimonial-single {
	transition: all 0.4s ease;
}

.testimonial-single:hover {
	transform: scale(1.02);
}

/* Counter Animation */
.counter-single h2 {
	background: linear-gradient(135deg, #FABFC1, #fff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Mobile Menu Enhancement */
.slicknav_nav {
	background: rgba(38, 34, 97, 0.98);
	backdrop-filter: blur(10px);
}

/* Active Nav Link Glow */
.navbar .navbar-nav .nav-link.active {
	position: relative;
}

.navbar .navbar-nav .nav-link.active:after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 6px;
	height: 6px;
	background: #FABFC1;
	border-radius: 50%;
	box-shadow: 0 0 10px #FABFC1;
}

/* Hover underline effect for links */
.about-content a,
.service-single a {
	position: relative;
}

.about-content a:after,
.service-single a:after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -2px;
	left: 0;
	background: #FABFC1;
	transition: width 0.3s ease;
}

.about-content a:hover:after,
.service-single a:hover:after {
	width: 100%;
}

/* ============================================= */
/* WORLD-CLASS ENHANCEMENTS - PROFESSIONAL UPGRADE */
/* ============================================= */

/* Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Glassmorphism Effect for Cards */
.glass-card {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animated Gradient Background */
@keyframes gradientShift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

/* Enhanced Banner Section */
.banner {
	position: relative;
	overflow: hidden;
}

.banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(10, 10, 26, 0.92) 0%, rgba(10, 10, 26, 0.75) 50%, rgba(10, 10, 26, 0.5) 100%);
	z-index: 1;
}

.banner .container {
	position: relative;
	z-index: 2;
}

.banner-content h2 {
	font-size: 24px;
	text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

.banner-content h2 span.before-heading {
	font-size: 28px;
	font-weight: 700;
	display: block;
	background: linear-gradient(135deg, #FABFC1, #FABFC1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 10px;
}

.banner-content h2 span {
	font-size: 56px;
	font-weight: 500;
	text-shadow: 3px 3px 30px rgba(0,0,0,0.4);
}

.banner-content h5 {
	font-size: 20px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.85);
	text-shadow: 1px 1px 10px rgba(0,0,0,0.3);
	margin-bottom: 2em;
	letter-spacing: 0.5px;
}

/* Premium Buttons */
.btn-download {
	display: inline-block;
	padding: 16px 36px;
	border: 2px solid #fff;
	border-radius: 50px;
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	z-index: 1;
	margin-right: 15px;
}

.btn-download::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s;
	z-index: -1;
}

.btn-download:hover::before {
	left: 100%;
}

.btn-download:hover {
	background: linear-gradient(135deg, #FABFC1, #FABFC1);
	border-color: #FABFC1;
	color: #262261;
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(250, 191, 193, 0.4);
}

.btn-download.btn-secondary {
	background: transparent;
	border-color: rgba(255,255,255,0.5);
}

.btn-download.btn-secondary:hover {
	background: rgba(255,255,255,0.1);
	border-color: #fff;
	color: #fff;
	box-shadow: 0 15px 30px rgba(255,255,255,0.1);
}

/* Floating Animation for Profile Image */
@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-15px); }
}

.about-image {
	animation: float 4s ease-in-out infinite;
}

.about-image img {
	border-radius: 15px;
	box-shadow: 0 25px 50px rgba(250, 191, 193, 0.15);
	transition: all 0.5s ease;
}

.about-image:hover img {
	transform: scale(1.03);
	box-shadow: 0 35px 70px rgba(250, 191, 193, 0.25);
}

/* Enhanced Section Titles */
.section-title {
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 42px;
	position: relative;
	display: inline-block;
}

.section-title p {
	font-size: 18px;
	color: #888;
	margin-top: 10px;
}

/* Premium Service Cards */
.service-single {
	background: #fff;
	padding: 50px 35px;
	border-radius: 20px;
	border: none;
	box-shadow: 0 10px 40px rgba(0,0,0,0.08);
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}

.service-single::before,
.service-single::after {
	display: none;
}

.service-single:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 30px 60px rgba(250, 191, 193, 0.15);
}

.service-single .icon-box {
	width: 90px;
	height: 90px;
	background: linear-gradient(135deg, #FABFC1, #FABFC1);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
	transition: all 0.4s ease;
}

.service-single .icon-box i {
	font-size: 40px;
	color: #262261;
}

.service-single:hover .icon-box {
	transform: rotateY(180deg);
	background: linear-gradient(135deg, #262261, #1a1745);
}

.service-single:hover .icon-box i {
	color: #FABFC1;
}

.service-single h3 {
	font-size: 22px;
	font-weight: 600;
	color: #262261;
	margin-bottom: 15px;
}

.service-single p {
	color: #666;
	line-height: 1.8;
}

/* Enhanced Experience/Education Cards */
.experience-single {
	background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
	padding: 45px 35px;
	border-radius: 20px;
	border: 1px solid rgba(250, 191, 193, 0.1);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.experience-single::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 0;
	background: linear-gradient(180deg, #FABFC1, #FABFC1);
	transition: height 0.4s ease;
	border-radius: 0;
	border: none;
}

.experience-single:hover::before {
	height: 100%;
}

.experience-single:hover {
	transform: translateX(10px);
	border-color: rgba(250, 191, 193, 0.3);
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.experience-single h5 {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.experience-single h4 {
	font-size: 22px;
	font-weight: 600;
}

/* Premium Counter Stats */
.counter-single {
	background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
	border: 1px solid rgba(250, 191, 193, 0.1);
	border-radius: 15px;
	padding: 30px;
	padding-left: 120px;
	height: auto;
	min-height: 100px;
	transition: all 0.4s ease;
}

.counter-single:hover {
	transform: translateY(-10px);
	border-color: #FABFC1;
	box-shadow: 0 20px 40px rgba(250, 191, 193, 0.15);
}

.counter-single .icon-box {
	width: 100px;
	height: 100%;
	border-radius: 15px 0 0 15px;
	background: linear-gradient(135deg, rgba(250, 191, 193, 0.1), transparent);
}

.counter-single h4 {
	font-size: 36px;
	font-weight: 800;
	background: linear-gradient(135deg, #FABFC1, #fff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.counter-single p {
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Premium Portfolio Cards */
.single-portfolio {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.2);
	transition: all 0.5s ease;
}

.single-portfolio:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.single-portfolio img {
	transition: all 0.6s ease;
}

.single-portfolio:hover img {
	transform: scale(1.1);
}

.single-portfolio-overlay {
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.single-portfolio-overlay h2 {
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 8px;
}

/* Premium Navigation */
header .navbar {
	padding: 0;
	background: linear-gradient(135deg, rgba(38, 34, 97, 0.98), rgba(26, 23, 69, 0.98));
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 0 5px 30px rgba(0,0,0,0.2);
}

.navbar .navbar-nav .nav-link {
	font-weight: 500;
	font-size: 13px;
	letter-spacing: 0.5px;
	position: relative;
	padding: 8px 15px;
}

.navbar .navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: #FABFC1;
	transition: all 0.3s ease;
	transform: translateX(-50%);
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
	width: 70%;
}

/* Premium Contact Form */
.contact-form input,
.contact-form textarea {
	background: #f8f9fa;
	border: 2px solid transparent;
	border-radius: 12px;
	padding: 18px 25px;
	font-size: 15px;
	transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	background: #fff;
	border-color: #FABFC1;
	box-shadow: 0 10px 30px rgba(250, 191, 193, 0.15);
	outline: none;
}

.btn-contact {
	background: linear-gradient(135deg, #FABFC1, #FABFC1);
	border: none;
	border-radius: 50px;
	padding: 18px 50px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #262261;
	transition: all 0.4s ease;
	box-shadow: 0 10px 30px rgba(250, 191, 193, 0.4);
}

.btn-contact:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(250, 191, 193, 0.5);
}

/* Testimonial Enhancements */
.testimonial-single {
	background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 40px;
	border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-single p {
	font-size: 18px;
	line-height: 1.8;
	font-style: italic;
	color: #ddd;
}

.testimonial-header figure {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #FABFC1;
	margin: 0 auto 20px;
}

.testimonial-header h3 {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
}

.testimonial-header h4 {
	color: #FABFC1;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Blog Enhancements */
.blog-single {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.blog-single .blog-header {
	overflow: hidden;
}

.blog-single .blog-header img {
	transition: all 0.5s ease;
}

.blog-single:hover .blog-header img {
	transform: scale(1.1);
}

.blog-body {
	padding: 30px;
}

.blog-body h2 {
	font-size: 20px;
	font-weight: 600;
	color: #262261;
	margin-bottom: 15px;
	transition: color 0.3s ease;
}

.blog-single:hover .blog-body h2 {
	color: #FABFC1;
}

/* Newsletter Enhancement */
.newsletter {
	background: linear-gradient(135deg, #262261, #1a1745);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.newsletter::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 200%;
	background: radial-gradient(circle, rgba(250, 191, 193, 0.1) 0%, transparent 60%);
	animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.2); }
}

.newsletter-form input {
	background: rgba(255,255,255,0.1);
	border: 2px solid rgba(255,255,255,0.2);
	border-radius: 50px;
	padding: 18px 30px;
	color: #fff;
	font-size: 16px;
	min-width: 350px;
	transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
	color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
	border-color: #FABFC1;
	background: rgba(255,255,255,0.15);
	outline: none;
}

/* Footer Enhancement */
.main-footer {
	background: linear-gradient(135deg, #1a1745, #0f0d2e);
	padding: 80px 0 40px;
}

.footer-logo h1 {
	font-size: 36px;
}

.footer-about p {
	max-width: 600px;
	margin: 0 auto 30px;
	line-height: 1.8;
	color: #aaa;
}

.footer-social a {
	width: 50px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.05);
	border-radius: 50%;
	color: #fff;
	font-size: 20px;
	margin: 0 8px;
	transition: all 0.4s ease;
	border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
	background: #FABFC1;
	color: #262261;
	transform: translateY(-8px) rotate(360deg);
	box-shadow: 0 15px 30px rgba(250, 191, 193, 0.3);
}

/* Responsive Enhancements */
@media (max-width: 991px) {
	.banner-content h2 span {
		font-size: 42px;
	}
	
	.banner-content h5 {
		font-size: 18px;
	}
	
	.section-title h2 {
		font-size: 32px;
	}
	
	.btn-download {
		padding: 14px 28px;
		font-size: 14px;
		margin-bottom: 10px;
	}
}

@media (max-width: 767px) {
	.banner-content h2 span {
		font-size: 32px;
	}
	
	.banner-content h5 {
		font-size: 16px;
	}
	
	.section-title h2 {
		font-size: 28px;
	}
	
	.service-single {
		padding: 35px 25px;
	}
	
	.about-image {
		animation: none;
		margin-bottom: 30px;
	}
	
	.newsletter-form input {
		min-width: auto;
		width: 100%;
	}
}

/* Smooth Page Transitions */
section {
	transition: opacity 0.6s ease;
}

/* Custom Selection */
::selection {
	background: #FABFC1;
	color: #262261;
}

::-moz-selection {
	background: #FABFC1;
	color: #262261;
}

/* Accessibility - Focus States */
a:focus,
button:focus,
input:focus {
	outline: 2px solid #FABFC1;
	outline-offset: 2px;
}

/* Print Styles */
@media print {
	.navbar,
	.preloader,
	.newsletter {
		display: none;
	}
}
