*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Jost', sans-serif;
	list-style: none;
	text-decoration: none;
}

:root{
	--bg-color: #ffffff;
	--text-color: #2d3748;
	--secound-color: #718096;
	--main-color: #667eea;
	--accent-color: #f093fb;
	--gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	--gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	--big-font: 4.5rem;
	--h2-font: 2.5rem;
	--p-font: 1.1rem;
	--card-bg: rgba(255, 255, 255, 0.95);
	--card-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
	--border-radius: 20px;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body{
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	color: var(--text-color);
	line-height: 1.6;
}

/* Global Icon Animations */
.navlist a i,
.social a i,
.btn i,
.contactme i,
.projectlink i,
.top-btn i,
.close-menu,
#menu-icon,
.heading i,
.experience-section h1 i,
.education-section h1 i,
.experience-item h3 i,
.education-item h3 i,
.experience-item .exp-info i,
.education-item p i,
.wrap h3 i,
.layer .link a i,
.col .layer .link a i,
.portfolio .heading i,
.service .heading i,
.cta .heading i,
.sub-service h3 i,
.about .heading i {
	transition: var(--transition);
	animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
	0%, 100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-3px) scale(1.05);
	}
}

/* Hover effects for all icons */
.navlist a:hover i,
.social a:hover i,
.btn:hover i,
.contactme:hover i,
.projectlink:hover i,
.top-btn:hover i,
.close-menu:hover,
#menu-icon:hover,
.heading:hover i,
.experience-section h1:hover i,
.education-section h1:hover i,
.experience-item h3:hover i,
.education-item h3:hover i,
.experience-item .exp-info:hover i,
.education-item p:hover i,
.wrap:hover h3 i,
.layer .link a:hover i,
.col .layer .link a:hover i,
.portfolio .heading:hover i,
.service .heading:hover i,
.cta .heading:hover i,
.sub-service h3:hover i,
.about .heading:hover i {
	transform: translateY(-2px) scale(1.1);
	animation: iconPulse 0.6s ease-in-out;
}

@keyframes iconPulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1.1);
	}
}

/* Special animation for star icons */
.bxs-star {
	animation: starTwinkle 2s ease-in-out infinite !important;
}

@keyframes starTwinkle {
	0%, 100% {
		opacity: 1;
		transform: scale(1) rotate(0deg);
	}
	25% {
		opacity: 0.8;
		transform: scale(1.1) rotate(5deg);
	}
	50% {
		opacity: 1;
		transform: scale(1.05) rotate(-3deg);
	}
	75% {
		opacity: 0.9;
		transform: scale(1.15) rotate(3deg);
	}
}

/* Map and Calendar icons special animation */
.bxs-map, .bxs-calendar {
	animation: locationPulse 2.5s ease-in-out infinite !important;
}

@keyframes locationPulse {
	0%, 100% {
		transform: scale(1);
		background: rgba(240, 147, 251, 0.1);
	}
	50% {
		transform: scale(1.1);
		background: rgba(240, 147, 251, 0.2);
	}
}

/* Social media icons special animation */
.social a i {
	animation: socialBounce 4s ease-in-out infinite;
}

@keyframes socialBounce {
	0%, 100% {
		transform: translateY(0);
	}
	25% {
		transform: translateY(-5px);
	}
	75% {
		transform: translateY(-2px);
	}
}

/* Navigation icons special animation */
.navlist a i {
	animation: navSlide 3s ease-in-out infinite;
}

@keyframes navSlide {
	0%, 100% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(3px);
	}
}

/* Button icons special animation */
.btn i, .contactme i, .top-btn i {
	animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
	0%, 100% {
		box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
	}
	50% {
		box-shadow: 0 0 15px rgba(102, 126, 234, 0.6);
	}
}

/* Project link icons special animation */
.projectlink i {
	animation: projectRotate 4s ease-in-out infinite;
}

@keyframes projectRotate {
	0%, 100% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(5deg);
	}
	75% {
		transform: rotate(-3deg);
	}
}

/* Contact icons special animation */
.wrap h3 i {
	animation: contactVibrate 3s ease-in-out infinite;
}

@keyframes contactVibrate {
	0%, 100% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(2px);
	}
	75% {
		transform: translateX(-2px);
	}
}

/* Certificate link icons special animation */
.layer .link a i {
	animation: certificateShine 2.5s ease-in-out infinite;
}

@keyframes certificateShine {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.8;
		transform: scale(1.1);
	}
}

/* Heading icons special animation */
.heading i {
	animation: headingFloat 4s ease-in-out infinite;
}

@keyframes headingFloat {
	0%, 100% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(-4px) rotate(2deg);
	}
}

/* Experience and Education section icons special animation */
.experience-section h1 i, .education-section h1 i {
	animation: sectionIconFloat 3.5s ease-in-out infinite;
}

@keyframes sectionIconFloat {
	0%, 100% {
		transform: translateY(0) scale(1);
	}
	50% {
		transform: translateY(-5px) scale(1.08);
	}
}

/* Square rounded icons special animation */
.bxs-square-rounded {
	animation: squareRotate 3s ease-in-out infinite;
}

@keyframes squareRotate {
	0%, 100% {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(180deg) scale(1.1);
	}
}

/* Menu icon special animation */
#menu-icon {
	animation: menuPulse 2s ease-in-out infinite;
}

@keyframes menuPulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

/* Close menu icon special animation */
.close-menu {
	animation: closeSpin 3s ease-in-out infinite;
}

@keyframes closeSpin {
	0%, 100% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(180deg);
	}
}

/* Top arrow special animation */
.top .arrow-up {
	animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-3px);
	}
}

/* Header Styles */
header {
	position: fixed;
	width: 100%;
	top: 0;
	right: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 20px rgba(0,0,0,0.1);
	height: 70px;
	padding: 0 32px;
	transition: all 0.3s ease;
}

/* Hide header on mobile devices */
@media (max-width: 970px) {
	header {
		display: none;
	}
}

/* Menu icon styles */
#menu-icon {
	font-size: 32px;
	color: var(--main-color);
	cursor: pointer;
	display: none;
	margin-right: 12px;
	transition: color 0.2s;
}

/* Mobile menu icon - fixed position */
@media (max-width: 970px) {
	#menu-icon {
		display: block;
		position: fixed;
		top: 20px;
		right: 20px;
		z-index: 2001;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(10px);
		border-radius: 50%;
		width: 50px;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 4px 20px rgba(0,0,0,0.15);
		border: 1px solid rgba(255, 255, 255, 0.2);
	}
}

/* Ensure only one button (menu or close) is visible at a time */
.close-menu {
	display: none;
}

@media (max-width: 970px) {
	.close-menu {
		display: block;
		position: absolute;
		top: 18px;
		right: 18px;
		background: none;
		border: none;
		font-size: 2.2rem;
		color: var(--main-color);
		cursor: pointer;
		z-index: 2100;
		transition: color 0.2s;
	}
	.close-menu:not(.active) {
		display: none !important;
	}
	#menu-icon.active {
		display: none !important;
	}
}

/* When menu is open, hide menu icon and show close button */
.navlist-container.active ~ #menu-icon {
	display: none !important;
}
.navlist-container.active .close-menu {
	display: block !important;
}

/* Navlist container for mobile */
.navlist-container {
	display: flex;
	align-items: center;
	gap: 18px;
}
@media (max-width: 970px) {
	.navlist-container {
		position: fixed;
		top: 0;
		right: -100vw;
		width: 85vw;
		max-width: 350px;
		height: 100vh;
		background: rgba(255, 255, 255, 0.98);
		backdrop-filter: blur(20px);
		box-shadow: -5px 0 30px rgba(0,0,0,0.15);
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 80px 30px 30px 30px;
		transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		z-index: 2000;
		border-left: 1px solid rgba(255, 255, 255, 0.2);
	}
	.navlist-container.active {
		right: 0;
	}
}

/* Overlay for mobile nav */
.nav-overlay {
	display: none;
}
.nav-overlay.active {
	display: block;
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(2px);
	z-index: 1500;
	animation: fadeInOverlay 0.3s ease;
}
@keyframes fadeInOverlay {
	from { opacity: 0; }
	to { opacity: 1; }
}

/* Navlist styles */
.navlist {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}
@media (max-width: 970px) {
	.navlist {
		flex-direction: column;
		width: 100%;
		align-items: flex-start;
		gap: 8px;
	}
	.navlist li {
		width: 100%;
		margin: 0;
	}
	.navlist a {
		display: block;
		width: 100%;
		padding: 16px 20px;
		font-size: 1.1rem;
		font-weight: 500;
		border-radius: 12px;
		margin: 0;
		background: rgba(102, 126, 234, 0.05);
		color: var(--main-color);
		text-align: left;
		transition: all 0.3s ease;
		border: 1px solid rgba(102, 126, 234, 0.1);
	}
	.navlist a:hover,
	.navlist a.active {
		background: var(--gradient-primary);
		color: #fff;
		transform: translateX(5px);
		box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
	}
}

/* Download CV button in nav */
.top-btn {
	margin-left: 0;
	margin-top: 18px;
	width: 100%;
	text-align: center;
}
@media (min-width: 971px) {
	.top-btn {
		margin-left: 16px;
		margin-top: 0;
		width: auto;
	}
}

/* Close menu button */
.close-menu {
	display: none;
}
@media (max-width: 970px) {
	.close-menu {
		display: block;
		position: absolute;
		top: 20px;
		right: 20px;
		background: rgba(255, 255, 255, 0.9);
		border: none;
		font-size: 2rem;
		color: var(--main-color);
		cursor: pointer;
		z-index: 2100;
		transition: all 0.3s ease;
		width: 45px;
		height: 45px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	}
	.close-menu:hover { 
		color: var(--accent-color);
		transform: scale(1.1);
	}
}

/* Remove logo styles */
.logo {
	display: none;
}

/* Animate navlist items */
.navlist li {
	margin: 0 8px;
	animation: navItemFade 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes navItemFade {
	0% { opacity: 0; transform: translateY(-20px);}
	100% { opacity: 1; transform: translateY(0);}
}

.navlist{
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.navlist li{
	margin: 0 8px;
}

.navlist a {
	color: var(--text-color);
	font-weight: 500;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	padding: 8px 18px;
	border-radius: 20px;
	position: relative;
	z-index: 1;
	background: none;
	margin: 0 2px;
	overflow: visible;
}

.navlist a::before {
	display: none;
}

.navlist a:hover,
.navlist a.active {
	background: var(--gradient-primary);
	color: #fff;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
	z-index: 2;
}

/* Enhanced Button Styles */
.top-btn{
	display: inline-block;
	padding: 12px 28px;
	background: var(--gradient-primary);
	color: white;
	border: none;
	border-radius: 30px;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
	position: relative;
	overflow: hidden;
	letter-spacing: 0.5px;
}

.top-btn::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;
}

.top-btn:hover::before {
	left: 100%;
}

.top-btn:hover{
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn{
	display: inline-block;
	color: white;
	background: var(--gradient-primary);
	font-size: 1.1rem;
	padding: 18px 45px;
	font-weight: 600;
	line-height: 1;
	border-radius: 35px;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
	letter-spacing: 1px;
	position: relative;
	overflow: hidden;
	border: none;
}

.btn::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;
}

.btn:hover::before {
	left: 100%;
}

.btn:hover{
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.social a{
	width: 55px;
	height: 55px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-primary);
	font-size: 22px;
	color: white;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
	position: relative;
	overflow: hidden;
}

.social a::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;
}

.social a:hover::before {
	left: 100%;
}

.social a:hover{
	transform: translateY(-6px) rotate(12deg);
	box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

#menu-icon{
	font-size: 28px;
	color: var(--text-color);
	z-index: 10001;
	cursor: pointer;
	display: none;
}

/* Mobile menu icon styling */
@media (max-width: 970px) {
	#menu-icon {
		font-size: 24px;
		color: var(--main-color);
	}
}

/* Section Styles */
section{
	padding: 120px 8%;
	position: relative;
}

section:nth-of-type(even) {
	background: rgba(255, 255, 255, 0.5);
}

section:nth-of-type(odd) {
	background: rgba(248, 250, 252, 0.8);
}

/* Section Dividers */
section:not(:last-child)::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 8%;
	right: 8%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
}

/* Home Section */
.home{
	min-height: 100vh;
	width: 100%;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
	background-size: cover;
	background-position: center;
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	grid-gap: 4rem;
	padding: 120px 8% 80px;
}

.home::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	pointer-events: none;
}

.home-text h1{
	margin: 10px 0px 25px;
	font-size: var(--big-font);
	line-height: 1.1;
	font-weight: 700;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 2px 8px rgba(0,0,0,0.1);
	letter-spacing: -1px;
}

.home-text h3{
	color: var(--main-color);
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.home-text h5{
	margin-bottom: 25px;
	font-size: 1.3rem;
	font-weight: 500;
	color: var(--secound-color);
}

.home-text p{
	font-size: var(--p-font);
	color: var(--secound-color);
	line-height: 1.8;
	margin-bottom: 30px;
	font-weight: 400;
}

.social{
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
}

.social a:hover{
	transform: translateY(-5px) rotate(10deg);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.home-img iframe{
	width: 100%;
	height: 400px;
	border-radius: var(--border-radius);
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	border: none;
}

/* --- Animated, Modern Home Iframe Section --- */
.home-img {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
}

.iframe-wrapper {
	position: relative;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(102,126,234,0.18), 0 2px 8px rgba(0,0,0,0.08);
	background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
	animation: iframePopIn 1.2s cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes iframePopIn {
	0% { opacity: 0; transform: scale(0.85) translateY(40px);}
	100% { opacity: 1; transform: scale(1) translateY(0);}
}

.animated-iframe {
	width: 100%;
	height: 400px;
	border: none;
	border-radius: 28px;
	box-shadow: none;
	background: #111;
	transition: box-shadow 0.3s, transform 0.3s;
}

.iframe-wrapper:hover .animated-iframe {
	box-shadow: 0 8px 32px rgba(102,126,234,0.22), 0 2px 8px rgba(0,0,0,0.10);
	transform: scale(1.03);
}

/* Skills Section */
.sub-service{
	background: rgba(255, 255, 255, 0.95);
	border-radius: var(--border-radius);
	padding: 80px 40px;
	margin: 60px auto;
	max-width: 1400px;
	box-shadow: var(--card-shadow);
	border: 1px solid rgba(255, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
}

.sub-service::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
}

.sub-service h3{
	text-align: center;
	font-size: 2.5rem;
	color: var(--main-color);
	font-weight: 700;
	margin-bottom: 60px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
}

.sub-service h3:not(:first-child) {
	margin-top: 80px;
	padding-top: 40px;
	border-top: 2px solid rgba(102, 126, 234, 0.1);
}

.items{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	grid-gap: 2rem;
	align-items: stretch;
	justify-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.sub-box{
	padding: 40px 30px;
	background: var(--card-bg);
	border-radius: var(--border-radius);
	box-shadow: var(--card-shadow);
	transition: var(--transition);
	cursor: pointer;
	border: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 250px;
	margin: 0 auto;
	animation: hangingSwing 3s ease-in-out infinite;
	transform-origin: top center;
}

/* Hanging animation for skill cards */
@keyframes hangingSwing {
	0%, 100% {
		transform: rotate(0deg) translateY(0);
	}
	25% {
		transform: rotate(2deg) translateY(-3px);
	}
	50% {
		transform: rotate(-1deg) translateY(-5px);
	}
	75% {
		transform: rotate(1.5deg) translateY(-2px);
	}
}

/* Different timing for each card to create wave effect */
.sub-box:nth-child(1) { animation-delay: 0s; }
.sub-box:nth-child(2) { animation-delay: 0.2s; }
.sub-box:nth-child(3) { animation-delay: 0.4s; }
.sub-box:nth-child(4) { animation-delay: 0.6s; }
.sub-box:nth-child(5) { animation-delay: 0.8s; }
.sub-box:nth-child(6) { animation-delay: 1s; }
.sub-box:nth-child(7) { animation-delay: 1.2s; }
.sub-box:nth-child(8) { animation-delay: 1.4s; }
.sub-box:nth-child(9) { animation-delay: 1.6s; }
.sub-box:nth-child(10) { animation-delay: 1.8s; }
.sub-box:nth-child(11) { animation-delay: 2s; }
.sub-box:nth-child(12) { animation-delay: 2.2s; }
.sub-box:nth-child(13) { animation-delay: 2.4s; }
.sub-box:nth-child(14) { animation-delay: 2.6s; }
.sub-box:nth-child(15) { animation-delay: 2.8s; }
.sub-box:nth-child(16) { animation-delay: 3s; }

.sub-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	opacity: 0.1;
	transition: var(--transition);
	z-index: 0;
}

/* String effect for hanging cards */
.sub-box::after {
	content: '';
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 15px;
	background: linear-gradient(to bottom, #667eea, #764ba2);
	border-radius: 1px;
	box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
	animation: stringSwing 3s ease-in-out infinite;
	transform-origin: top center;
}

@keyframes stringSwing {
	0%, 100% {
		transform: translateX(-50%) rotate(0deg);
	}
	25% {
		transform: translateX(-50%) rotate(2deg);
	}
	50% {
		transform: translateX(-50%) rotate(-1deg);
	}
	75% {
		transform: translateX(-50%) rotate(1.5deg);
	}
}

.sub-box:hover::before {
	left: 0;
}

.sub-box:hover{
	transform: translateY(-10px) scale(1.07) rotate(-2deg);
	box-shadow: 0 24px 48px rgba(102, 126, 234, 0.25);
	transition: var(--transition);
}

.sub-img img, .sub-img svg {
	width: 250px;
	height: 100px;
	object-fit: contain;
	margin-bottom: 10px;
	filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08));
	position: relative;
	z-index: 1;
}

.sub-box h3 {
	margin-bottom: 0;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--main-color);
	position: relative;
	z-index: 1;
}

.sub-img {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
}

/* About Section */
.about{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 4rem;
	background: var(--card-bg);
	border-radius: var(--border-radius);
	padding: 100px 60px;
	box-shadow: var(--card-shadow);
	position: relative;
	overflow: hidden;
	margin: 60px 0;
}

.about::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
}

.about .heading{
	margin-bottom: 0;
}

.about .heading h3{
	font-size: 3.5rem;
	margin-bottom: 15px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.about .heading p{
	font-size: 1.3rem;
	color: var(--secound-color);
	margin-bottom: 0;
	font-weight: 500;
}

.about-content{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
	width: 100%;
	max-width: 1200px;
}

.about-intro{
	text-align: left;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.08);
	border: 1px solid rgba(102, 126, 234, 0.1);
	position: relative;
	overflow: hidden;
}

.about-intro::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient-secondary);
}

.about-intro h3{
	color: var(--main-color);
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.about-intro h3 i{
	font-size: 1.6rem;
	color: var(--accent-color);
	background: rgba(240, 147, 251, 0.1);
	padding: 8px;
	border-radius: 50%;
}

.about-intro h2{
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 25px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	position: relative;
}

.about-intro h2::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 60px;
	height: 3px;
	background: var(--gradient-secondary);
	border-radius: 2px;
}

.about-intro p{
	font-size: 1.2rem;
	color: var(--secound-color);
	line-height: 1.8;
	margin-bottom: 30px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 15px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 12px;
	border-left: 4px solid var(--main-color);
}

.about-intro p img{
	display: none;
	/* If you want to keep and style it more realistically, use below instead:
	/* border-radius: 50%;
	width: 40px;
	height: 40px;
	object-fit: cover;
	box-shadow: 0 2px 8px rgba(102,126,234,0.15);
	margin-left: 10px;
	transition: transform 0.3s;
	*/
}

.about-intro .location{
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 1.2rem;
	color: var(--secound-color);
	margin-bottom: 35px;
	padding: 15px 20px;
	background: rgba(102, 126, 234, 0.05);
	border-radius: 12px;
	border: 1px solid rgba(102, 126, 234, 0.1);
}

.about-intro .location i{
	color: var(--accent-color);
	font-size: 1.4rem;
	background: rgba(240, 147, 251, 0.1);
	padding: 8px;
	border-radius: 50%;
}

.education-section{
	background: rgba(255, 255, 255, 0.9);
	border-radius: 20px;
	padding: 50px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.08);
	border: 1px solid rgba(102, 126, 234, 0.1);
	position: relative;
	overflow: hidden;
}

.education-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient-accent);
}

.education-section h1{
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 40px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	text-align: center;
}

.education-section h1 i{
	color: var(--accent-color);
	font-size: 2.4rem;
	background: rgba(240, 147, 251, 0.1);
	padding: 10px;
	border-radius: 50%;
	-webkit-text-fill-color: initial;
	background-clip: initial;
}

.education-item{
	background: white;
	border-radius: 16px;
	padding: 30px;
	margin-bottom: 25px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	border-left: 5px solid var(--main-color);
	transition: var(--transition);
	text-align: left;
	position: relative;
	overflow: hidden;
}

.education-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	opacity: 0.05;
	transition: var(--transition);
	z-index: 0;
}

.education-item:hover::before {
	left: 0;
}

.education-item:hover{
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(240, 147, 251, 0.15);
}

.education-item h3{
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--main-color);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
	z-index: 1;
}

.education-item h3 i{
	color: var(--accent-color);
	font-size: 1.3rem;
	background: rgba(240, 147, 251, 0.1);
	padding: 6px;
	border-radius: 50%;
}

.education-item p{
	font-size: 1.1rem;
	color: var(--secound-color);
	line-height: 1.7;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
	z-index: 1;
}

.education-item p i{
	color: var(--main-color);
	font-size: 0.9rem;
	background: rgba(102, 126, 234, 0.1);
	padding: 4px;
	border-radius: 50%;
}

.education-item p:last-of-type {
	margin-bottom: 20px;
}

/* Education Results Layout */
.education-results {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	gap: 15px;
	position: relative;
	z-index: 1;
}

.education-item .result {
	background: var(--gradient-primary);
	color: white;
	padding: 8px 16px;
	border-radius: 25px;
	font-size: 1rem;
	font-weight: 600;
	display: inline-block;
	box-shadow: 0 4px 12px rgba(240, 147, 251, 0.3);
	flex-shrink: 0;
}

.result-btn {
	background: var(--gradient-secondary);
	color: white;
	padding: 8px 20px;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
	display: inline-block;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	letter-spacing: 0.5px;
	border: none;
	flex-shrink: 0;
}

.result-btn::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;
}

.result-btn:hover::before {
	left: 100%;
}

.result-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(240, 147, 251, 0.4);
}

/* Mobile responsive for education results */
@media (max-width: 600px) {
	.education-results {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}
	
	.result-btn {
		padding: 10px 20px;
		font-size: 0.9rem;
		text-align: center;
	}
	
	/* Additional mobile improvements */
	.sub-service, .about, .portfolio, .service, .cta {
		padding: 60px 20px;
		margin: 40px 0;
	}
	
	.sub-service h3, .about .heading h3, .portfolio .heading h3, .service .heading h3, .cta .heading h3 {
		font-size: 2rem;
	}
}

.contactme{
	background: var(--gradient-primary);
	color: white;
	padding: 20px 45px;
	border-radius: 40px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
	display: inline-block;
	font-size: 1.2rem;
	margin-top: 30px;
	position: relative;
	overflow: hidden;
	border: none;
	letter-spacing: 0.5px;
}

.contactme::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;
}

.contactme:hover::before {
	left: 100%;
}

.contactme:hover{
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

/* Location Section Styles */
.location-section{
	background: rgba(255, 255, 255, 0.9);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.08);
	border: 1px solid rgba(102, 126, 234, 0.1);
	position: relative;
	overflow: hidden;
	text-align: center;
}

.location-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient-secondary);
}

.location-section h3{
	color: var(--main-color);
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.location-section h3 i{
	font-size: 1.6rem;
	color: var(--accent-color);
	background: rgba(240, 147, 251, 0.1);
	padding: 8px;
	border-radius: 50%;
}

.location-section h2{
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 25px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	position: relative;
}

.location-section h2::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--gradient-secondary);
	border-radius: 2px;
}

.location-section .location{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 12px;
	border-left: 4px solid var(--main-color);
	margin-top: 20px;
}

.location-section .location i{
	color: var(--accent-color);
	font-size: 1.2rem;
}

.location-section .location span{
	font-size: 1.1rem;
	color: var(--secound-color);
	font-weight: 500;
}

/* Experience Details within Location Section */
.location-section .experience-details {
	margin-top: 30px;
}

.location-section .exp-item {
	background: rgba(255, 255, 255, 0.8);
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 15px;
	border-left: 4px solid var(--accent-color);
	transition: var(--transition);
}

.location-section .exp-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(240, 147, 251, 0.15);
}

.location-section .exp-item h4 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--accent-color);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.location-section .exp-item h4 i {
	font-size: 1.1rem;
	color: var(--main-color);
	background: rgba(102, 126, 234, 0.1);
	padding: 4px;
	border-radius: 50%;
}

.location-section .exp-item p {
	font-size: 0.95rem;
	color: var(--secound-color);
	line-height: 1.5;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.location-section .exp-item p i {
	color: var(--accent-color);
	font-size: 0.8rem;
	background: rgba(240, 147, 251, 0.1);
	padding: 3px;
	border-radius: 50%;
}

.location-section .exp-item p:last-child {
	margin-bottom: 0;
}

/* Experience Section Styles */
.experience-section{
	background: rgba(255, 255, 255, 0.9);
	border-radius: 20px;
	padding: 50px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.08);
	border: 1px solid rgba(102, 126, 234, 0.1);
	position: relative;
	overflow: hidden;
}

.experience-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--gradient-secondary);
}

.experience-section h1{
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 40px;
	background: var(--gradient-secondary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	text-align: center;
}

.experience-section h1 i{
	color: var(--accent-color);
	font-size: 2.4rem;
	background: rgba(240, 147, 251, 0.1);
	padding: 10px;
	border-radius: 50%;
	-webkit-text-fill-color: initial;
	background-clip: initial;
}

.experience-item{
	background: white;
	border-radius: 16px;
	padding: 30px;
	margin-bottom: 25px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.06);
	border-left: 5px solid var(--accent-color);
	transition: var(--transition);
	text-align: left;
	position: relative;
	overflow: hidden;
}

.experience-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--gradient-secondary);
	opacity: 0.05;
	transition: var(--transition);
	z-index: 0;
}

.experience-item:hover::before {
	left: 0;
}

.experience-item:hover{
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(240, 147, 251, 0.15);
}

.experience-item h3{
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--accent-color);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
	z-index: 1;
}

.experience-item h3 i{
	color: var(--main-color);
	font-size: 1.3rem;
	background: rgba(240, 147, 251, 0.1);
	padding: 6px;
	border-radius: 50%;
}

.experience-item p{
	font-size: 1.1rem;
	color: var(--secound-color);
	line-height: 1.7;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
	z-index: 1;
}

.experience-item p i{
	color: var(--accent-color);
	font-size: 0.9rem;
	background: rgba(240, 147, 251, 0.1);
	padding: 4px;
	border-radius: 50%;
}

.experience-item p:last-of-type {
	margin-bottom: 20px;
}

.experience-item .exp-details {
	margin: 15px 0;
}

.experience-item .exp-info {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
	transition: var(--transition);
}

.experience-item .exp-info:last-child {
	margin-bottom: 0;
}

.experience-item .exp-info i {
	font-size: 1.1rem;
	color: var(--accent-color);
	background: rgba(240, 147, 251, 0.1);
	padding: 8px;
	border-radius: 50%;
	transition: var(--transition);
	animation: iconPulse 2s infinite;
}

.experience-item .exp-info:hover i {
	transform: scale(1.1);
	background: rgba(240, 147, 251, 0.2);
	box-shadow: 0 4px 12px rgba(240, 147, 251, 0.3);
}

.experience-item .exp-info span {
	font-size: 0.95rem;
	color: var(--secound-color);
	font-weight: 500;
}

@keyframes iconPulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.experience-item .result {
	background: var(--gradient-secondary);
	color: white;
	padding: 8px 16px;
	border-radius: 25px;
	font-size: 1rem;
	font-weight: 600;
	display: inline-block;
	box-shadow: 0 4px 12px rgba(240, 147, 251, 0.3);
	flex-shrink: 0;
}

/* Portfolio Section */
.portfolio{
	background: rgba(255, 255, 255, 0.95);
	border-radius: var(--border-radius);
	padding: 80px 60px;
	margin: 60px auto;
	max-width: 1400px;
	box-shadow: var(--card-shadow);
	border: 1px solid rgba(255, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
}

.portfolio::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-secondary);
}

/* Certificate Card Modern Redesign */
.portfolio-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2.5rem;
	align-items: stretch;
	margin-top: 3rem;
}

.col {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(8px);
	border-radius: 24px;
	box-shadow: 0 8px 32px rgba(102, 126, 234, 0.10), 0 1.5px 8px rgba(118,75,162,0.08);
	transition: transform 0.25s cubic-bezier(0.4,0,0.2,1), box-shadow 0.25s cubic-bezier(0.4,0,0.2,1), border-color 0.25s cubic-bezier(0.4,0,0.2,1);
	padding: 15px 0 0 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	border: 1.5px solid rgba(102, 126, 234, 0.10);
	min-height: 220px;
	overflow: hidden;
	animation: hangingSwing 3s ease-in-out infinite;
	transform-origin: top center;
}

/* Stagger animation delays for certificate cards */
.col:nth-child(1) { animation-delay: 0s; }
.col:nth-child(2) { animation-delay: 0.2s; }
.col:nth-child(3) { animation-delay: 0.4s; }
.col:nth-child(4) { animation-delay: 0.6s; }
.col:nth-child(5) { animation-delay: 0.8s; }
.col:nth-child(6) { animation-delay: 1s; }
.col:nth-child(7) { animation-delay: 1.2s; }
.col:nth-child(8) { animation-delay: 1.4s; }
.col:nth-child(9) { animation-delay: 1.6s; }
.col:nth-child(10) { animation-delay: 1.8s; }
.col:nth-child(11) { animation-delay: 2s; }
.col:nth-child(12) { animation-delay: 2.2s; }
.col:nth-child(13) { animation-delay: 2.4s; }
.col:nth-child(14) { animation-delay: 2.6s; }
.col:nth-child(15) { animation-delay: 2.8s; }
.col:nth-child(16) { animation-delay: 3s; }

.col::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	opacity: 0.1;
	transition: var(--transition);
	z-index: 0;
}

.col:hover::before {
	left: 0;
}

.col:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.col img {
	width: 100%;
	height: 160px;
	object-fit: contain;
	border-radius: 0;
	box-shadow: none;
	background: transparent;
	border: none !important;
	margin-bottom: 12px;
	transition: all 0.3s ease;
}

/* Remove all card-like styling from images on mobile */
@media (max-width: 900px) {
	.col img {
		border-radius: 0;
		box-shadow: none;
		background: transparent;
		border: none;
		height: 140px;
		object-fit: contain;
	}
}

/* Remove image hover effect */
.col:hover img {
	box-shadow: none;
	border: none;
	background: transparent;
}

/* Remove .layer hover effect if any */
.layer:hover, .col:hover .layer {
	background: none !important;
	opacity: 1;
	transition: none;
}

.layer {
	background: none !important;
	position: relative;
	height: auto;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding: 18px;
	opacity: 1;
	transition: none;
	z-index: 5;
	pointer-events: auto;
}

.layer h3 {
	font-size: 1.08rem;
	font-weight: 600;
	color: var(--main-color);
	text-align: center;
	margin-bottom: 6px;
	margin-top: 0;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.link {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 4px;
	position: relative;
	z-index: 50;
	pointer-events: auto;
}

.link a {
	background: var(--gradient-accent);
	color: white;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: all 0.2s;
	box-shadow: 0 2px 8px rgba(102, 126, 234, 0.10);
	cursor: pointer;
	text-decoration: none;
	position: relative;
	z-index: 100;
	pointer-events: auto;
}

.link a:hover {
	background: var(--gradient-primary);
	color: #fff;
	transform: scale(1.13);
	box-shadow: 0 4px 16px rgba(102, 126, 234, 0.18);
}

.cert-divider {
	width: 80%;
	height: 1.5px;
	background: linear-gradient(90deg, rgba(102,126,234,0.10) 0%, rgba(118,75,162,0.13) 100%);
	margin: 10px auto 12px auto;
	border-radius: 2px;
	border: none;
	box-shadow: none;
}

/* Projects Section */
.service{
	background: rgba(255, 255, 255, 0.95);
	border-radius: var(--border-radius);
	padding: 80px 60px;
	margin: 60px 0;
	box-shadow: var(--card-shadow);
	border: 1px solid rgba(255, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
}

.service::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-accent);
}

.service-content{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	grid-gap: 2rem;
	align-items: stretch;
	margin-top: 3rem;
}

.row{
	background: var(--card-bg);
	box-shadow: var(--card-shadow);
	border-radius: var(--border-radius);
	padding: 40px 30px;
	transition: var(--transition);
	cursor: pointer;
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
}

.row::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	opacity: 0.05;
	transition: var(--transition);
	z-index: 0;
}

.row:hover::before {
	left: 0;
}

.row:hover{
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.row h3{
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--main-color);
	position: relative;
	z-index: 1;
}

.row h5{
	font-size: 1rem;
	font-weight: 500;
	margin-bottom: 20px;
	color: var(--secound-color);
	position: relative;
	z-index: 1;
}

.row p{
	font-size: var(--p-font);
	color: var(--secound-color);
	line-height: 1.8;
	position: relative;
	z-index: 1;
}

.projectlink{
	font-size: 22px;
	background: var(--gradient-primary);
	color: white;
	width: 55px;
	height: 55px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
	margin: 12px 8px;
	position: relative;
	overflow: hidden;
	border: none;
}

.projectlink::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;
}

.projectlink:hover::before {
	left: 100%;
}

.projectlink:hover{
	transform: translateY(-4px) scale(1.1);
	box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Contact Section */
.cta{
	background: rgba(255, 255, 255, 0.95);
	border-radius: var(--border-radius);
	padding: 80px 60px;
	margin: 60px 0;
	box-shadow: var(--card-shadow);
	border: 1px solid rgba(255, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
}

.cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
}

.cta-box{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	grid-gap: 2rem;
	align-items: stretch;
	margin-top: 3rem;
}
/* Education exp-details and exp-info styles to match experience section */
.education-item .exp-details {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.education-item .exp-info {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 8px;
	transition: var(--transition);
}

.education-item .exp-info:last-child {
	margin-bottom: 0;
}

.education-item .exp-info i {
	font-size: 1.1rem;
	color: var(--main-color);
	background: rgba(102, 126, 234, 0.1);
	padding: 8px;
	border-radius: 50%;
	transition: var(--transition);
	animation: iconPulse 2s infinite;
}

.education-item .exp-info:hover i {
	transform: scale(1.1);
	background: rgba(102, 126, 234, 0.2);
	box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.education-item .exp-info span {
	font-size: 0.95rem;
	color: var(--secound-color);
	font-weight: 500;
}
.wrap{
	background: var(--card-bg);
	box-shadow: var(--card-shadow);
	border-radius: var(--border-radius);
	padding: 40px 30px;
	transition: var(--transition);
	cursor: pointer;
	border: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.wrap::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	opacity: 0.05;
	transition: var(--transition);
	z-index: 0;
}

.wrap:hover::before {
	left: 0;
}

.wrap:hover{
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.wrap h3{
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--main-color);
	position: relative;
	z-index: 1;
}

.wrap p{
	font-size: var(--p-font);
	color: var(--secound-color);
	position: relative;
	z-index: 1;
}

.wrap a{
	color: var(--main-color);
	text-decoration: none;
	transition: var(--transition);
}

.wrap a:hover{
	color: var(--accent-color);
}

/* Email Modal Popup Styles */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(10px);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.show {
	opacity: 1;
	visibility: visible;
}

.modal-container {
	position: relative;
	max-width: 500px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	transform: scale(0.8) translateY(50px);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.show .modal-container {
	transform: scale(1) translateY(0);
}

.modal-content {
	background: var(--card-bg);
	border-radius: var(--border-radius);
	padding: 40px;
	box-shadow: var(--card-shadow);
	border: 1px solid rgba(255, 255, 255, 0.3);
	position: relative;
	overflow: hidden;
	text-align: center;
}

.modal-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
}

.modal-content h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 15px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
	0% { filter: brightness(1); }
	100% { filter: brightness(1.2); }
}

.modal-content p {
	color: var(--secound-color);
	font-size: var(--p-font);
	line-height: 1.6;
	margin-bottom: 30px;
	font-weight: 400;
}

.email-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

#emailInput {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid rgba(102, 126, 234, 0.2);
	border-radius: 12px;
	font-size: 1rem;
	font-family: 'Jost', sans-serif;
	background: rgba(255, 255, 255, 0.9);
	color: var(--text-color);
	transition: var(--transition);
	outline: none;
}

#emailInput:focus {
	border-color: var(--main-color);
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
	background: white;
}

#emailInput::placeholder {
	color: var(--secound-color);
	opacity: 0.7;
}

.modal-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}

.modal-btn {
	padding: 12px 30px;
	border: none;
	border-radius: 25px;
	font-size: 1rem;
	font-weight: 600;
	font-family: 'Jost', sans-serif;
	cursor: pointer;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	min-width: 120px;
}

.send-btn {
	background: var(--gradient-primary);
	color: white;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.send-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.send-btn:active {
	transform: translateY(0);
}

.cancel-btn {
	background: rgba(113, 128, 150, 0.1);
	color: var(--secound-color);
	border: 2px solid rgba(113, 128, 150, 0.2);
}

.cancel-btn:hover {
	background: rgba(113, 128, 150, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(113, 128, 150, 0.2);
}

.cancel-btn:active {
	transform: translateY(0);
}

/* Modal button animations */
.modal-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.3s, height 0.3s;
}

.modal-btn:hover::before {
	width: 300px;
	height: 300px;
}

/* Responsive design for modal */
@media (max-width: 600px) {
	.modal-content {
		padding: 30px 20px;
	}
	
	.modal-content h3 {
		font-size: 1.6rem;
	}
	
	.modal-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.modal-btn {
		width: 100%;
		max-width: 200px;
	}
}

/* Animation for modal appearance */
@keyframes modalFadeIn {
	0% {
		opacity: 0;
		transform: scale(0.8) translateY(50px);
	}
	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.modal-overlay.show .modal-content {
	animation: modalFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* End of CSS */

/* Footer */
.ends{
	text-align: center;
	padding: 40px 0 20px;
	background: rgba(255, 255, 255, 0.9);
	border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.ends p{
	font-size: var(--p-font);
	letter-spacing: 1px;
	color: var(--main-color);
	font-weight: 500;
}

/* Back to top button */
.top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 1000;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.3s, visibility 0.3s;
	background: rgba(118, 75, 162, 0.18); /* soft purple background */
	border-radius: 50%;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(102,126,234,0.10);
}

.top .arrow-up {
	color: #764ba2;
	font-size: 1.6rem;
	font-weight: bold;
	transition: color 0.2s;
}

.top:hover {
	background: #fff;
	box-shadow: 0 4px 16px rgba(118,75,162,0.18);
}

.top.hide {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/* Section Headers */
.heading{
	text-align: center;
	margin-bottom: 60px;
	position: relative;
}

.heading::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--gradient-primary);
	border-radius: 2px;
}

.heading h3{
	color: var(--main-color);
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.heading p{
	font-size: var(--p-font);
	color: var(--secound-color);
	line-height: 1.8;
}

/* Card border gradient effect for Programming Languages, Tools, and Certifications */
.sub-service .sub-box,
.portfolio-content .col {
    position: relative;
    background: #f8f9fb;
    border-radius: 18px;
    box-shadow: 0 2px 12px 0 rgba(60,60,120,0.07);
    overflow: visible;
    z-index: 1;
}

/* Gradient border effect using a pseudo-element */
.sub-service .sub-box::before,
.portfolio-content .col::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%),
        linear-gradient(300deg, #fbc2eb 0%, #a6c1ee 100%);
    background-blend-mode: screen;
    box-shadow:
        0 0 0 2px rgba(120,180,255,0.13),
        0 0 12px 4px rgba(120,180,255,0.18),
        0 0 24px 8px rgba(180,120,255,0.13);
    opacity: 1;
    transition: opacity 0.4s;
}

/* Ensure card content is above the border effect */
.sub-service .sub-box > *,
.portfolio-content .col > * {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px){
	header, section{
		padding-left: 4%;
		padding-right: 4%;
	}
}

@media (max-width: 970px){
	/* Adjust section padding since header is hidden */
	section{
		padding: 80px 4% 60px;
	}
	
	/* Remove old mobile nav styles that conflict with new implementation */
	.navlist{
		position: static;
		top: auto;
		left: auto;
		right: auto;
		flex-direction: column;
		background: none;
		backdrop-filter: none;
		text-align: left;
		transition: none;
		border-radius: 0;
		box-shadow: none;
		padding: 0;
	}
	.navlist a{
		display: block;
		padding: 16px 20px;
		margin: 0;
		border-radius: 12px;
		font-size: 1.1rem;
	}
	.navlist.active{
		top: auto;
	}
}

@media (max-width: 800px){
	.home{
		grid-template-columns: 1fr;
		min-height: 120vh;
		grid-gap: 2rem;
		text-align: left;
		padding-top: 60px; /* Reduced top padding since header is hidden */
	}
	.home-text{
		padding-top: 40px; /* Reduced padding since header is hidden */
		text-align: left !important; /* Force text to be left-aligned on mobile */
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-start !important;
	}
	.home-img iframe{
		width: 100%;
		max-width: 500px;
		margin: 0 auto;
	}
	.service-content{
		grid-template-columns: 1fr;
	}
	.portfolio-content{
		grid-template-columns: 1fr 1fr;
		gap: 1.2rem;
	}
	.col img {
		height: 120px;
	}
	:root{
		--big-font: 3rem;
		--h2-font: 2rem;
	}
}

@media (max-width: 540px){
	.btn{
		padding: 12px 30px;
		font-size: 1rem;
	}
	.home-text h1{
		font-size: 2.5rem;
	}
	.home-text{
		text-align: left !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-start !important;
	}
	.home{
		text-align: left !important;
	}
	.social a{
		width: 45px;
		height: 45px;
		font-size: 18px;
	}
	.sub-box, .row, .wrap{
		padding: 30px 20px;
	}
	.portfolio-content {
		grid-template-columns: 1fr;
		gap: 1.2rem;
		padding: 0 10px;
	}
	.col {
		padding: 8px 0 0 0;
		min-height: 160px;
		overflow: hidden;
	}
	.col img {
		height: 100px;
		border-radius: 0;
		box-shadow: none;
		background: transparent;
		border: none;
		width: 100%;
		object-fit: contain;
	}
	.layer {
		padding: 12px;
	}
	.layer h3 {
		font-size: 1rem;
	}
}

@media (max-width: 1000px) {
	.about-content{
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

@media (max-width: 600px) {
	.about-content{
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.location-section {
		grid-column: 1 / -1;
	}
	
	.about{
		padding: 60px 20px;
	}
	
	.about-intro, .education-section, .experience-section{
		padding: 25px;
	}
	
	.about-intro h2{
		font-size: 2rem;
	}
	
	.education-item, .experience-item{
		padding: 20px;
	}
	
	.experience-item .exp-info {
		gap: 8px;
	}
	
	.experience-item .exp-info i {
		font-size: 1rem;
		padding: 6px;
	}
	
	.experience-item .exp-info span {
		font-size: 0.9rem;
	}
	
	/* Reduce animation intensity on mobile for better performance */
	.navlist a i,
	.social a i,
	.btn i,
	.contactme i,
	.projectlink i,
	.top-btn i,
	.close-menu,
	#menu-icon,
	.heading i,
	.experience-section h1 i,
	.education-section h1 i,
	.experience-item h3 i,
	.education-item h3 i,
	.experience-item .exp-info i,
	.education-item p i,
	.wrap h3 i,
	.layer .link a i,
	.col .layer .link a i,
	.portfolio .heading i,
	.service .heading i,
	.cta .heading i,
	.sub-service h3 i,
	.about .heading i {
		animation-duration: 4s;
	}
	
	/* Disable complex animations on very small screens */
	@media (max-width: 480px) {
		.bxs-star,
		.bxs-map, 
		.bxs-calendar,
		.bxs-square-rounded {
			animation: none;
		}
		
		.social a i,
		.navlist a i,
		.btn i,
		.contactme i,
		.projectlink i,
		.top-btn i {
			animation: iconFloat 5s ease-in-out infinite;
		}
		
		/* Reduce hanging animation intensity on mobile */
		.sub-box {
			animation: hangingSwing 4s ease-in-out infinite;
		}
		
		.sub-box::after {
			animation: stringSwing 4s ease-in-out infinite;
		}
	}
	
	.about .heading h3{
		font-size: 2.5rem;
	}
	.btn {
		padding: 15px 35px;
		font-size: 1rem;
	}
	
	contactme {
		padding: 18px 35px;
		font-size: 1.1rem;
	}
	
	.social a {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}
	
	.projectlink {
		width: 50px;
		height: 50px;
		font-size:  20px;
	}
	
	.top-btn {
		padding: 10px 24px;
		font-size: 0.9rem;
	}
}

@media (max-width: 900px) {
	.portfolio-content {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 2rem;
		padding: 0 20px;
	}
	.col {
		padding: 12px 0 0 0;
		min-height: 200px;
		border-radius: 20px;
		overflow: hidden;
	}
	.col img {
		height: 140px;
		border-radius: 0;
		margin-bottom: 0;
		box-shadow: none;
		background: transparent;
		border: none;
		width: 100%;
		object-fit: contain;
	}
	.layer {
		padding: 15px;
	}
	.layer h3 {
		font-size: 1.1rem;
		margin-bottom: 10px;
	}
	.link a {
		width: 42px;
		height: 42px;
		font-size: 20px;
	}
}

@media (max-width: 600px) {
	.portfolio-content {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 0 15px;
	}
	.col {
		padding: 10px 0 0 0;
		min-height: 180px;
		border-radius: 18px;
		overflow: hidden;
	}
	.col img {
		height: 120px;
				border-radius: 0;
		margin-bottom: 0;
		box-shadow: none;
		background: transparent;
		border: none;
		width: 100%;
		object-fit: contain;
	}
	.layer {
		padding: 15px;
	}
	
	.layer h3 {
		font-size: 1.05rem;
		margin-bottom: 8px;
		line-height: 1.3;
	}
	.link a {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}
	.cert-divider {
		margin: 10px auto 12px auto;
		width: 70%;
	}
}

/* Pin styles for Programming Languages, Tools, and Certifications cards */
.sub-service .sub-box .pin,
.portfolio-content .col .pin {
	position: absolute;
	top: -18px;
	left: 50%;
	transform: translateX(-50%);
	width: 28px;
	height: 28px;
	background: radial-gradient(circle at 40% 40%, #f093fb 70%, #764ba2 100%);
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(102,126,234,0.18), 0 0 0 4px #fff;
	z-index: 10;
	border: 2px solid #fff;
	display: block;
	animation: pinBounce 2.2s cubic-bezier(.68,-0.55,.27,1.55) infinite;
}

/* Pin shadow for realism */
.sub-service .sub-box .pin::after,
.portfolio-content .col .pin::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 10px;
	height: 6px;
	background: rgba(102,126,234,0.12);
	border-radius: 50%;
	filter: blur(1px);
	z-index: 1;
}

/* Pin bounce animation */
@keyframes pinBounce {
	0%, 100% { transform: translateX(-50%) translateY(0);}
	30% { transform: translateX(-50%) translateY(-4px);}
	60% { transform: translateX(-50%) translateY(2px);}
}

/* Email Input Error Styling */
.error-input {
	border: 2px solid #ff4757 !important;
	background-color: rgba(255, 71, 87, 0.1) !important;
	box-shadow: 0 0 10px rgba(255, 71, 87, 0.3) !important;
	color: #ff4757 !important;
}

.error-input::placeholder {
	color: rgba(255, 71, 87, 0.7) !important;
}

/* Shake Animation for Error Input */
.shake-animation {
	animation: shake 0.5s ease-in-out;
}

@keyframes shake {
	0%, 100% { transform: translateX(0); }
	10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
	20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Custom Alert Popup Styles */
.custom-alert {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 10000;
	max-width: 400px;
	min-width: 300px;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	transform: translateX(100%);
	opacity: 0;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
}

.custom-alert.show {
	transform: translateX(0);
	opacity: 1;
	pointer-events: auto;
}

.alert-content {
	display: flex;
	align-items: center;
	padding: 16px 20px;
	gap: 12px;
	position: relative;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.alert-error .alert-content {
	background: linear-gradient(135deg, rgba(255, 71, 87, 0.1) 0%, rgba(255, 71, 87, 0.05) 100%);
	border-left: 4px solid #ff4757;
	color: #d63031;
}

.alert-success .alert-content {
	background: linear-gradient(135deg, rgba(0, 184, 148, 0.1) 0%, rgba(0, 184, 148, 0.05) 100%);
	border-left: 4px solid #00b894;
	color: #00b894;
}

.alert-info .alert-content {
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(102, 126, 234, 0.05) 100%);
	border-left: 4px solid #667eea;
	color: #667eea;
}

.alert-icon {
	font-size: 24px;
	flex-shrink: 0;
	animation: alertIconPulse 2s ease-in-out infinite;
}

@keyframes alertIconPulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
}

.alert-message {
	flex: 1;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	margin: 0;
}

.alert-close {
	position: absolute;
	top: 8px;
	right: 8px;
	background: none;
	border: none;
	font-size: 20px;
	color: inherit;
	cursor: pointer;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.2s ease;
	opacity: 0.7;
}

.alert-close:hover {
	opacity: 1;
	background: rgba(0, 0, 0, 0.1);
	transform: scale(1.1);
}

/* Mobile responsive for alerts */
@media (max-width: 480px) {
	.custom-alert {
		top: 10px;
		right: 10px;
		left: 10px;
		max-width: none;
		min-width: auto;
	}
	
	.alert-content {
		padding: 14px 16px;
		gap: 10px;
	}
	
	.alert-message {
		font-size: 13px;
	}
	
	.alert-icon {
		font-size: 20px;
	}
}

/* Feedback Section */
.feedback {
	padding: 80px 14% 60px;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	position: relative;
	overflow: hidden;
}

.feedback::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23667eea" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	pointer-events: none;
}

.feedback-container {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.feedback-form {
	background: var(--card-bg);
	padding: 40px;
	border-radius: var(--border-radius);
	box-shadow: var(--card-shadow);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	transition: var(--transition);
}

.feedback-form:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(31, 38, 135, 0.2);
}

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

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--text-color);
	font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px 20px;
	border: 2px solid rgba(102, 126, 234, 0.2);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	color: var(--text-color);
	transition: var(--transition);
	font-family: 'Jost', sans-serif;
	resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--main-color);
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
	background: rgba(255, 255, 255, 0.95);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--secound-color);
	opacity: 0.8;
}

.form-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-top: 30px;
}

.clear-btn {
	background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 25px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.submit-btn {
	background: var(--gradient-primary);
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 25px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.clear-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.clear-btn:active,
.submit-btn:active {
	transform: translateY(0);
}

/* Responsive Design for Feedback Section */
@media (max-width: 768px) {
	.feedback {
		padding: 60px 8% 40px;
	}
	
	.feedback-form {
		padding: 30px 20px;
	}
	
	.form-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.clear-btn,
	.submit-btn {
		width: 100%;
		max-width: 200px;
	}
}

/* Error styling for form inputs */
.error-input {
	border: 2px solid #e53e3e !important;
	box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.2) !important;
	background: rgba(254, 226, 226, 0.8) !important;
}

/* Shake animation for validation errors */
.shake-animation {
	animation: shake 0.5s ease-in-out;
}

@keyframes shake {
	0%, 100% { transform: translateX(0); }
	10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
	20%, 40%, 60%, 80% { transform: translateX(5px); }
}