@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg-color: #121212;         /* Classic dark background */
  --text-color: #e0e0e0;       /* Soft white text */
  --main-color: #00bfff;       /* Soft sky blue for highlights */

}

body {
	min-height: 100vh;
	background: var(--bg-color);
	color: var(--text-color);
}

/* Header Section */
header {
	position: fixed;
	width: 100%;
	top: 0;
	right: 0;
	z-index: 117;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	background: transparent;
	padding: 28px 0px;
	transition: all 0.5s ease;
}
header.scrolled {
	backdrop-filter: blur(4px);
}

.logo {
	display: flex;
	align-items: center;
}
.logo .main-icon {
	width: 0.7rem;
	height: 1.7rem;
	margin-right: 5px;
	background-color: var(--main-color);
	border-radius: 50px;
}
.logo span {
	color: var(--text-color);
	font-size: 1.7rem;
	font-weight: 600;
}

.navbar {
	display: flex;
}
.navbar a {
	position: relative;
	color: var(--text-color);
	font-size: 1.1rem;
	font-weight: 600;
	padding: 5px 0;
	margin: 0 20px;
	display: flex;
	justify-content: center;
	transition: all 0.3s ease;
}
.navbar a::before {
	content: "";
	position: absolute;
	top: 0;
	width: 0px;
	height: 2px;
	border-radius: 10px;
	background-color: var(--text-color);
	transition: all 0.3s ease;
	opacity: 0;
}
.navbar a:hover::before {
	width: 100%;
	opacity: 1;
}
.navbar a:hover {
	color: var(--main-color);
	transform: scale(1.1);
	text-shadow: 0 0 5px var(--main-color);
}
.header .navbar a.active,
.header .main a.active {
	color: var(--main-color);
}

/* Header Right Side */
.header .main {
	display: flex;
	align-items: center;
}
.header .main a {
	width: 132px;
	color: var(--text-color);
	font-size: 1.1rem;
	font-weight: 600;
	transition: all 0.5s ease;
}
.main a:hover {
	color: var(--main-color);
}

.user {
	display: flex;
	align-items: center;
}
.user i {
	color: var(--main-color);
	font-size: 28px;
	margin-right: 7px;
}

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

.about {
	/* position: relative;
	top: 150px; */
	width: 100%;
	padding-top: 150px;
	/* margin-top: 150px; */
	/* height: 100vh; */
	min-width: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.about-content {
	max-width: 1100px;
	padding: 0px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
}

.column.left {
	text-align: left;
	/* padding-left: 20px; */
	max-width: 70%;
}

.column.right {
	order: 1;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: left;
}


.column.right img {
	max-width: 250px;
	margin-left: 50px;
	border-radius: 20px 100px 20px 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

}

.about .text {
	font-size: 2rem;
	font-weight: bold;
	color: var(--text-color);
}

.about .iAm {
	color: #ffffff;
	text-shadow: 0 0 15px rgb(0 130 255);
}


.about p {
	font-size: 1.2rem;
	font-weight: 500;
	margin-top: 20px;
	color: #eee6e6;
}
a.DSA-link {
	color: #00ffff;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

a.DSA-link:hover {
	color: #00bcd4;
	text-decoration: underline;
}

.about .buttons {
	margin-top: 20px;
	display: flex;
	column-gap: 20px;
}

.about .buttons a {
	display: inline-block;
	padding: 10px 20px;
	background-color: var(--main-color);
	color: #000;
	text-decoration: none;
	border-radius: 5px;
	font-size: 1rem;
	font-weight: 500;
	transition: 0.3s;
	box-shadow: 0 4px 6px rgba(0, 188, 212, 0.3);
}

.about .buttons a:not(.cm-button):hover {
	background-color: #0288d1;
	color: white;
	transform: scale(1.05);
}

.about .cm-button {
	color: var(--text-color);
	background-color: transparent;
	outline: 2px solid var(--main-color);
}

.about .cm-button:hover {
	color: #00bcd4;
	background-color: rgba(0, 188, 212, 0.1);
	box-shadow: 0 0 15px rgba(0, 188, 212, 0.3);
	transform: scale(1.05);
}


@media (max-width: 1200px) {
	header {
		padding: 14px 2%;
		transition: .2s;
		justify-content: space-between;
	}

	.navbar a {
		padding: 5px 0;
		margin: 0px 20px;
	}
}

@media (max-width: 850px) {
	/* .about {
		display: inline;
	} */

	.about-content {
		/* position: relative; */
		display: block;
		padding: 0px;
		/* top: 100px; */
		max-width: 100%;
		height: 100%;
	}

	.about-content .column.left {
		max-width: 100%;
		margin-left: 20px;
		margin-right: 20px;
		padding: 0px;
		text-align: center;
	}


	.about-content .column.left .text {
		margin-top: 20px;
		font-size: 1.8rem;
	}

	.about-content .column.left p {
		margin: 0px;
		font-size: 1.1rem;
		margin-top: 10px;
	}

	.about .about-content .buttons {
		display: block;
		margin: 0px;
	}

	.about-content .column.left a {
		margin: 0px;
		margin-top: 20px;
		margin-right: 10px;
		margin-left: 10px;

	}

	.about-content .column.right {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.about-content .column.right img {
		margin: 0px;
	}
}

@media (max-width: 1100px) {
	.main .main-items {
		margin-right: 12px;
	}

	.main .menu-icon-container {
		position: relative;
		margin-right: 5px;
		width: 30px;
		height: 30px;
		border-radius: 5px;
		/* background: grey; */
		border: 2px solid #ccc;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
		background: rgba(255, 255, 255, 0.1);
		backdrop-filter: blur(4px);
		cursor: pointer;
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 113;
	}

	.header .main a {
		width: 132.6px;
	}

	#menu-icon {
		display: block;
	}

	.navbar {
		position: absolute;
		top: 100%;
		right: -100%;
		width: auto;
		height: auto;
		/* background: grey; */
		border: 2px solid #ccc;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
		background: rgba(255, 255, 255, 0.1);
		backdrop-filter: blur(4px);
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		border-radius: 10px;
		transition: all .50s ease;
	}

	.navbar a {
		display: block;
		margin: 12px 0;
		padding: 0px 25px;
		transition: all .50s ease;
	}

	.navbar a:before,
	.navbar a:after {
		display: none;
	}

	.navbar a:hover {
		color: var(--text-color);
		transform: translateY(5px);
	}

	/* .navbar a.active {
		color: var(--text-color);
	} */

	.navbar.open {
		right: 2%;
	}

}

.skills-main {
	width: 100%;
	/* height: fit-content; */
	padding-top: 95px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.skills-main .skills-section {
	width: 1000px;
	/* margin-bottom: -40px; */
}

.skills-main .skills-section .header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
}

.skills-main .skills-section .header .text {
	font-size: 1.5rem;
	font-weight: 600;
}

.skills-main .skills-section .header .border-line {
	width: 140px;
	height: 4px;
	border-radius: 100px;
	background-color: var(--main-color);
}

.skills-main .skills-section .skills {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	flex-wrap: wrap;
	row-gap: 50px;
}
.technical-skills,.professional-skills{
	height: fit-content !important;
}

.skills-main .skills-section .skills .skills-group-row {
	/* width: 40%; */
	width: 400px;
	/* min-width: 300px; */
	border: 2px solid #ccc;
	border-radius: 10px;
	margin-left: 20px;
	margin-right: 20px;
	padding: 20px 10px 10px 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
}

@media (max-width: 700px) {
	.skills-main .skills-section .skills .skills-group-row {
		width: 85%;
		min-width: 250px;
	}
}

.skills-main .skills-section .skills .skills-group-row .skills-group-header {
	width: fit-content;
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--text-color);
	/* margin-top: 20px; */
	margin-left: auto;
	margin-right: auto;
}

.skills-main .skills-section .skills-group-row .border-line {
	width: 100%;
	height: 4px;
	border-radius: 100px;
	background-color: var(--main-color);
	margin-top: 5px;
	margin-bottom: 25px;
}

.skills-main .skills-section .skills-group-row .skill {
	/* width: 100%; */
	/* height: 100px; */
	margin-bottom: 25px;
	display: flex;
	flex-direction: row;
}

.skills-main .skills-section .skills-group-row .skill-block {
	width: 100%;
	padding-left: 10px;
}

.skills-main .skills-section .skills-group-row .icon {
	display: flex;
	justify-content: center;
	align-items: center;
}

.skills-main .skills-section .skills-group-row .icon-img {
	width: 55px;
	aspect-ratio: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 30px;
	color: var(--text-color);
	border: 3px solid var(--main-color);
	border-radius: 25%;
}

.skills-main .skills-section .skills-group-row .progress-block {
	width: fit-content;
	height: fit-content;
	padding: 0px 5px;
	border-radius: 50px;
	margin-top: 5px;
	margin-left: 50%;
	transform: translate(-20px, 0px);
	background-color: #ff00008a;
	color: white;
	font-size: 0.8em;
}

.skills-main .skills-section .skills-group-row .progress-bar {
	width: 100%;
	height: 7px;
	margin-top: 5px;
	background: gray;
	border-radius: 20px;
}

.skills-main .skills-section .skills-group-row .progress-per {
	width: 50%;
	height: 7px;
	border-radius: 20px;
	background-color: #922b2b;
}

.skills-main .skills-section .skills-group-row .block-header {
	color: var(--text-color);
	/* font-size: 1.05rem; */
	font-weight: 600;
}

.skills-main .skills-section .skills-group-row .block-section {
	font-size: 0.85rem;
	font-weight: 600;
}

.skills-main .skills-section .skills-group-row .html .progress-block {
	margin-left: 70%;
}

.skills-main .skills-section .skills-group-row .html .progress-per {
	width: 70%;
}

.skills-main .skills-section .skills-group-row .css .progress-block {
	margin-left: 60%;
}

.skills-main .skills-section .skills-group-row .css .progress-per {
	width: 60%;
}

.skills-main .skills-section .skills-group-row .js .progress-block {
	margin-left: 50%;
}

.skills-main .skills-section .skills-group-row .js .progress-per {
	width: 50%;
}

.skills-main .skills-section .skills-group-row .python .progress-block {
	margin-left: 55%;
}

.skills-main .skills-section .skills-group-row .python .progress-per {
	width: 55%;
}

.skills-main .skills-section .skills-group-row .communication .progress-block {
	margin-left: 85%;
}

.skills-main .skills-section .skills-group-row .communication .progress-per {
	width: 85%;
}

.skills-main .skills-section .skills-group-row .team-work .progress-block {
	margin-left: 70%;
}

.skills-main .skills-section .skills-group-row .team-work .progress-per {
	width: 70%;
}

.skills-main .skills-section .skills-group-row .management .progress-block {
	margin-left: 65%;
}

.skills-main .skills-section .skills-group-row .management .progress-per {
	width: 65%;
}

.skills-main .skills-section .skills-group-row .creativity .progress-block {
	margin-left: 80%;
}

.skills-main .skills-section .skills-group-row .creativity .progress-per {
	width: 80%;
}

.education-main {
	padding-top: 150px;
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: row;
	/* align-items: center; */
}

.education-main .education-section {
	/* position: relative; */
	/* top: 150px; */
	width: fit-content;
	min-width: 770px;
	max-width: 800px;
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 50px;
	/* margin-left: auto;
	margin-right: auto; */
	box-sizing: content-box;
	padding-left: 20px;
	padding-right: 20px;
}

.education-main .education-section .study {
	/* height: 190px; */
	display: flex;
	flex-direction: row;
	/* margin-bottom: 50px; */
	/* justify-content: space-between; */
}

.education-main .education-section .study .image {
	display: flex;
	justify-content: center;
}

.education-main .education-section .study .image img {
	width: 300px;
	/* height: 180px; */
	aspect-ratio: 300/180;
	/* min-width: 200px; */
	border-radius: 10px;
	border: 2px solid var(--main-color);
}

.education-main .education-section .study .line {
	min-width: 2.5px;
	height: 180px;
	margin-top: auto;
	margin-bottom: auto;
	border-radius: 10px;
	margin-left: 20px;
	margin-right: 20px;
	background-color: var(--main-color);
}

.education-main .education-section .study.second .image {
	order: 2;
}

.education-main .education-section .study.second .line {
	order: 1;
}

.education-main .education-section .study.second .texts {
	order: 0;
}

@media (max-width: 850px) {
	.education-main .education-section .study {
		flex-direction: column;
		border: 2px solid #ccc;
		border-radius: 20px;
		padding: 10px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
		background: rgba(255, 255, 255, 0.1);
		backdrop-filter: blur(4px);
	}

	.education-main .education-section {
		min-width: 250px;
		width: 85%;
	}

	.education-main .education-section .study .image img {
		width: 85%;
		min-width: 250px;
	}

	.education-main .education-section .study .line {
		width: 100%;
		height: 4px;
		margin: 0px;
		margin-top: 20px;
		margin-bottom: 5px;
	}

	.education-main .education-section .study .texts {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.education-main .education-section .study.second .image {
		order: 2;
	}

	.education-main .education-section .study.second .line {
		order: 3;
	}

	.education-main .education-section .study.second .texts {
		order: 4;
	}

	.education-main .education-section .study .texts .header {
		text-align: center;
	}

	.education-main .education-section .study .texts .name {
		text-align: center;
	}

	.education-main .education-section .study .texts .year {
		text-align: center;
	}

	.education-main .education-section .study .texts .text {
		text-align: center;
	}
}

.education-main .education-section .study .texts .header {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--main-color);
}

.education-main .education-section .study .texts .name {
	font-size: 1.09rem;
	font-weight: 500;
	color: var(--text-color);
	margin-top: 5px;
}

.education-main .education-section .study .texts .year {
	font-weight: 600;
	color: var(--text-color);
}

.education-main .education-section .study .texts .text {
	font-weight: 500;
	color: var(--text-color);
	/* text-align: justify; */
	margin-top: 10px;
}

.certificates-main {
	margin-top: 100px;
	display: flex;
	justify-content: center;
	padding: 0 20px;
}

.certificates-main .certificates-section .column {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1200px;
	align-items: center;
}

.certificates-main .certificates-section .column .header {
	width: 100%;
	font-size: 2rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 40px;
}

.certificates-main .certificates-section .column .header .text {
	color: var(--main-color);
	border: 2px solid var(--main-color);
	border-radius: 10px;
	padding: 5px 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
}

.certificates-main .certificates-section .column .header .header-line {
	flex: 1;
	height: 2px;
	background-color: var(--main-color);
}

.certificates-main .certificates-section .column .header .header-line.right {
	border-radius: 0px 20px 20px 0px;
}

.certificates-main .certificates-section .column .images {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
	width: 100%;
}

.certificates-main .certificates-section .column .images .image-column {
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
}

.certificates-main .certificates-section .column img {
	width: 100%;
	max-width: 500px; /* 📢 Bigger Image */
	border: 3px solid #ccc;
	border-radius: 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificates-main .certificates-section .column img:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* 📱 Responsive */
@media (max-width: 768px) {
	.certificates-main .certificates-section .column .images {
		flex-direction: column;
		align-items: center;
	}

	.certificates-main .certificates-section .column img {
		width: 90%;
		max-width: 100%;
	}
}

.projects-main {
	width: 100%;
	padding-top: 67px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.projects-main .projects-section {
	max-width: 1000px;
	padding: 0px 20px;
}

.projects-main .projects-section .projects-header {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}

.projects-main .projects-section .projects-header .text {
	font-size: 1.4rem;
	font-weight: 600;
	padding: 5px 10px;
	margin-left: 10px;
	margin-right: 10px;
	border: 2px solid var(--main-color);
	border-bottom: 0px;
	border-radius: 10px 10px 0px 0px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
}

.projects-main .projects-section .header-line {
	width: 100%;
	height: 4px;
	background-color: var(--main-color);
	border-radius: 20px;
}

.projects-main .projects-section .professional-summary .texts {
	margin-top: 20px;
	font-size: 1.05rem;
	font-weight: 500;
	text-align: justify;
}

.projects-main .projects-section .projects-works {
	margin-top: 50px;
}

.projects-main .projects-section .projects-works .works {
	margin-top: 25px;
	display: flex;
	justify-content: space-evenly;
	flex-direction: row;
	flex-wrap: wrap;
	row-gap: 40px;
	column-gap: 20px;
}

.projects-main .projects-section .projects-works .works-row {
	width: 100%;
	max-width: 467px;
	min-width: 250px;
	box-sizing: content-box;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.projects-main .projects-section .projects-works .works-row .works-header {
	width: fit-content;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.projects-main .projects-section .projects-works .works-row .header-line {
	width: 100%;
	height: 4px;
	border-radius: 20px;
	background-color: var(--main-color);
}

.projects-main .projects-section .projects-works .works-row .works-header .text {
	font-size: 1.2rem;
	font-weight: 600;
	margin-left: 10px;
	margin-right: 10px;
}

.projects-main .projects-section .projects-works .works-row .texts {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}

.projects-main .projects-section .projects-works .works-row .text-row {
	min-height: 62.8px;
	font-size: 1.05rem;
	font-weight: 500;
	padding: 5px 10px;
	border: 2px solid #ccc;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
}

/* 👇 Project icon style */
.projects-main .projects-section .projects-works .works-row .text-row .tr-icon {
	margin-right: 10px;
	min-width: 16.8px;
	min-height: 16.8px;
	border-radius: 50%;
	background-color: var(--text-color);
}

/* 🔗 Project Link Styling */
.projects-main .projects-section .projects-works .works-row .text-row a {
	text-decoration: none;
	color: white;
	transition: color 0.3s ease;
	font-weight: 500;
}

/* 🎯 Hover effect for Project Link */
.projects-main .projects-section .projects-works .works-row .text-row a:hover {
	color: var(--main-color);
	text-decoration: underline;
	cursor: pointer;
}

.contact-main {
	width: 100%;
	padding-top: 150px;
}

.contact-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.contact-section {
	flex: 1;
	min-width: 300px;
	max-width: 580px;
	padding: 0;
	/* margin: 0 auto;
	padding: 0 20px; */
	margin-top: 55px;
}

.contact-sections {
	flex: 1;
	min-width: 300px;
	max-width: 580px;
	padding: 0;
	/* margin: 0 auto;
	padding: 0 20px; */
}

.contact-header {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-bottom: 40px;
}

.contact-header .header-text {
	font-size: 2rem;
	font-weight: 700;
	color: var(--text-color);
}

.contact-header .header-line {
	width: 100%;
	height: 4px;
	background-color: var(--main-color);
	border-radius: 20px;
	margin-top: 5px;
}

.section {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

/* Contact block */
.block {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 20px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(8px);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

.block:hover {
	transform: translateY(-4px);
}

.block .icon {
	min-width: 50px;
	color: var(--main-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.block .icon i {
	font-size: 2.5rem;
	color: var(--main-color);
}

.content {
	flex: 1;
}

.content-row .name {
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--main-color);
}

.content-row .line {
	width: 100%;
	height: 2px;
	background-color: var(--main-color);
	margin: 5px 0;
	border-radius: 2px;
}

.text {
	font-size: 1rem;
	color: var(--text-color);
}

/* Responsive for mobile */
@media screen and (max-width: 768px) {
	.contact-container {
		flex-direction: column;
		gap: 50px;
	}

	.contact-section {
		padding: 0 10px;
	}

	.block {
		flex-direction: column;
		align-items: flex-start;
		padding: 15px;
		gap: 10px;
	}

	.block .icon {
		font-size: 2rem;
		margin-bottom: 5px;
	}

	.content-row .name {
		font-size: 1rem;
	}

	.text {
		font-size: 0.9rem;
	}
}

.contact-form-wrapper {
	flex: 1;
	min-width: 300px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin-top: 37px;
}

.contact-form {
	width: 100%;
	max-width: 700px;
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(8px);
	border: 2px solid rgba(255, 255, 255, 0.1);
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.contact-form .input-box {
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
}

.contact-form label {
	margin-bottom: 5px;
	font-size: 1rem;
	color: var(--main-color);
	font-weight: 600;
}

.contact-form input,
.contact-form textarea {
	padding: 12px 15px;
	border-radius: 8px;
	border: none;
	font-size: 1rem;
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--text-color);
	resize: none;
	transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: 2px solid var(--main-color);
	background-color: rgba(255, 255, 255, 0.15);
}

.send-button {
	margin-top: 10px;
	padding: 12px 20px;
	background-color: var(--main-color);
	color: #000;
	font-weight: bold;
	font-size: 1rem;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.send-button:hover {
	background-color: #4e54c8;
	color: #fff;
}

/* 📱 Responsive: */
@media screen and (max-width: 600px) {
	.contact-form {
		padding: 20px 15px;
	}

	.contact-form input,
	.contact-form textarea {
		font-size: 0.95rem;
	}
}

.hide { display: none; }
.show { display: block; }

.error, .email-error {
  color: red;
  font-size: 0.9rem;
  margin-top: 5px;
  display: none;
}

.error-show {
  display: block;
}


.page {
	height: 100vh;
	/* min-height: 100%; */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	row-gap: 50px;
}

.footer {
	width: 100%;
	/* min-height: 50px; */
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
	column-gap: 10px;
	padding: 10px 20px;
	border-top: 2px solid #ccc;
	background-color: var(--main-color);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
}

.footer .left {
	font-size: 0.95rem;
	font-weight: 500;
	text-align: center;
}

.footer .right {
	display: flex;
	flex-direction: row;
	column-gap: 20px;
}

.footer .right .social {
	width: 30px;
	height: 30px;
	border: 2px solid var(--text-color);
	border-radius: 10px;
	font-size: 1.2rem;
	transition: 0.3s;
}

.footer .right .social a {
	color: var(--text-color);
	transition: 0.3s;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
}

.footer .right .social:hover {
	color: var(--main-color);
	border: 2px solid var(--main-color);
}

.footer .right .social:hover a {
	color: var(--main-color);
}

@media (max-width: 700px) {
	.footer {
		flex-direction: column;
		row-gap: 10px;
	}
}