* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Body */
body {
	background-color: lightcyan;
	font-family: Arial, sans-serif;
	transition: background-color 0.3s, color 0.3s;
}

/* Dark mode */
body.dark-mode {
	background-color: #333;
	color: white;
}

/* Hero banner */
.hero-banner {
	background: linear-gradient(135deg, #091c4d, #1b2c71);
	color: #ffffff;
	text-align: center;
	padding: 25px 20px;
	border-radius: 0 0 30px 30px;
	margin-bottom: 15px;
	box-shadow: inset 0 -10px 30px rgba(0,0,0,0.35);
}

body.inner-page .hero-banner {
	margin-bottom: 0;
}

.hero-banner h1 {
	font-size: 2.2rem;
	letter-spacing: 0.08rem;
	padding: 12px 18px;
	border-radius: 12px;
	background: rgba(255,255,255,0.1);
	display: inline-block;
	margin-bottom: 10px;
	animation: welcomePulse 2.5s ease-in-out infinite, welcomeSlide 8s linear infinite;
}

.hero-banner .subheading {
	font-size: 1rem;
	opacity: 0.9;
}

#Welcome {
	color: #ffffff;
}


/* Navigation */
nav {
	padding: 10px;
	position: relative;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

body.inner-page nav {
	margin-bottom: 20px;
}

nav button {
	position: absolute;
	top: 10px;
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	color: black;
	transition: color 0.3s;
}

nav button#menu-toggle {
	left: 10px;
	display: none; /* Hidden on desktop */
}

nav button#dark-mode {
	right: 10px;
}

body.dark-mode nav button {
	color: white;
}

nav ul {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 20px;
	transition: all 0.3s ease;
	align-items: center;
}

nav ul li a {
	text-decoration: none;
	font-size: 18px;
	color: black;
	padding: 10px 15px;
	border-radius: 5px;
	transition: background-color 0.3s, color 0.3s;
}

nav ul li a.active,
nav ul li a:hover {
	background-color: black;
	color: gold;
}

nav ul li a:focus {
	outline: 2px solid gold;
	outline-offset: 2px;
}

@media (max-width: 768px) {
	nav button#menu-toggle {
		display: block;
	}

	nav ul {
		flex-direction: column;
		align-items: stretch;
		display: none;
		background: rgba(255, 255, 255, 0.95);
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		padding: 15px;
		box-shadow: 0 2px 8px rgba(0,0,0,0.25);
	}

	nav ul.active {
		display: flex;
	}

	nav ul li {
		margin: 8px 0;
	}

	nav ul li a {
		font-size: 16px;
		padding: 12px;
		width: 100%;
		display: block;
		text-align: center;
	}
}
nav ul li a:hover {
	background-color: black;
	color: gold;
}

nav ul li a:active {
	color: red;
}

body.dark-mode nav ul li a {
	color: white;
}

nav ul.active {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	width: 100%;
	padding: 10px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

body.dark-mode nav ul.active {
	background: #444;
}

/* Hero Section */
.hero {
	display: flex;
	align-items: center;
	gap: 40px;
	padding: 60px 20px;
	background-color: darkblue;
	min-height: 60vh;
}

.hero > div {
	flex: 1;
	text-align: center;
}

.hero img {
	max-width: 100%;
	height: auto;
	border-radius: 50%;
	box-shadow: 0 4px 8px rgba(0,0,0,0.3);
	transition: transform 0.3s;
}

.hero img:hover {
	transform: scale(1.05);
}

#dagi {
	font-style: italic;
	color: #33FF57;
}

.webdeveloper, .veditor, .gdesigner {
	font-style: italic;
	letter-spacing: 1px;
}

.webdeveloper { color: lightskyblue; }
.veditor { color: red; }
.gdesigner { color: orange; }

.hh {
	color: white;
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.hero h2 {
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 30px;
}

/* Hero CTA */
.hero-cta {
	padding: 30px 20px;
	background: #132a63;
	color: #fff;
	text-align: center;
	border-radius: 20px;
	margin: 20px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.hero-cta h2 {
	font-size: 2rem;
	margin-bottom: 12px;
}

.hero-cta-description {
	opacity: 0.9;
	margin-bottom: 18px;
	font-size: 1rem;
}

.skill-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 20px;
}

.skill-badges span {
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.3);
	padding: 8px 14px;
	border-radius: 25px;
	font-weight: 600;
}

.skill-badges a {
	background: rgba(255,255,255,0.12);
	border: 1px solid rgba(255,255,255,0.3);
	padding: 8px 14px;
	border-radius: 25px;
	font-weight: 600;
	color: white;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: background-color 0.3s, transform 0.2s;
}

.skill-badges a:hover {
	background: rgba(255,255,255,0.22);
	transform: translateY(-2px);
}

.cta-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin-top: 10px;
}

.cta-buttons .button {
	background-color: gold;
	color: black;
	padding: 12px 22px;
	font-size: 15px;
	font-weight: 700;
}

.cta-buttons .button:hover {
	transform: translateY(-3px);
}

/* Buttons */
.button {
	background-color: black;
	color: gold;
	padding: 15px 25px;
	margin: 10px;
	font-size: 16px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.3s, transform 0.2s;
}

.button:hover {
	background-color: gold;
	color: black;
	transform: translateY(-2px);
}

/* Footer */
footer {
	background-color: #0a1b60;
	color: white;
	padding: 30px 20px;
}

.footer-top {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(255,255,255,0.2);
	padding-bottom: 20px;
}

.footer-brand h3 {
	margin-bottom: 6px;
	font-size: 1.5rem;
}

.footer-brand p {
	opacity: 0.85;
}

.footer-links ul {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 8px;
}

.footer-links a {
	color: #ffffff;
	text-decoration: none;
	opacity: 0.9;
}

.footer-links a:hover {
	color: gold;
}

.footer-contact p {
	margin: 6px 0;
}

.footer-contact a {
	color: #ffffff;
	text-decoration: none;
}

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.social-links a {
	color: white;
	margin: 0 10px;
	font-size: 22px;
	text-decoration: none;
	transition: color 0.3s;
}

.social-links a:hover {
	color: gold;
}

@media (max-width: 768px) {
	.footer-top, .footer-bottom {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer-links, .footer-contact {
		width: 100%;
	}
}

/* About Me */
.about_me {
	padding: 30px 15px;
	background-color: darkblue;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto auto;
	gap: 20px;
	min-height: 80vh;
	align-items: start;
	color: white;
}

@media (max-width: 768px) {
	.about_me {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}
}

.about-item:nth-child(1) {
	grid-column: span 3;
}

.about-item {
	padding: 15px;
	text-align: center;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	transition: transform 0.3s, box-shadow 0.3s;
	animation: fadeIn 0.8s ease-in-out;
}

.about-item:nth-child(1) { animation-delay: 0.1s; }
.about-item:nth-child(2) { animation-delay: 0.2s; }
.about-item:nth-child(3) { animation-delay: 0.3s; }
.about-item:nth-child(4) { animation-delay: 0.4s; }
.about-item:nth-child(5) { animation-delay: 0.5s; }
.about-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

.about-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0,0,0,0.3);
	background: rgba(255, 255, 255, 0.1);
}

.about-item img {
	max-width: 100%;
	height: auto;
	border-radius: 50%;
	box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.about-item p {
	margin: 0;
	font-size: 14px;
	line-height: 1.4;
}

.about_me h1 {
	margin-bottom: 15px;
	font-size: 2.2rem;
}

.about_me h2 {
	margin-top: 20px;
	margin-bottom: 8px;
	font-size: 1.6rem;
	color: gold;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.about_me h2 i {
	font-size: 1.3rem;
}

.about_me img {
	border-radius: 50%;
	max-width: 180px;
	margin: 15px 0;
	box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.about_me p {
	font-size: 16px;
	line-height: 1.5;
	max-width: 700px;
	margin: 0 auto 15px;
	padding: 15px;
	border-radius: 8px;
	transition: background-color 0.3s, padding 0.3s;
}

.about_me p:hover {
	background-color: darkcyan;
	padding: 20px;
}

.about_me > div:last-child {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.about-section {
	margin-bottom: 20px;
	width: 100%;
	max-width: 700px;
}

blockquote {
	font-style: italic;
	font-size: 18px;
	color: lightcyan;
	margin: 15px auto;
	max-width: 550px;
	padding: 15px;
	border-left: 4px solid gold;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
}

/* Skills */
.mysikll {
	text-align: center;
	color: white;
	margin: 20px 0;
	font-size: 2rem;
}

.skills-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	padding: 20px;
}

.skill-card {
	background: rgba(255, 255, 255, 0.1);
	padding: 20px;
	border-radius: 10px;
	text-align: center;
	color: white;
	transition: transform 0.3s;
}

.skill-card:hover {
	transform: translateY(-5px);
}

.skill-title {
	font-size: 20px;
	margin-bottom: 10px;
}

.progress-bar {
	background: #555;
	border-radius: 5px;
	height: 10px;
	overflow: hidden;
	margin-top: 10px;
}

.progress {
	background: linear-gradient(to right, #33FF57, #FF5733);
	height: 100%;
	border-radius: 5px;
	transition: width 0.5s;
}

/* Gallery */
.Gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 15px;
	padding: 20px;
}

.ima {
	width: 100%;
	height: auto;
	border-radius: 10px;
	transition: transform 0.3s;
}

.ima:hover {
	transform: scale(1.05);
}

/* Contact */
#contact {
	padding: 40px 20px;
	text-align: center;
	color: white;
	background-color: darkblue;
}

#contact h2 {
	margin-bottom: 20px;
}

#contact p {
	margin: 10px 0;
	font-size: 18px;
}

#contact-form {
	padding: 40px 20px;
	background-color: #222;
}

#contact-form h2 {
	color: white;
	text-align: center;
	margin-bottom: 20px;
}

.form-group {
	margin-bottom: 20px;
	text-align: left;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

label {
	display: block;
	margin-bottom: 5px;
	color: white;
	font-size: 16px;
}

input, textarea {
	width: 100%;
	padding: 12px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
}

.submit-btn {
	background: #33FF57;
	color: black;
	padding: 12px 30px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s;
}

.submit-btn:hover {
	background: #FF5733;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero {
		flex-direction: column;
		padding: 40px 20px;
		text-align: center;
	}

	.hero img {
		max-width: 250px;
	}

	#Welcome {
		font-size: 30px;
	}

	nav button#menu-toggle {
		display: block;
	}

	nav ul {
		display: none;
	}

	nav ul.active {
		display: flex;
	}

	nav ul li {
		margin: 10px 0;
	}

	nav ul li a {
		font-size: 16px;
		padding: 10px;
	}

	.skills-grid {
		grid-template-columns: 1fr;
	}

	.Gallery {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	}

	.about_me {
		padding: 20px;
	}

	.about_me p {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	#Welcome {
		font-size: 24px;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero h2 {
		font-size: 1.2rem;
	}

	.button {
		padding: 12px 20px;
		font-size: 14px;
	}

	.social-links a {
		font-size: 20px;
		margin: 0 10px;
	}
}
	border-radius: 25px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	font-family: Arial, Helvetica, sans-serif;
}

#contact h2 {
	text-align: center;
	font-size: 32px;
	margin-bottom: 20px;
	color: white;
}

#contact p {
	font-size: 22px;
	margin: 15px 0;
	text-align: center;
}

#contact a {
	text-decoration: none;
	color: gold;
	font-weight: 500;
}

#contact a:hover {
	color: #0056b3;
	text-decoration: underline;
}

/* Contact form */
#contact-form {
	max-width: 800px;
	margin: 80px auto;
	padding: 60px;
	background: black;
	border-radius: 25px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

.form-group label {
	display: block;
	font-size: 22px;
	margin-bottom: 5px;
	color: gold;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 2px solid blue;
	border-radius: 10px;
	font-size: 22px;
}

.submit-btn {
	width: 100%;
	background: #007bff;
	border: none;
	padding: 12px;
	font-size: 18px;
	color: white;
	border-radius: 10px;
	cursor: pointer;
}

.submit-btn:hover {
	background: #0056b3;
}

/* Skills */
.mysikll{
	color: white;
	text-align: center;
	position: relative;
	top: 40px;
}

.skills-grid {
	position: relative;
	top: 140px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
	max-width: 800px;
	margin: auto;
}

.skill-card {
	background: black;
	padding: 20px;
	border-radius: 15px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.skill-card:hover {
	transform: translateY(-5px);
}

.skill-title {
	display: flex;
	align-items: center;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 12px;
	color: gold;
}

.progress-bar {
	width: 100%;
	background: #e0e0e0;
	height: 10px;
	border-radius: 6px;
}

.progress {
	height: 10px;
	background: #1e88e5;
	border-radius: 6px;
}

/* Image */
#dagi3{
	border-radius: 50%;
	position: relative;
	left: 42%;
	top: 100px;
	max-width: 500px;
	height: 400px;
}

#dagi3:hover{
	transform: scale(1.09);
}

/* Footer */
#foter{
	display: flex;
	justify-content: flex-end;
}

/* Gallery */
#headone{
	text-align: center;
	font-size: 32px;
	margin: 40px;
	padding: 40px;
	color: white;
}

section .Gallery img,
section .Gallery video{
	width: 440px;
	height: 500px;
}

.ima{
	margin: 20px;
	border-radius: 30px;
	box-shadow: 0 8px 18px gray;
}

.ima:hover{
	transform: scale(1.072);
}
/* Responsive layout */
@media (max-width: 900px){

.hero{
	flex-direction: column;
	text-align: center;
	padding: 40px;
}

.about_me{
	flex-direction: column;
	text-align: center;
}

nav ul{
	flex-direction: column;
	gap: 10px;
	display: none;
	background: black;
	padding: 20px;
}

nav ul.active{
	display: flex;
}

#dagi3{
	left: 0;
	margin: auto;
	display: block;
}

.skills-grid{
	top: 40px;
	grid-template-columns: 1fr;
}

section .Gallery img,
section .Gallery video{
	width: 100%;
	height: auto;
}

}
#menu-toggle{
	display:none;
	background:black;
	color:white;
	padding:10px;
	border:none;
	font-size:22px;
	cursor:pointer;
}

@media(max-width:900px){
#menu-toggle{
	display:block;
}
}
.dark-mode{
	background:#111;
	color:white;
}

.dark-mode nav{
	background:black;
}

.dark-mode .hero{
	background:#000;
}

.dark-mode .about_me{
	background:#000;
}

/* Custom skill page */
.skill-page {
	background-color: lightcyan;
}

.skills-hero {
	display: grid;
	grid-template-columns: 1.7fr 0.9fr;
	align-items: center;
	gap: 20px;
	padding: 24px 20px;
	color: white;
	max-width: 1280px;
	margin: 0 auto 20px;
	background-color: darkblue;
	border-radius: 20px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.skills-tag {
	display: inline-block;
	background: rgba(255, 215, 0, 0.16);
	color: gold;
	padding: 8px 14px;
	border-radius: 999px;
	font-weight: bold;
	letter-spacing: 0.04em;
	margin-bottom: 16px;
}

.skill-page .mysikll {
	position: static;
	top: auto;
	font-size: 2.6rem;
	margin: 0 0 10px;
	text-align: left;
}

.skills-intro {
	font-size: 1rem;
	line-height: 1.65;
	max-width: 800px;
	color: #e4ecff;
}

.skills-summary {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}

.skills-summary span,
.custom-skill-list span {
	padding: 10px 16px;
	border-radius: 999px;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.14);
	color: white;
}

.skills-hero-photo {
	display: flex;
	justify-content: center;
}

.skill-page #dagi3 {
	position: static;
	left: auto;
	top: auto;
	width: min(100%, 280px);
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 24px;
	border: 4px solid rgba(255,255,255,0.16);
	box-shadow: 0 14px 28px rgba(0,0,0,0.24);
}

.skills-board {
	max-width: 1280px;
	margin: 12px auto 0;
	padding: 8px 20px 20px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	background-color: darkblue;
	border-radius: 20px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.skill-category-card {
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 20px;
	padding: 18px;
	color: white;
	box-shadow: 0 12px 24px rgba(0,0,0,0.16);
}

.skill-category-card h2 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.18rem;
	margin-bottom: 8px;
	color: gold;
}

.skill-category-card p {
	color: #e4ecff;
	line-height: 1.55;
	margin-bottom: 12px;
	font-size: 0.95rem;
}

.custom-skills-grid {
	position: static;
	top: auto;
	max-width: none;
	margin: 0;
	padding: 0;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 12px;
}

.custom-skill-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.skill-page .skill-card {
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.08);
	padding: 14px;
	border-radius: 14px;
}

.skill-page .skill-title {
	color: #fff6c1;
	font-size: 0.98rem;
	margin-bottom: 8px;
}

.skill-page .progress-bar {
	background: rgba(255,255,255,0.18);
	height: 9px;
}

.skill-page .progress {
	background: linear-gradient(90deg, #0fd850 0%, #f9d423 100%);
}

.skills-closing {
	max-width: 1100px;
	margin: 0 auto 28px;
	padding: 6px 20px 24px;
	text-align: center;
	color: white;
	background-color: darkblue;
	border-radius: 20px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.skills-closing h2 {
	font-size: 1.7rem;
	color: gold;
	margin-bottom: 8px;
}

.skills-closing p {
	max-width: 760px;
	margin: 0 auto;
	line-height: 1.6;
	color: #e4ecff;
}

@media (max-width: 1180px){
	.skills-board {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px){
	.skills-hero {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.skill-page .mysikll {
		text-align: center;
	}

	.skills-intro {
		margin: 0 auto;
	}

	.skills-summary {
		justify-content: center;
	}

	.skills-board {
		grid-template-columns: 1fr;
	}
}

/* Projects page */
.projects-page {
	background-color: lightcyan;
}

.projects-hero {
	max-width: 1250px;
	margin: 0 auto;
	padding: 24px 20px;
	display: grid;
	grid-template-columns: 1.45fr 0.95fr;
	gap: 20px;
	align-items: stretch;
	color: white;
	background-color: darkblue;
	border-radius: 20px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.projects-label {
	display: inline-block;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 215, 0, 0.14);
	border: 1px solid rgba(255, 215, 0, 0.22);
	color: gold;
	font-weight: 700;
	margin-bottom: 14px;
}

.projects-title {
	font-size: 2.9rem;
	margin-bottom: 12px;
	color: white;
}

.projects-intro {
	line-height: 1.7;
	font-size: 1rem;
	max-width: 760px;
	color: #e4ecff;
}

.projects-tags,
.project-stack,
.project-metrics {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.projects-tags {
	margin-top: 18px;
}

.projects-tags span,
.project-stack span,
.project-metrics span {
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255,255,255,0.09);
	border: 1px solid rgba(255,255,255,0.12);
	color: white;
	font-size: 0.92rem;
}

.project-highlight-card {
	height: 100%;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.14);
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0 18px 34px rgba(0,0,0,0.18);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.project-status {
	color: gold;
	font-weight: 700;
	margin-bottom: 12px;
}

.project-highlight-card h2 {
	font-size: 1.7rem;
	color: white;
	margin-bottom: 12px;
}

.project-highlight-card p {
	color: #e4ecff;
	line-height: 1.7;
	margin-bottom: 16px;
}

.projects-grid {
	max-width: 1250px;
	margin: 10px auto 0;
	padding: 10px 20px 24px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	background-color: darkblue;
	border-radius: 20px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.project-card {
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 22px;
	padding: 20px;
	color: white;
	box-shadow: 0 14px 28px rgba(0,0,0,0.16);
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.project-card-accent {
	background: rgba(255, 215, 0, 0.12);
}

.project-topline {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
}

.project-type {
	color: gold;
	font-weight: 700;
}

.project-year {
	color: #d6e1ff;
}

.project-card h2 {
	font-size: 1.35rem;
	color: white;
}

.project-card p {
	color: #e4ecff;
	line-height: 1.65;
	font-size: 0.96rem;
}

.project-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: auto;
}

.project-actions .button {
	margin: 0;
	padding: 11px 16px;
	font-size: 0.92rem;
}

.project-secondary {
	background: transparent;
	color: white;
	border: 1px solid rgba(255,255,255,0.2);
}

.project-secondary:hover {
	background: rgba(255,255,255,0.12);
	color: gold;
}

.projects-cta {
	max-width: 1050px;
	margin: 0 auto 30px;
	padding: 8px 20px 30px;
	text-align: center;
	color: white;
	background-color: darkblue;
	border-radius: 20px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.projects-cta h2 {
	font-size: 1.9rem;
	color: gold;
	margin-bottom: 10px;
}

.projects-cta p {
	max-width: 760px;
	margin: 0 auto;
	line-height: 1.7;
	color: #e4ecff;
}

@media (max-width: 1180px) {
	.projects-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.projects-hero {
		grid-template-columns: 1fr;
	}

	.projects-title {
		font-size: 2.3rem;
	}

	.projects-grid {
		grid-template-columns: 1fr;
	}
}
