@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600");
@import url("fontawesome-all.min.css");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del,
dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav,
output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	-webkit-text-size-adjust: none;
}
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; }

table {
	border-collapse: collapse;
	border-spacing: 0;
}
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
input, select, textarea {
	appearance: none;
}
html {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}
body {
	font-family: 'Quicksand', sans-serif;
	color: #201f1f;
	background: #000;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.25em;
	color: #3430300e !important;
}
#logo {
	font-family: 'Orbitron', sans-serif;
	color: #1413136e;
}
/* Links */
a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid rgba(255,255,255,0.15);
	transition: 0.3s ease;
}
a:hover {
	color: #b026ff;
	border-bottom-color: transparent;
}

/* About Me! (DONE)*/
:root {
    --text-main: #111 !important;
    --text-secondary: #312f2f !important;
    --font-main: 'Quicksand', sans-serif !important;
}
#banner {
    text-align: center;
    margin-bottom: 0;
    padding: 40px 0;
    background: linear-gradient(135deg, #ffffff, #d8dee3);
}
.about-container {
    max-width: 1150px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 80px;
	justify-content: center;
}
.about-text {
    flex: 1;
    font-family: var(--font-main);
}
.about-title {
    font-size: 58px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-main) !important;
}
.about-text p {
    font-size: 25px;
    line-height: 1.6;
	max-width: 8000px;
    color: var(--text-secondary);
}
.about-img {
  display: flex;
  flex-direction: column;
  width: auto;
  align-items: center;
}
.flip-container {
  width: 330px;
  height: 380px;
  perspective: 1200px;
  cursor: pointer;
  position: relative;
}
.flip-card {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: 0.7s ease;
}
.flip-container.flipped .flip-card {
  transform: rotateY(180deg);
}
.front, .back {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 15%;
  overflow: hidden;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.15);
  backface-visibility: hidden;
}
.front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}
.flip-container:hover img {
  transform: scale(1.1);
}
.hint {
  position: absolute;
  bottom: 12px;
  right: 5px;
  background: rgba(0,0,0,0.4);
  padding: 5px 9px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: white;
  opacity: 0;
  transition: 0.4s;
}
.flip-container:hover .hint {
  opacity: 1;
}
.back {
  background: #2f2f2f;
  color: white !important;
  display: flex;
  flex-direction: column;
  padding: 30px;
  text-align: center;
  line-height: 1.4;
  font-size: 20px;
  font-family: 'Quicksand', sans-serif !important;
  text-align: left;
  transform: rotateY(180deg);
}
.back h3{
	color: #ffffff !important;
	font-size: 27px;
	text-align: center;
	margin-top: 21px;
	margin-bottom: 20px;
}
.photo-hint {
  font-size: 17px;
  color: #515050;
  margin-top: 10px;
  font-family: var(--font-main);
  opacity: 0.8;
  transition: 0.3s;
}
.photo-hint:hover {
  opacity: 1;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-text {
        text-align: center;
    }
    .flip-container {
        width: 280px;
        height: 330px;
    }
}

/* My Courses (DONE!) */
.courses {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    justify-content: start;
}
.courses a {
    display: block;
    text-decoration: none;
    color: inherit;
	align-items: stretch;
}
.courses article {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center;         
    background: #f4f4f4;
    padding: 17px;
	height: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.173);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.courses article:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.courses .image.featured img {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    border-radius: 10px;
	display: block !important;
	margin: 0 0 2em 0;
}
.courses article h3 {
    font-size: 23px;
	font-family: 'Quicksand', sans-serif !important;
    font-weight: 610;
    text-align: center;
	color: var(--text-main) !important;
    margin: 3px 0; 
}
.courses article p {
    font-size: 17px;
    line-height: 1.5; 
    text-align: center;
    margin: 2px 0;  
    color: #312f2f;  
	font-family: 'Quicksand', sans-serif !important;
}
.courses article:hover h3 {
    color: #16cbe7 !important;
}
@media screen and (max-width: 992px) {
    .courses {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 600px) {
    .courses {
        grid-template-columns: 1fr;
    }
}

hr {
	border: none;
	height: 1px;
	background: rgba(255,255,255,0.15);
	margin: 3rem auto;
}
.container {
	margin: 0 auto;
	max-width: 1250px;
}


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

/* Large screens (≤1280px) */
@media (max-width: 1280px) {
	.col-6 { width: 60%; }
	.col-4 { width: 48%; }
	.col-3 { width: 45%; }
}

/* Tablet (≤960px) */
@media (max-width: 960px) {
	.col-6,
	.col-5,
	.col-4,
	.col-3 {
		width: 100%;
	}
	.row { gap: 20px; }
}

/* 📱 Mobile (≤768px) */
@media (max-width: 768px) {
	.row { gap: 15px; }
}

/* 📱 Small phones (≤480px) */
@media (max-width: 480px) {
	.row { gap: 10px; }
}

/* Footer */
		#footer .copyright {
			text-align: center;
			color: rgba(128, 128, 128, 0.75);
			font-size: 0.8em;
			cursor: default;
		}

			#footer .copyright a {
				color: rgba(128, 128, 128, 0.75);
			}

				#footer .copyright a:hover {
					color: rgba(212, 212, 212, 0.85);
				}

/* Sections/Article */
	section, article {
		margin-bottom: 3em;
	}

		section > :last-child, section:last-child, article > :last-child, article:last-child {
			margin-bottom: 0;
		}

		section.special > header, section.special > footer, article.special > header, article.special > footer {
			text-align: center;
		}

	.row > section, .row > article {
		margin-bottom: 0;
	}

	header {
		margin: 0 0 1em 0;
	}

		header > p {
			display: block;
			font-size: 4.5em;
			margin: 0.4em 0 0.9em 0;
			text-align: inherit;
		}

/* Actions */
	ul.actions {
		margin: 3em 0 0 0;
		list-style: none;
		padding-left: 0;
	}

		form ul.actions {
			margin-top: 0;
		}

		ul.actions li {
			display: inline-block;
			margin: 0 0.75em 0 0.75em;
			padding-left: 0;
		}

			ul.actions li:first-child {
				margin-left: 0;
			}

			ul.actions li:last-child {
				margin-right: 0;
			}

/* Menu */
	ul.menu {
		height: 1em;
		line-height: 1em;
		list-style: none;
		padding-left: 0;
	}

		ul.menu li {
			display: inline-block;
			border-left: solid 1px rgba(128, 128, 128, 0.2);
			padding-left: 1.25em;
			margin-left: 1.25em;
		}

			ul.menu li:first-child {
				border-left: 0;
				padding-left: 0;
				margin-left: 0;
			}

/* Icons */
	ul.icons {
		position: relative;
		background: rgba(128, 128, 128, 0.05);
		border-radius: 4em;
		display: inline-block;
		padding: 0.35em 0.75em 0.35em 0.75em;
		font-size: 1.25em;
		cursor: default;
		list-style: none;
	}

		ul.icons li {
			display: inline-block;
			padding-left: 0;
		}

			ul.icons li a {
				display: inline-block;
				background: none;
				width: 2.5em;
				height: 2.5em;
				line-height: 2.5em;
				text-align: center;
				border-radius: 100%;
				border: 0;
				color: inherit;
			}

				ul.icons li a:hover {
					color: #ef8376;
				}

	form label {
		display: block;
		margin: 0 0 1em 0;
	}

/* Button */
	button {
		position: relative;
		display: inline-block;
		background: #65abe5;
		color: #fff;
		text-align: center;
		border-radius: 0.5em;
		text-decoration: none;
		padding: 0.65em 3em 0.65em 3em;
		border: 0;
		cursor: pointer;
		outline: 0;
		font-weight: 350;
		-moz-transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
		-webkit-transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
		-ms-transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
		transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
	}

/* Post */
	.post.stub {
		text-align: center;
	}

		.post.stub header {
			margin: 0;
		}

/* Icons */
	.icon {
		text-decoration: none;
		text-decoration: none;
	}

		.icon:before {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			display: inline-block;
			font-style: normal;
			font-variant: normal;
			text-rendering: auto;
			line-height: 1;
			text-transform: none !important;
			font-family: 'Font Awesome 5 Free';
			font-weight: 400;
		}

		.icon:before {
			line-height: inherit;
			font-size: 1.25em;
		}

		.icon > .label {
			display: none;
		}

		.icon.solid:before {
			font-weight: 900;
		}

		.icon.brands:before {
			font-family: 'Font Awesome 5 Brands';
		}

		.icon.circled {
			position: relative;
			display: inline-block;
			background: #2b252c;
			color: #fff;
			border-radius: 100%;
			width: 3em;
			height: 3em;
			line-height: 3em;
			text-align: center;
			font-size: 1.25em;
		}

			header .icon.circled {
				margin: 0 0 2em 0;
			}

/* Wrapper */
	.wrapper {
		background: #ffffff;
		margin: 0 0 2em 0;
		padding: 6em 0 6em 0;
	}

/* Header */
	#header {
		position: relative;
		background-size: cover;
		background-position: center center;
		background-attachment: fixed;
		color: #ffffff;
		text-align: center;
		padding: 7.5em 0 2em 0;
		cursor: default;
	}

		#header:before {
			content: '';
			display: inline-block;
			vertical-align: middle;
			height: 100%;
		}

		#header .inner {
			position: relative;
			z-index: 1;
			margin: 0;
			display: inline-block;
			vertical-align: middle;
		}

		#header header {
			display: inline-block;
		}

			#header header > p {
				font-size: 1.25em;
				margin: 0;
			}

	body.homepage #header {
		height: 100vh;
		min-height: 40em;
	}

		body.homepage #header h1 {
			font-size: 4em;
		}

		body.homepage #header:after {
			content: '';
			background: #1C0920;
			display: block;
			position: absolute;
			left: 0;
			top: 0;
			width: 100%;
			height: 100%;
			opacity: 0;
			-moz-transition: opacity 2.5s ease-in-out;
			-webkit-transition: opacity 2.5s ease-in-out;
			-ms-transition: opacity 2.5s ease-in-out;
			transition: opacity 2.5s ease-in-out;
			-moz-transition-delay: 0.5s;
			-webkit-transition-delay: 0.5s;
			-ms-transition-delay: 0.5s;
			transition-delay: 0.5s;
		}

	body.homepage.is-preload #header:after {
		opacity: 1;
	}

	/* Nav */
	#nav {
		position: fixed;
		top: 0;
		left: 50%;       
		transform: translateX(-50%); 
		padding: 1.5em;
		display: flex;
		justify-content: center;
		text-align: center;
		z-index: 1000;
		width: auto; 
		white-space: nowrap;
	}
	#nav-full ul {
		display: inline-flex;
		list-style: none;
		margin: 0;
		padding: 0;
	}
	#nav-full ul li {
		margin: 0 1.7em;
	}
	#nav-full ul li a {
		text-decoration: none;
		color: #fff !important;
		font-size: 17px;
	}
	#nav-icon {
		display: block;          
		position: relative; 
		font-size: 2em;
		cursor: pointer;
		color: #fff !important;
		z-index: 1000;
	}
	#nav-icon-wrapper {
		position: fixed;       
		top: 1em;
		right: 1em;
		width: 50px;         
		height: 50px;
		background-color: rgba(0, 0, 0, 0.433); 
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 10px;   
		cursor: pointer;
		z-index: 1000;
		transition: background-color 0.3s ease;
	}
	#nav-collapsed {
		display: none;              
		position: fixed;             
		top: 80px;                   
		right: 1em;                 
		width: 200px;              
		background-color: rgba(0,0,0,0.95);  
		z-index: 2000;               
		border-radius: 8px;     
		text-align: center;     
		box-shadow: 0 5px 15px rgba(0,0,0,0.3);
	}
	#nav-collapsed ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}
	#nav-collapsed ul li {
		border-bottom: 1px solid #444;
	}
	#nav-collapsed ul li a {
		color: #fff !important;
		text-decoration: none;
		display: block;
		padding: 1em;
	}
				
/* Content */
	#content > hr {
		top: 3em;
		margin-bottom: 6em;
	}

	#content > section {
		margin-bottom: 0;
	}

/* Footer */
	#footer {
		padding: 6em 0 6em 0;
		background: #2b252c;
		color: #fff;
	}

/* Normal */
	@media screen and (max-width: 1280px) {

		/* Basic */
			body, input, textarea, select {
				font-size: 12pt;
				line-height: 1.5em;
			}

		/* Wrapper */
			.wrapper {
				padding-left: 2em;
				padding-right: 2em;
			}

		/* Header */
			#header {
				background-attachment: scroll;
			}

				#header .inner {
					padding-left: 2em;
					padding-right: 2em;
				}

		/* Banner */
			#banner {
				padding-left: 2em;
				padding-right: 2em;
			}

		/* Footer */
			#footer {
				padding-left: 2em;
				padding-right: 2em;
			}
	}

/* Narrow */
/* Narrower */
	@media screen and (max-width: 840px) {
		/* Basic */
			body, input, textarea, select {
				font-size: 13pt;
				line-height: 1.65em;
			}

			
		/* Footer */
			#footer {
				padding: 4em 2em 4em 2em;
			}
	}

/* Mobile */
	#navPanel, #titleBar {
		display: none;
	}

	@media screen and (max-width: 736px) {

		/* Basic */
			html, body {
				overflow-x: hidden;
			}

			body, input, textarea, select {
				font-size: 12.5pt;
				line-height: 1.5em;
			}

			h2 {
				font-size: 1.75em;
			}

			h3 {
				font-size: 1.25em;
			}

			hr {
				top: 3em;
				margin-bottom: 6em;
			}

		/* Section/Article */
			section, article {
				margin-bottom: 2em;
			}

				section:last-child, article:last-child {
					margin-bottom: 0;
				}

			.row > section, .row > article {
				margin-bottom: 2em;
			}

			header > p {
				font-size: 1.25em;
			}

		/* Actions */
			form ul.actions {
				margin-top: 0;
			}

			ul.actions li {
				display: block;
				margin: 0.75em 0 0 0;
			}

				ul.actions li:first-child {
					margin-top: 0;
				}

		/* Menu */
			ul.menu {
				height: auto;
				text-align: center;
			}

				ul.menu li {
					display: block;
					border: 0;
					padding: 0.75em 0 0 0;
					margin: 0;
				}

					ul.menu li:first-child {
						padding-top: 0;
					}

		/* Icons */
			ul.icons {
				font-size: 1em;
				padding: 0.35em 0.5em 0.35em 0.5em;
			}

				ul.icons li a {
					width: 2.25em;
				}

		/* Button */
			input[type="button"],
			input[type="submit"],
			input[type="reset"],
			button,
			.button {
				display: block;
				padding: 0;
				line-height: 3em;
				width: 100%;
			}

		/* Nav */
			#page-wrapper {
				-moz-backface-visibility: hidden;
				-webkit-backface-visibility: hidden;
				-ms-backface-visibility: hidden;
				backface-visibility: hidden;
				-moz-transition: -moz-transform 0.5s ease;
				-webkit-transition: -webkit-transform 0.5s ease;
				-ms-transition: -ms-transform 0.5s ease;
				transition: transform 0.5s ease;
				padding-bottom: 1px;
				
			}
				
			#navButton {
				position: fixed;
				top: 0;
				right: 0;
				width: 50px;
				height: 50px;
				z-index: 10001;
				cursor: pointer;
			}

				#navButton .toggle {
				display: block;
				width: 100%;
				height: 100%;
				font-family: 'Font Awesome 5 Free';
				font-weight: 900;
				font-size: 24px;
				color: #fff !important;
				text-align: center;
				line-height: 50px;
				}

			body.navPanel-visible #page-wrapper {
				-moz-transform: translateY(50vh);
				-webkit-transform: translateY(50vh);
				-ms-transform: translateY(50vh);
				transform: translateY(50vh);
			}

			body.navPanel-visible #navButton {
				-moz-transform: translateY(50vh);
				-webkit-transform: translateY(50vh);
				-ms-transform: translateY(50vh);
				transform: translateY(50vh);
			}

			body.navPanel-visible #navPanel {
				-moz-transform: translateY(0);
				-webkit-transform: translateY(0);
				-ms-transform: translateY(0);
				transform: translateY(0);
			}

		/* Wrapper */
			.wrapper {
				padding: 3em 1em 3em 1em;
			}

		/* Header */
			#header {
				background-attachment: scroll;
				padding: 2.5em 0 0 0;
			}

				#header .inner {
					padding-top: 1.5em;
					padding-left: 1em;
					padding-right: 1em;
				}

				#header header > p {
					font-size: 1em;
				}

				#header h1 {
					font-size: 1.75em;
				}

				#header hr {
					top: 1em;
					margin-bottom: 2.5em;
				}

			body.homepage #header {
				min-height: 0;
				padding: 5.5em 0 5em 0;
				height: auto;
			}

				body.homepage #header:before {
					display: none;
				}

				body.homepage #header h1 {
					font-size: 2.5em;
				}
		/* Nav */
			#nav {
				display: none;
			}
		/* Banner */
			#banner {
				padding: 3em 2em 3em 2em;
			}
	}

body {
  background: linear-gradient(-45deg, #000000, #0a0020, #180033, #000010);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  color: #2B252C !important;
  overflow-x: hidden;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
    text-shadow:
      0 0 5px #8a2be2,  
      0 0 10px #9400d3,
      0 0 20px #4169e1, 
      0 0 40px #7b68ee,
      0 0 80px #8a2be2;
  }
  20%, 24%, 55% {
    opacity: 0.4;
    text-shadow: none;
  }
}
#logo .flicker {
  color: #ffffff; 
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(32px, 6vw, 80px);
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  animation: flicker 3s infinite;
}
.welcome-top {
  position: fixed !important;
  color: #fff;
  font-family: 'Share Tech Mono', monospace;
  font-size: 16px;
  top: 260px;              
  left: 50%;              
  transform: translateX(-50%);
  letter-spacing: 1px;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #00ffff;
  width: 0;
  animation: typing 4s steps(40, end) forwards, blinkCursor 0.75s step-end infinite;
  z-index: 9999;
}

@keyframes typing {
  from { width: 0; }
  to { width: 40ch; }  
}
@keyframes blinkCursor {
  50% { border-color: transparent; }
}
.intro-text {
  color: #cccccc; 
  font-family:'Quicksand', sans-serif !important;
  font-size: 17px !important;
  margin-top: 20px !important;
  max-width: 1100px;
  margin: 15px auto 0 auto;
  text-align: center;
  letter-spacing: 0.3px;
}
.arrow {
  display: inline-block;
  text-decoration: none;
  border: 2px solid #bf46db; 
  border-radius: 50%;
  width: 65px;
  height: 65px;
  color: #9f34dd;
  font-size: 30px;
  text-align: center;
  line-height: 55px;
  box-shadow: 0 0 10px #7f3de1, 0 0 20px #ff00ff, 0 0 20px #00ffff;
  animation: float 2s ease-in-out infinite;
  transition: all 0.3s ease;
  margin-top: 50px;
}
.arrow:hover {
  color: #00ffff;
  box-shadow: 0 0 10px #00ffff, 0 0 30px #b026ff;
  transform: scale(1.1);
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Card Container (DONE!)*/
.reel {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 20px 25px;
  overflow-x: auto;
  margin: 30px 0 !important;
}
.side-expand-card {
    background: rgb(241, 241, 241);
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;              
    flex-direction: row;
    width: 345px;
    height: 740px;
    overflow: hidden;           
    flex-shrink: 0;
	transition: transform 0.28s;
  	transition: width 0.3s ease, transform 0.3s ease !important;
}
.side-expand-card.active {
    width: 760px;               
}
.side-expand-card .card-content {
    width: 345px;               
    padding: 15px;
    flex-shrink: 0;
}
.side-panel {
    width: 0;                   
    opacity: 0;                
    padding: 0;                
    overflow: hidden;           
    transition: width 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
}
.side-expand-card.active .side-panel {
    opacity: 1;
}
.side-expand-card .side-panel .year {
	font-size: 30px ;
	font-weight: 900 ;
	margin-top: 35px ;
	margin-bottom: 10px;
	text-align: center;
}
.side-expand-card .side-panel .edu {
	text-align: center;
	margin-bottom: 40px;
	line-height: 1.4;
	margin-top: 8px;
}
.side-expand-card .side-panel .edut {
	font-size: 28px;
	font-weight: 900;
}
.side-expand-card .side-panel .pos {
	font-weight: 800;
	font-size: 28px;
	margin-bottom: 10px;
	margin-top: 50px;
}
.side-expand-card.special.active {
  width: 1065px !important;
}
.side-expand-card.special.active .side-panel {
    width: 1065px;   
}
.side-expand-card .side-panel .panel-inner {
  max-height: 300px;      
  overflow-y: auto;
  box-sizing: border-box;
}
.carousel .card-wrapper h3 {
  color: #101010 !important;
  font-weight: 900; 
  font-size: 30px;
  font-family: 'Quicksand', sans-serif !important;
  text-align: center;
  margin-top: 80px;
}
.card-wrapper p {
  color: #101010 !important;
  margin-top: 25px;
  text-align: center;
  font-family: 'Quicksand', sans-serif !important;
  line-height: 1.6;
  font-size: 20px;
}
.side-expand-card .side-panel ul {
  font-size: 17px !important;
  line-height: 1.6;
}
.side-expand-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}
.side-expand-card:hover { transform: scale(1.03); z-index: 40; }
.side-expand-card {position: relative;}
.side-expand-card.active .side-panel {
  width: 400px;   
  height: 750px;  
  padding: 40px;
}
.side-expand-card .side-panel .panel-inner {
  max-height: 400px;   
  overflow-y: auto;
}
.side-expand-card .side-panel .panel-inner::-webkit-scrollbar {
  width: 80px;
}
.carousel {
  overflow-x: auto;  
  scrollbar-width: thick !important;
}

/*Skills*/
@keyframes gridMove { to{background-position:100px 100px,-100px -100px;} }
.title {
  text-align:center; 
  color:rgb(0, 0, 0) !important; 
  font-size:70px; 
  margin-top: 10px;
  margin-bottom: 60px;
  font-weight: 10;
}
.skills-container{display:flex;
	flex-wrap: wrap;
	gap: 50px;
	justify-content: center;
}
.skills-column{flex:1 1 300px;}
.column-title{
  color:rgb(2, 215, 215) !important;
  text-align:center;
  font-size: 35px;
  margin-bottom:25px;
}
.skill{
  margin-bottom:35px; 
  transition:transform .4s ease,filter .4s ease; 
  cursor:default;
}
.skill:hover{transform:translateY(-8px) scale(1.02); filter:none;}
.skill:hover .skill-bar {
  box-shadow:0 0 15px rgb(164, 255, 255), 0 0 25px rgb(210, 129, 210);
}
.skill-top{display:flex;
	align-items:center;
	gap:10px;
	margin-bottom:5px;
}
.skill-icon{font-size:2em;
	color:rgb(251, 62, 251);
	margin-bottom: 8px;
}
.skill-name{
	font-size: 18px; 
	font-weight: bold;
	color:rgb(0, 0, 0);
	margin-left: 2px;
}
.skill-percent{font-size:17px; 
	color: rgb(0, 0, 0);
	margin-left: 5px;
}
.skill-bar{
    width: 100%;
    height: 15px;
	background: rgba(255,255,255,0.05);
    border-radius: 7px;
	overflow: hidden;
	position: relative;
    box-shadow:0 0 3px rgb(0, 113, 170) inset,0 0 10px rgb(255, 255, 255) inset;
}
.skill-fill{
  height:100%;
  width:0;
  border-radius:8px;
  background:linear-gradient(270deg,rgb(244, 117, 244),rgb(86, 231, 231),rgb(244, 117, 244));
  background-size:200% 100%;
  animation:gradientMove 3s linear infinite,pulse 1.5s ease-in-out infinite alternate;
}
@keyframes gradientMove{0%{background-position:0 0;}100%{background-position:150% 0;}}
@keyframes pulse{0%{opacity:.7;}100%{opacity:1；}}
@keyframes glitch{
  0%,50%,100%{transform:translate(0,0);opacity:1;text-shadow:0 0 5px rgb(70, 241, 241),0 0 10px rgb(244, 117, 244);}
  10%{transform:translate(-2px,-1px);opacity:.9;text-shadow:0 0 5px rgb(244, 117, 244),0 0 10px rgb(70, 241, 241);}
  20%{transform:translate(2px,1px);}
  30%{transform:translate(-1px,2px);}
  40%{transform:translate(1px,-2px);}
  60%{transform:translate(1px,1px);}
  70%{transform:translate(-1px,-1px);}
  80%{transform:translate(1px,-1px);}
  90%{transform:translate(-1px,1px);}
}

/* Contact layout (DONE!) */
.contact-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 0 auto; 
  max-width: 1180px; 
  text-align: center;
}
.contact{
	text-align: center;
}
.contact-form {
  flex: 1.4;
  margin-left: 90px;
}
.contact-msg {
  font-size: 15px;
  color: #b8b7b7;
  margin-bottom: 50px;
  border-radius: 0.5em;
}
.contact-form label {
  margin-top: 25px;
  font-weight: bold;
  font-size: 20px;
  color: #e9e9e9;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  background: #edeaea !important;
  border: 1px solid #ccc;
  border-radius: 0.5em;
}
.contact-form textarea {
  height: 150px;
}
.btn-row {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}
.send-btn, .clear-btn {
  border: 2px solid #777;
  padding: 10px 25px;
  background: none;
  cursor: pointer;
  margin-bottom: 50px;
}
.send-btn:hover, .clear-btn:hover {
  background: #85c9e8;
  color: #000;
}
.contact-info {
  flex: 1.4;
}
.contact-info h3 {
  margin-top: 20px;
  color:#e9e9e9 !important;
  margin: 20px 0 15px;
  font-weight: bold;
  font-size: 20px;
}
.contact-info p {
  color: #ccc4c4;
  font-size: 18px;
  margin: 0 0 3em 0;
}
.side-panel ul {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;  
}
.side-panel ul li {
  display: list-item;
  margin-bottom: 5px;  
}


.welcome-top {
    position: fixed !important;
    top: 270px;
}

/* Tablet */
@media (max-width: 1024px) {
  .welcome-top {
    top: 150px;
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .welcome-top {
    top: 80px;
    font-size: 12px;
  }
  .about-title {
    font-size: 35px;
  }
  .about-text p {
    font-size: 18px;;
  }
  .flip-container {
    width: 280px;
    height: 310px;
  }
  .back p{
	font-size: 16px;
	line-height: 1.5;
  }
  .back h3{
	font-size: 21px;
  }
  .title {
    font-size: 35px !important;
  }
  #skills .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .column-title {
    font-size: 26px !important;
  }
  .courses {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
  .contact-form, .contact-info {
    width: 90% !important;
    margin: 0 auto !important;
  }
  .send-btn, .clear-btn{
	height: 60px;
	line-height: 1.3;
  }
  #nav-full {
    display: none !important;
  }
  .reel {
    gap: 15px;
    padding: 10px 12px;
  }

  .side-expand-card {
    width: 240px;
    height: 500px;
  }

  .side-expand-card.active {
    width: 530px;   /* Smaller expand size on phone */
  }

  .side-expand-card.special.active {
    width: 790px !important;
  }

  .side-expand-card .card-content {
    width: 240px;
    padding: 10px;
  }

  .side-expand-card img {
    height: 250px;
    border-radius: 8px;
  }

  .side-panel {
    padding: 20px;
  }

  .side-expand-card.active .side-panel {
    width: 2400px;
    height: 520px;
  }

  .side-panel .panel-inner {
    max-height: 250px;
  }

  .side-panel p, .side-panel ul li {
    font-size: 14px !important;
	margin: 0;
  }
   .side-panel ul li{
	font-size: 12.5px !important;
  }

  .carousel {
    scrollbar-width: thin;
  }

  .carousel .card-wrapper h3 {
    font-size: 22px;
    margin-top: 30px;
  }

  .card-wrapper p.summary {
    font-size: 14px;
    margin-top: 10px;
  }
  #home {
  min-height: 100vh;   
  display: flex;
  flex-direction: column;
  justify-content: center;  
  align-items: center;      
  position: relative;      
}
}

#vanta-bg {
    width: 100%;
    min-height: 100vh; 
    position: relative;
}
.programs-container {
    padding-top: 100px; 
}
#programs-wrapper {
    width: 100%;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px 40px 40px;
    border-radius: 12px;
	margin: 0 auto; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
	height: auto !important;
}
.program-list {
    display: grid;
    grid-template-columns: 1fr;   
    justify-items: center;        
    gap: 20px;                    
    width: 100%;
	margin-bottom: 50px;
}
.program-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.programd {
    font-weight: bold;
	font-size: 17px;
}
.programa {
    margin-top: 5px;   
	margin-bottom: 25px;
    line-height: 1.6;
    padding-left: 10px; 
}

@media (max-width: 768px) {
    #nav-full {
        display: none; /* hide full nav */
    }

    #nav-icon-wrapper {
        display: flex; /* show menu icon */
    }

    .left-side, .right-side {
        width: 100%;
    }

    #nav-full {
        display: block;
    }

    #nav-icon-wrapper {
        display: none;
    }
}
.card-title {
    text-align: center !important;
    width: 100%;
    margin-bottom: 30px;
	margin-top: 10px;
	font-size: 38px;
}
.card-contentt {
    display: flex;
    gap: 25px;
}
.left {width: 35%;}
.right {width: 65%;}
.left img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
}
.projects-container {
    padding-top: 100px; 
}
#projects-wrapper {
    width: 100%;
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px 40px 40px;
    border-radius: 12px;
	margin: 0 auto; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
	height: auto !important;
}
.project-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.project-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.project-image video {
  width: 70%;
  height: auto;        
  object-fit: cover;   
  display: block;
  margin: 0 auto;
}

.project-content {
  padding: 24px;
}

.project-title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 9px;
  margin-top: 10px;
  color: #3c3c3c !important;
  text-align: center; 
}
.project-image iframe {
    width: 60%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    display: block;
    margin: 0 auto;
    border-radius: 16px;
    border: none;
}
.project-description{
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
  text-align: center; 
}
.btn-wrapper {
  margin-top: 18px;
  text-align: center;  
}

.more-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #000;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.more-btn:hover {
  transform: translateY(-2px);
  background: #add5ff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
