/* font add  */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500&family=Cormorant&family=Covered+By+Your+Grace&family=DM+Serif+Display:ital@1&family=Nosifer&family=Playfair+Display:wght@600&family=Reem+Kufi+Fun:wght@500&family=Tangerine:wght@700&family=Vidaloka&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500&family=Cormorant&family=Covered+By+Your+Grace&family=DM+Serif+Display:ital@1&family=Nosifer&family=Playfair+Display:wght@600&family=Tangerine:wght@700&family=Vidaloka&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500&family=Cormorant&family=Covered+By+Your+Grace&family=DM+Serif+Display:ital@1&family=Playfair+Display:wght@600&family=Tangerine:wght@700&family=Vidaloka&display=swap');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}

html {
	scroll-behavior: smooth;

	/*   *** Storing Colors In Variables ***   */
	--bg-clr-one: #111111;
	--bg-clr-two: #1F1F1F;
	--bg-clr-three: #2D2D2D;
	--primary-clr: #2EF2A2;
	--primary-light-clr: #1F1F1F;
	--links-clr: #2EF2A2;
	--text-clr: #EDEDED;
	--secondary-heading: #7DD3FC;
}

/* scroll bar custom  */
body::-webkit-scrollbar {
	background-color: #fcfcfb;
}

body::-webkit-scrollbar-thumb {
	background: linear-gradient(var(--bg-clr-two), var(--primary-clr));
	border-radius: 20px;
	border: 2px solid var(--bg-clr-one);
}

/*   *** Reusable Code Starts ***   */
button.btn {
	background-color: var(--primary-clr);
	color: var(--bg-clr-one);
	border: 1px solid transparent;
	border-radius: 25px;
	font-family: 'Playfair Display', serif;
	font-size: 16px;
	padding: 10px 18px;
	letter-spacing: 1px;
	cursor: pointer;
	transition: 0.4s;
}

button.btn:hover {
	background-color: var(--bg-clr-one);
	color: var(--primary-clr);
	border: 1px solid var(--primary-clr);
}

.Website-container {
	overflow: hidden;
}

.Website-container section.reusable {
	width: 100%;
	padding: 70px 8% 50px;
	/* overflow-x: hidden; */
}

.Website-container section.reusable .headings {
	max-width: 700px;
	margin: 0px auto 45px;
	text-align: center;
}

.Website-container section.reusable .headings h3 {
	font-size: 17px;
	color: var(--links-clr);
}

.Website-container section.reusable .headings h1 {
	position: relative;
	font-size: 32px;
	margin: 10px 0px 15px;
	color: var(--primary-clr);
}

.Website-container section.reusable .headings p {
	font-size: 15px;
	color: var(--text-clr);
}

/*   *** Reusable Code Ends ***   */

body {
	width: 100%;
	min-height: 100vh;
	background: radial-gradient(circle at 50% 50%, var(--bg-clr-two), var(--bg-clr-one));
	color: var(--text-clr);
}

.Website-container {
	position: relative;
	max-width: 1500px;
	margin: 0px auto;
}

/*   *** Home Section Styling Starts ***   */
.home {
	position: relative;
	width: 100%;
	min-height: 100vh;
	background-color: var(--bg-clr-one);
	display: flex;
	align-items: center;
	flex-direction: column;
}

.home .navbar {
	position: fixed;
	width: 100%;
	max-height: 100px;
	height: 13vh;
	top: 0;
	left: 0;
	padding: 0px 8%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
	transition: 0.4s;
}

.home.active .navbar {
	top: 0;
	position: fixed;
	max-height: 70px;
	height: 10vh;
	background-color: var(--bg-clr-one);
	box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
}

.navbar .logo img {
	width: 102px;
	height: auto;
	padding: 0px 15px;
}

.navbar ul.nav-links {
	list-style: none;
}

.navbar ul.nav-links li {
	display: inline-block;
	margin: 0px 18px;
}

.navbar ul.nav-links li a {
	position: relative;
	display: inline-block;
	text-decoration: none;
	font-family: 'Playfair Display', serif;
	font-size: 15px;
	color: var(--links-clr);
	transition: color 0.4s;
}

.navbar ul.nav-links li a::after {
	position: absolute;
	content: '';
	width: 100%;
	height: 2px;
	top: 110%;
	left: 0;
	background-color: var(--primary-clr);
	transform: scaleX(0);
	transition: 0.4s;
}

.navbar ul.nav-links li a:hover::after {
	transform: scaleX(1);
}

button.contact-btn {
	padding: 8px 15px;
	font-size: 15px;
	border-radius: 5px;
}

.navbar .menu-btn {
	cursor: pointer;
	user-select: none;
	display: none;
}

.navbar .menu-btn .bar {
	display: block;
	width: 26px;
	height: 3px;
	background-color: var(--primary-clr);
	margin: 5px auto;
	border-radius: 5px;
	transition: all 0.3s cubic-bezier(1, 0.3, 0.3, 1);
}

.home .hero {
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: 0px 8%;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero .hero-text {
	position: relative;
	top: -10px;
	z-index: 1;
}

.hero .hero-text h3 {
	font-size: 20px;
	color: var(--primary-clr);
	opacity: 0.9;
}

.hero .hero-text h1 {
	font-family: 'Cormorant', serif;
	position: relative;
	font-size: 45px;
	color: var(--primary-clr);
	margin: 12px 0px 25px;
}

.hero .hero-text h1::after {
	content: '';
	position: absolute;
	height: 3px;
	width: 40px;
	background-color: var(--primary-clr);
	left: 0;
	top: 110%;
}

.hero .hero-text h2 {
	font-size: 22px;
	letter-spacing: 1px;
	color: var(--primary-clr);
}

.hero .hero-text p {
	max-width: 500px;
	color: var(--links-clr);
	margin: 15px 0px 35px;
	line-height: 1.2;
}

.hero .hero-text .hire-btn {
	padding: 10px 35px;
	box-shadow: 0px 20px 24px 3px rgba(5, 85, 92, 0.2);
}

.hero .hero-text .hire-btn:hover {
	box-shadow: 0px 5px 15px 3px rgba(5, 85, 92, 0.2);
}

.hero .hero-image {
	position: absolute;
	width: 500px;
	height: 900px;
	background-color: var(--primary-light-clr);
	border-bottom-left-radius: 250px;
	border-bottom-right-radius: 250px;
	transform: rotate(40deg);
	right: -30px;
	top: -220px;
	overflow: hidden;
	z-index: 0;
}

.hero .hero-image img {
	position: absolute;
	width: auto;
	height: auto;
	object-fit: cover;
	transform: rotate(-40deg);
	left: 20px;
	bottom: 0px;
}

.home .career-container {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: -100px;
	left: 0;
	padding: 0px 8% 10px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 15px 2%;
}

.career-container .career-item {
	background-color: var(--bg-clr-one);
	height: 70px;
	display: flex;
	align-items: center;
	padding: 10px 15px;
	border-radius: 5px;
	box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
}

.career-container .career-item .icon {
	display: inline-block;
	background-color: var(--primary-clr);
	min-width: 50px;
	width: 50px;
	height: 50px;
	margin-right: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}

.career-container .career-item .icon i {
	font-size: 22px;
	color: var(--bg-clr-one);
}

.career-container .career-item .career-desc {
	display: inline-block;
}

.career-item .career-desc h2 {
	font-size: 20px;
	line-height: 1.4;
	color: var(--primary-clr);
}

.career-item .career-desc p {
	font-size: 14px;
	color: var(--text-clr);
}

/*   *** Home Section Styling Ends ***   */

/*   *** About Section Styling Starts ***   */
.about {
	padding: 90px 8% 40px;
	display: flex;
	justify-content: space-between;
}

.about .about-image {
	position: relative;
	flex-basis: 30%;
	height: 400px;
	max-height: 450px;
	background-color: var(--primary-light-clr);
}

.about .about-desc {
	flex-basis: 65%;
	margin-left: 3%;
}

.about .about-image::before {
	position: absolute;
	content: '';
	width: calc(100% - 15px);
	height: calc(100% - 15px);
	outline: 3px solid var(--primary-clr);
	top: -10px;
	left: -10px;
	z-index: 1;
}

.about .about-image img {
	position: relative;
	width: 100%;
	min-width: 280px;
	height: 100%;
	object-fit: cover;
	z-index: 2;
}

.about .about-image .social-media {
	position: absolute;
	top: 50%;
	left: calc(100% - 10px);
	transform: translate(-50%, -50%);
	z-index: 3;
	background-color: var(--primary-clr);
	padding: 15px;
	border-radius: 5px;
}

.about .about-image .social-media i {
	color: var(--bg-clr-one);
	margin: 8px 0px;
	cursor: pointer;
	transition: 0.4s;
}

.about .about-image .social-media i:hover {
	transform: scale(1.2);
}

.about .about-desc h3 {
	font-size: 17px;
	color: var(--links-clr);
}

.about .about-desc h2 {
	margin: 10px 0px;
	font-size: 22px;
	font-family: 'Nosifer', sans-serif;

	color: var(--primary-clr);
}

.about .about-desc p {
	font-size: 15px;
	color: var(--text-clr);
}

.about-desc .about-personal-info {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px 20px;
	margin-top: 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--primary-clr);
}

.about-personal-info div {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.about-personal-info div span {
	color: var(--text-clr);
	/* letter-spacing: 1px; */
}

.about-desc .download-btn {
	border-radius: 25px;
	margin-top: 25px;
}

/*   *** About Section Styling Ends ***   */

/*   *** knowledge Section Styling Starts   */
.knowledge .knowledge-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}

.knowledge-container .knowledge-box {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	flex-basis: 32%;
	padding: 40px 40px 30px;
	background: linear-gradient(135deg, var(--bg-clr-two), var(--bg-clr-one));
	box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	border-radius: 5px;
	margin-bottom: 20px;
	overflow: hidden;
	cursor: pointer;
	transition: 0.4s;
	z-index: 1;
}

.knowledge-box .icon-wrapper {
	position: relative;
	background-color: var(--primary-clr);
	font-size: 30px;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
	transition: 0.3s;
	z-index: 3;
}

.knowledge-box .icon-wrapper i {
	font-size: 24px;
	color: var(--bg-clr-one);
	transition: 0.3s;
}

.knowledge-box h2 {
	padding: 15px 0px 10px;
	color: var(--primary-clr);
	font-family: 'Cinzel', serif;
	font-size: 20px;
	transition: 0.3s;
}

.knowledge-box p {
	font-size: 17px;
	font-family: 'Newsreader', serif;
	color: var(--text-clr);
	line-height: 1.3;
	transition: 0.3s;
}

.knowledge-box h3 {
	font-size: 16px;
	color: var(--links-clr);
	margin-top: 50px;
}

.knowledge-container .knowledge-box::after {
	position: absolute;
	content: '';
	width: 100%;
	height: 1.3%;
	background-color: var(--primary-clr);
	left: 0%;
	bottom: 0%;
	z-index: -1;
	transition: all 0.4s cubic-bezier(0.69, 0.05, 0, 0.97);
}

.knowledge-container .knowledge-box:hover::after {
	height: 100%;
}

.knowledge-container .knowledge-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 30px -15px rgba(2, 12, 27, 0.7);
	border: 1px solid var(--primary-clr);
}

.knowledge-container .knowledge-box:hover.knowledge-box .icon-wrapper {
	background-color: var(--bg-clr-one);
}

.knowledge-container .knowledge-box:hover.knowledge-box .icon-wrapper i {
	color: var(--primary-clr);
}

.knowledge-container .knowledge-box:hover.knowledge-box h2 {
	color: var(--bg-clr-one);
}

.knowledge-container .knowledge-box:hover.knowledge-box p {
	color: #000;
}

.knowledge-container .knowledge-box:hover.knowledge-box h3 {
	color: #e3e3e8;
}

/*   *** knowledge Section Styling Ends   */

/*   *** Resume Section Styling Starts   */
.resume {
	background-color: var(--bg-clr-one);
}

.resume .resume-row {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.resume-row .column .sub-heading {
	color: var(--primary-clr);
	padding: 0px 0px 20px 30px;
}

.column .resume-contents {
	position: relative;
	padding-left: 30px;
	/* border-left: 2px solid var(--primary-clr); */
	transition: all 0.4s;
}

.column .resume-contents::after {
	content: '';
	position: absolute;
	border-width: 4px;
	border-style: solid;
	border-color: transparent transparent transparent var(--primary-clr);
	top: 21px;
	left: 0px;
	animation: moveline 6s linear forwards;
}

@keyframes moveline {
	0% {
		height: 0;
	}

	100% {
		height: 100%;
	}
}

.resume-contents .box {
	position: relative;
	padding: 20px;
	border-bottom: 5px solid var(--bg-clr-one);
	border-radius: 5px;
	background: linear-gradient(135deg, var(--bg-clr-two), var(--bg-clr-one));
	box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	cursor: pointer;
	/* transition: all 0.4s; */
	animation: movedown 1s linear forwards;
	opacity: 0;
}

@keyframes movedown {
	0% {
		opacity: 1;
		transform: translateY(-30px);
	}

	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

/* .resume-contents .box:nth-child(3){
	border-bottom: 0px;
} */
.resume-contents .box:nth-child(1) {
	animation-delay: 0s;
}

.resume-contents .box:nth-child(2) {
	animation-delay: 2.1s;
}

.resume-contents .box:nth-child(3) {
	animation-delay: 4s;
}

.resume-contents .box::before {
	content: '';
	position: absolute;
	width: 12px;
	height: 14px;
	background-color: var(--primary-clr);
	top: 21px;
	left: -30px;
}

.resume-contents .box::after {
	content: '';
	position: absolute;
	border-width: 7.5px;
	border-style: solid;
	border-color: transparent transparent transparent var(--primary-clr);
	top: 21px;
	left: -18px;
}

.resume-contents .box h4 {
	position: relative;
	color: var(--secondary-heading);
}

.resume-contents .box h3 {
	font-size: 19px;
	padding: 10px 0px 6px;
	color: var(--primary-clr);
	margin-top: 2px;
}

.resume-contents .box p {
	margin-top: 3px;
	line-height: 1.3;
	color: var(--text-clr);
	font-size: 15px;
}

.resume-contents .box h5 {
	position: relative;
	margin-top: 12px;
	right: 0;
	text-align: right;
	color: var(--secondary-heading);
	font-weight: 500;
}

/*   *** Resume Section Styling Ends ***  */

/*   *** work Section Styling Starts ***   */
.work .button-group {
	text-align: center;
	margin-bottom: 40px;
}

.work .button-group .button {
	display: inline-block;
	padding: 10px 20px;
	margin: 5px;
	background-color: var(--primary-light-clr);
	color: var(--primary-clr);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.4s;
	border: none;
	border-radius: 5px;
	outline: none;
	cursor: pointer;
	font-size: 12px;
}

.work .button-group .button.active {
	background-color: var(--primary-clr);
	color: var(--bg-clr-one);
}

.work .button-group .button:hover {
	background-color: var(--primary-clr);
	color: var(--bg-clr-one);
}

.work .gallery {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.work .gallery .item {
	position: relative;
	width: calc(100% / 3);
	border: 4px solid transparent;
	overflow: hidden;
	cursor: pointer;
}

.gallery .item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: 0.3s;
}

.gallery .item:hover img {
	transform: scale(1.15);
}

.gallery .item .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(10, 25, 47, 0.85);
	color: var(--bg-clr-one);
	padding: 15px;
	overflow: hidden;
	transition: opacity 0.2s ease-in-out;
	opacity: 0;
}

.gallery .item:hover .overlay {
	opacity: 1;
}

.item .overlay a {
	display: inline-block;
	padding: 8px 16px;
	border: 2px solid var(--bg-clr-one);
	color: var(--bg-clr-one);
	text-decoration: none;
	font-size: 14px;
	transition: 0.3s;
}

.item .overlay a:hover {
	background-color: var(--bg-clr-one);
	color: var(--primary-clr);
}

/*   *** work Section Styling Ends ***   */

/*   *** certificate Section Styling Starts ***   */
.certificate {
	background-color: var(--bg-clr-one);
}

.certificate-container {
	position: relative;
}

.certificate-container .certificate-card {
	padding: 20px;
}

.certificate-card .profile {
	display: flex;
	align-items: center;
	margin-top: 25px;
}

.profile .profile-image {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
}

.profile .profile-image img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.certificate-card .test-card-body {
	background-color: var(--primary-light-clr);
	padding: 20px;
}

.test-card-body .quote {
	display: flex;
	align-items: center;
}

.test-card-body .quote i {
	font-size: 45px;
	color: var(--primary-clr);
	margin-right: 20px;
}

.test-card-body .quote h2 {
	color: var(--primary-clr);
}

.test-card-body p {
	margin: 10px 0px 15px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--text-clr);
}

.test-card-body .ratings {
	margin-top: 20px;
}

.test-card-body .ratings i {
	font-size: 17px;
	color: var(--secondary-heading);
	cursor: pointer;
}

.profile .profile-desc {
	display: flex;
	flex-direction: column;
}

.profile-desc span:nth-child(1) {
	font-size: 24px;
	font-weight: bold;
	color: var(--primary-clr);
}

.profile-desc span:nth-child(2) {
	font-size: 15px;
	color: var(--text-clr);
}

.certificate .owl-nav {
	position: absolute;
	right: 20px;
	bottom: -10px;
}

.certificate .owl-nav button {
	border-radius: 50% !important;
}

.certificate .owl-nav .owl-prev i,
.certificate .owl-nav .owl-next i {
	padding: 10px !important;
	border-radius: 50%;
	font-size: 18px !important;
	background-color: var(--primary-light-clr) !important;
	color: var(--primary-clr);
	cursor: pointer;
	transition: 0.4s;
}

.certificate .owl-nav .owl-prev i:hover,
.certificate .owl-nav .owl-next i:hover {
	background-color: var(--primary-clr) !important;
	color: var(--bg-clr-one);
}

.certificate .owl-dots {
	margin-top: 15px;
}

.certificate .owl-dots .owl-dot span {
	padding: 6px !important;
}

.certificate .owl-dots .owl-dot.active span {
	background-color: var(--primary-clr) !important;
}

/*   *** certificate Section Styling Ends ***   */

/*   *** Contact Section Styling Starts ***   */
.contact-form {
	width: 100%;
	padding: 70px 8% 50px;
}

.contact-form .contact-row {
	width: 100%;
	display: flex;
	background-color: var(--bg-clr-one);
}

.contact-row .column-1 {
	flex-basis: 40%;
	min-width: 320px;
	padding: 50px;
}

.contact-row .column-2 {
	flex-basis: 60%;
}

.column-1 .contactTitle h2 {
	position: relative;
	font-size: 36px;
	color: var(--primary-clr);
	display: inline-block;
	margin-bottom: 25px;
}

.column-1 .contactTitle h2::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	top: 120%;
	left: 0px;
	background-color: var(--secondary-heading);
}

.column-1 .contactTitle h2::after {
	content: '';
	position: absolute;
	width: 40%;
	height: 3px;
	top: calc(120% - 1px);
	left: 0px;
	background-color: var(--primary-clr);
}

.column-1 .contactTitle p {
	font-size: 15px;
	color: var(--text-clr);
	letter-spacing: 1px;
	line-height: 1.2;
	padding-bottom: 20px;
}

.column-1 .form-1 .inputGroup {
	position: relative;
	margin: 40px 0px;
}

.column-1 .form-1 input {
	width: 100%;
	font-size: 18px;
	padding: 2px 0px;
	background-color: var(--bg-clr-one);
	color: var(--primary-clr);
	border: none;
	border-bottom: 1px solid var(--text-clr);
	outline: none;
}

.column-1 .form-1 label,
.column-2 .form-2 label {
	position: absolute;
	left: 0;
	bottom: 4px;
	color: var(--text-clr);
	font-size: 15px;
	transition: 0.4s;
	pointer-events: none;
}

.column-2 .form-2 label {
	top: 25px;
	left: 20px;
}

.column-1 .form-1 input:focus~label,
.column-1 .form-1 input:valid~label,
.column-2 .form-2 textarea:focus~label,
.column-2 .form-2 textarea:valid~label {
	transform: translateY(-30px);
	font-size: 14px;
	opacity: 0.8;
}

.column-1 .contactSocialMedia {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	padding: 30px 0px 0px;
}

.column-1 .contactSocialMedia a {
	width: 35px;
	height: 35px;
	text-decoration: none;
	text-align: center;
	margin-left: 15px;
	border: 1px solid transparent;
	border-radius: 5px;
	background-color: var(--primary-clr);
	transition: 0.4s;
}

.column-1 .contactSocialMedia a i {
	color: var(--bg-clr-one);
	font-size: 18px;
	line-height: 35px;
	transition: 0.4s;
}

.column-1 .contactSocialMedia a:hover {
	transform: translateY(-5px);
	background-color: var(--bg-clr-one);
	border: 1px solid var(--primary-clr);
}

.column-1 .contactSocialMedia a:hover i {
	color: var(--primary-clr);
}

.column-2 .form-2 {
	width: 100%;
	height: calc(100% - 50px);
	padding-top: 50px;
}

.column-2 .form-2 .inputGroup {
	position: relative;
	width: 100%;
	height: 100%;
	border-left: 1px solid var(--text-clr);
}

.column-2 .form-2 textarea {
	width: 100%;
	min-height: 100%;
	display: block;
	resize: none;
	border: none;
	outline: none;
	background-color: var(--bg-clr-one);
	color: var(--primary-clr);
	padding: 20px;
	font-size: 16px;
}

.column-2 .form-2 .form-button {
	width: 100%;
	height: 50px;
	border: none;
	outline: none;
	background-color: var(--primary-clr);
	color: var(--bg-clr-one);
	font-size: 17px;
	letter-spacing: 1px;
	text-align: center;
	cursor: pointer;
	transition: 0.4s;
}

.column-2 .form-2 .form-button:hover {
	background-color: var(--links-clr);
}

/*   *** Contact Section Styling Ends ***   */

/*   *** Footer Section Styling Starts ***   */
.page-footer {
	width: 100%;
	padding: 20px 8%;
	margin-top: 20px;
	background-color: var(--primary-light-clr);
}

.page-footer .footer-contents {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
}

.footer-contents a {
	text-decoration: none;
	font-size: 22px;
	font-weight: 700;
	color: var(--primary-clr);
	margin-right: 20px;
}

.footer-contents p {
	font-family: 'Playfair Display', serif;
	font-size: 16px;

	color: var(--text-clr);
}

.footer-contents p span {
	color: var(--primary-clr);
	font-weight: bold;
}

/* Visitor Counter Styling */
.visitor-counter {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text-clr);
	font-size: 14px;
	font-family: 'Poppins', sans-serif;
	padding: 8px 16px;
	background: var(--bg-clr-two);
	border-radius: 20px;
	border: 1px solid var(--primary-clr);
	transition: all 0.3s ease;
}

.visitor-counter:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(46, 242, 162, 0.2);
}

.visitor-counter i {
	color: var(--primary-clr);
	font-size: 16px;
	animation: blink 2s infinite;
}

@keyframes blink {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}
}

.visitor-counter .counter-label {
	color: var(--text-clr);
	font-weight: 400;
}

.visitor-counter .counter-number {
	font-weight: 700;
	color: var(--primary-clr);
	font-size: 18px;
	min-width: 40px;
	text-align: center;
	letter-spacing: 1px;
}

/*   *** Footer Section Styling Ends ***   */






/*   *** Media Query Starts ***   */

/*   === Screen Size 1100px or Smaller  ===   */
@media(max-width: 1100px) {

	/* Home Section */
	.navbar ul.nav-links li {
		margin: 0px 16px;
	}

	/* knowledge Section */
	.knowledge-container .knowledge-box {
		flex-basis: 48%;
	}

	/* work Section */
	.work .gallery .item {
		width: calc(100% / 2);
	}
}

/*   === Screen Size 768px or Smaller  ===   */
@media(max-width: 768px) {

	/* Home Section */
	.navbar .menu-btn {
		display: block;
		margin-left: 30px;
		z-index: 101;
	}

	.navbar .menu-btn.active .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.navbar .menu-btn.active .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.navbar .menu-btn.active .bar:nth-child(2) {
		transform: translateX(-30px);
		opacity: 0;
	}

	.navbar ul.nav-links {
		position: fixed;
		width: 100%;
		height: 100vh;
		top: 0;
		/*right: 0;*/
		right: -100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		background-color: var(--primary-light-clr);
		transition: right 0.3s cubic-bezier(1, 0.3, 0.3, 1);
		z-index: 100;
	}

	.navbar ul.nav-links.active {
		right: 0;
	}

	.navbar ul.nav-links li {
		margin: 25px 0px 0px;
	}

	.navbar ul.nav-links li:nth-child(1) {
		margin-top: 180px;
	}

	.navbar ul.nav-links li a {
		font-size: 18px;
		letter-spacing: 2px;
	}

	.navbar .button-wrapper {
		margin-left: auto;
	}

	.hero .hero-image img {
		opacity: 0.3;
	}

	.home .career-container {
		grid-template-columns: 1fr;
	}

	/* About Section */
	.Website-container section.reusable .headings h1 {
		font-size: 24px;
	}

	.Website-container section.reusable .headings h3 {
		font-size: 15px;
	}

	.about {
		flex-direction: column;
	}

	.about .about-desc {
		flex-basis: 100%;
		margin-left: 0px;
		margin-top: 20px;
	}

	.about-desc .about-personal-info {
		grid-template-columns: 1fr;
		grid-gap: 10px 20px;
		margin-top: 14px;
		padding-bottom: 10px;
		border-bottom: 1px solid var(--primary-light-clr);
	}

	.about .about-image {
		flex-basis: 100%;
		min-height: 300px;
	}

	.about .about-image img {
		min-width: 250px;
		min-height: 300px;
	}

	/* knowledge Section */
	.knowledge-container .knowledge-box {
		flex-basis: 100%;
		margin-bottom: 10px;
	}

	/* Resume Section */
	.resume .resume-row {
		flex-direction: column;
	}

	.resume-row .column-right {
		margin-top: 30px;
	}

	/* Contact Section */
	.contact-form .contact-row {
		flex-direction: column;
	}

	.contact-row .column-1,
	.contact-row .column-2 {
		flex-basis: 100%;
	}

	.contact-row .column-1 {
		min-width: 250px;
		padding: 20px;
	}

	.column-2 .form-2 textarea {
		margin-top: 0px;
		height: 200px;
	}

	.column-2 .form-2 .inputGroup {
		border: 1px solid #ddd;
	}
}

/*   === Screen Size 600px or Smaller  ===   */
@media(max-width: 600px) {

	/* work Section */
	.work .gallery .item {
		width: 100%;
	}
}

/*   === Screen Size 550px or Smaller  ===   */
@media(max-width: 550px) {

	/* Home Section */
	.Website-container section.reusable .headings h1 {
		font-size: 22px;
	}

	.hero .hero-image {
		right: -200px;
	}

	/* Footer Section */
	.page-footer .footer-contents {
		flex-direction: column;
	}

	.footer-contents a {
		margin-bottom: 10px;

	}

	.footer-contents p {
		margin-bottom: 10px;
	}
}

/*   === Screen Size 350px or Smaller  ===   */
@media(max-width: 350px) {
	button.contact-btn {
		display: none;
	}
}

/*   *** Media Query Ends ***   */


/* skill section  */

section .container {
	width: 100%;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 80px 100px;
	overflow: hidden;
	/* background: #6f9292; */
}

.box-skill {
	margin: 15px 0px;
	position: relative;
	width: 240px;
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.box-skill::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 100%;
	background: linear-gradient(var(--bg-clr-three), var(--bg-clr-three), var(--primary-light-clr));
	filter: blur(1px);
	z-index: 1;
}

.box-skill::after {
	content: '';
	position: absolute;
	top: 1px;
	right: -1px;
	width: 20px;
	height: 100%;
	background: var(--bg-clr-one);
	filter: blur(1px);
	z-index: 1;
}

.box-skill .shadow {
	position: absolute;
	width: 100%;
	height: 100%;
	background: var(--bg-clr-two);
}

.box-skill .shadow::before {
	content: '';
	position: absolute;
	top: 0;
	left: calc(100% + 5px);
	width: 100%;
	height: 200%;
	background: linear-gradient(rgba(0, 0, 0, 0.075), transparent);
	transform: skewX(45deg);
}

.box-skill .shadow::after {
	content: '';
	position: absolute;
	bottom: -200%;
	left: calc(100% + 15px);
	width: 100%;
	height: 200%;
	background: linear-gradient(rgba(0, 0, 0, 0.075), transparent);
	transform: skewX(45deg);
}

.box-skill .content {
	position: relative;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--bg-clr-two), var(--bg-clr-one));
	box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.box-skill .content .percent {
	position: relative;
	width: 150px;
	height: 150px;
}

.box-skill .content .percent::before {
	content: attr(data-text);
	position: absolute;
	inset: 10px;
	background: var(--primary-light-clr);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--secondary-heading);
	font-size: 0.9rem;
	letter-spacing: 0.1rem;
	text-transform: uppercase;
}

.box-skill .content .percent svg {
	position: relative;
	width: 150px;
	height: 150px;
	transform: rotate(270deg);
}

.box-skill .content .percent svg circle {
	width: 100%;
	height: 100%;
	fill: transparent;
	stroke-width: 3;
	stroke: rgba(255, 255, 255, 0.05);
	transform: translate(5px, 5px);
}

.box-skill .content .percent svg circle:nth-child(2) {
	stroke: var(--primary-clr);
	stroke-dasharray: 440;
	stroke-dashoffset: calc(440 - (440 * var(--num)) / 100);
	opacity: 0;
	animation: fadeIn 1s linear forwards;
	animation-delay: 2.5s;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.box-skill .content .percent .dot {
	position: absolute;
	inset: 5px;
	z-index: 10;
	animation: animateDot 2s linear forwards;
}

@keyframes animateDot {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(calc(3.6deg * var(--num)));
	}
}

.box-skill .content .percent .dot::before {
	content: '';
	position: absolute;
	top: -7px;
	left: 50%;
	transform: translateX(-50%);
	width: 14px;
	height: 14px;
	background: var(--primary-clr);
	border-radius: 50%;
	box-shadow: 0 0 10px var(--primary-clr), 0 0 20px var(--primary-clr);
}

.box-skill .content .number {
	position: relative;
	inset: 0;
	opacity: 0;
	animation: fadeIn 1s linear forwards;
	animation-delay: 2.5s;
}

.box-skill .content .number h2 {
	font-size: 2.5rem;
	color: var(--secondary-heading);
}

.box-skill .content .number h2 span {
	font-weight: 300;
	font-size: 1.5rem;
}

/* type js  */

#app {
	/* text-align:center; */
	font-size: 25px;
	letter-spacing: 1px;
	color: var(--primary-clr);
	/* background-image: linear-gradient(
	  -225deg,
	  #231557 0%,
	  #44107a 29%,
	  #ff1361 67%,
	  #454310 100%
	);
	background-clip:border-box;
	 text-fill-color: transparent;
	background-clip:text;
	-webkit-background-clip:text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent; */
	animation: textclip 2s linear infinite;
}

@keyframes textclip {
	to {
		background-position: 200% center;
	}
}