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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.72)), url("7.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: #f7f1d0;
	min-height: 100vh;
	overflow-x: hidden;
}

.heroLink {
	color: #ffe57a;
	text-decoration: none;
	transition: all 0.5s ease;
}

.fa-seedling {
	color: lime;
	transition: all 0.5s ease;
}

.heroLink span:hover, .heroLink .fa-seedling:hover {
	background: none;
}

.heroLink:hover span, .heroLink:hover .fa-seedling {
	text-shadow: 0 0 15px yellow;
}

.siteHeader {
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  backdrop-filter: blur(10px);
	background: rgba(0, 0, 0, 0.35);
  padding: 20px 6%;
  z-index: 1000;
}

.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 24px;
	font-weight: bold;
	color: #ffe57a;
	text-shadow: 0 0 12px rgba(255, 215, 0, 0.45);
}

.topNav {
  display: flex;
  gap: 24px;
}

.topNav a {
  font-size: 17px;
  text-decoration: none;
  color: #f8edb0;
  transition: 0.25s;
}

.topNav a:hover {
	color: white;
	text-shadow: 0 0 12px gold;
}

.backgroundOverlay {
	position: fixed;
	inset: 0;
	background:
		radial-gradient(circle at top left, rgba(255, 215, 0, 0.08), transparent 30%),
		radial-gradient(circle at bottom right, rgba(255, 215, 0, 0.06), transparent 25%);
	pointer-events: none;
	z-index: 0;
}


.mainWrapper {
	position: relative;
	z-index: 1;
	width: min(1200px, 92%);
	margin: 0 auto;
	padding: 40px 0 80px;
}

.heroSection {
	display: grid;
	grid-template-columns: 1.3fr 0.9fr;
	gap: 28px;
	align-items: center;
	min-height: 78vh;
	padding: 40px 0;
}

.heroTag,
.sectionMiniTitle,
.smallLabel {
	color: #ffd84d;
	letter-spacing: 1px;
	font-size: 15px;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.heroText h1 {
	font-size: clamp(46px, 7vw, 82px);
	line-height: 0.95;
	color: #fff6c8;
	text-shadow: 0 0 25px rgba(255, 215, 0, 0.38);
	margin-bottom: 12px;
}

.heroText h2 {
	font-size: clamp(24px, 4vw, 42px);
	color: #ffd83d;
	margin-bottom: 20px;
}

.heroIntro {
	max-width: 680px;
	font-size: 19px;
	line-height: 1.7;
	color: #f6edc4;
}

.heroButtons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.primaryBtn,
.secondaryBtn,
.visitBtn {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	transition: 0.25s;
}

.primaryBtn {
	padding: 14px 24px;
	background: linear-gradient(135deg, #ffe066, #d6a91a);
	color: #141414;
	font-weight: bold;
	box-shadow: 0 0 18px rgba(255, 215, 0, 0.3);
}

.primaryBtn:hover {
	transform: translateY(-2px);
	box-shadow: 0 0 22px rgba(255, 215, 0, 0.45);
}

.secondaryBtn {
	padding: 14px 24px;
	border: 1px solid rgba(255, 215, 0, 0.42);
	color: #fff0ad;
	background: rgba(255, 255, 255, 0.04);
}

.secondaryBtn:hover {
	background: rgba(255, 215, 0, 0.08);
	border-color: rgba(255, 215, 0, 0.7);
}

.heroCard,
.glassCard,
.skillCard,
.projectCard,
.previewPanel {
	background: rgba(10, 10, 10, 0.56);
	border: 1px solid rgba(255, 215, 0, 0.18);
	border-radius: 24px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(12px);
}

.school {
	width: 90%;
}

.heroCard {
	padding: 22px;
}

.heroCardInner {
	padding: 18px;
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(255, 215, 0, 0.12), rgba(255, 255, 255, 0.02));
}

.heroCardInner h3 {
	font-size: 28px;
	color: #fff2ae;
	margin-bottom: 14px;
}

.heroCardInner ul {
	padding-left: 18px;
	line-height: 1.9;
	color: #f5efca;
}

.status {
	display: flex;
	width: 90%;
	justify-content: space-between;
	padding-bottom: 15px;
	color: #fff1a8;
}

.locDot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: goldenrod;
  border-radius: 50%;
  margin-right: 6px;
  position: relative;
  top: -1px;
  /* animation: dotPulse 1s infinite ease-in-out;  */
}

.heroSubLocation, .heroSubStatus {
	padding: 5px 10px;
	background: linear-gradient(180deg, rgba(255, 215, 0, 0.12), rgba(255, 255, 255, 0.02));
	border-radius: 8px;
}

.heroSubStatus {
	border: 0.5px solid #161616db;
	color: #d4a800;
}

.statusDot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #4caf50;
  border-radius: 50%;
  margin-right: 6px;
  position: relative;
  top: -1px;
  animation: dotPulse 1s infinite ease-in-out; 
}

@keyframes dotPulse {
	0% {
		box-shadow: 0 0 15px lime;
	}
	50% {
		transform: scale(1.5);
		box-shadow: 0 0 5px lime;
	}
	100% {
		box-shadow: 0 0 15px lime;
		transform: scale(1.7);
	}
}

.heroMetrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 32px;
  width: 90%;
}

.metricBox {
  background: #161616db;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.metricVal {
  font-size: 28px;
  font-weight: 700;
  color: #d4a800;
  line-height: 1;
  text-align: center;
}

.metricValSm {
  font-size: 18px;
  padding-top: 4px;
}

.metricLabel {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* color: #666; */
  color: rgba(255, 255, 255, 0.717);
  font-weight: 500;
  text-align: center;
}

.metricBox span:hover {
	background: none;
}

.contentSection {
	padding: 60px 0;
}

.sectionTitleWrap {
	margin-bottom: 24px;
}

.sectionTitle {
	font-size: clamp(28px, 5vw, 44px);
	color: #fff5bf;
	text-shadow: 0 0 18px rgba(255, 215, 0, 0.18);
}

.aboutGrid,
.contactGrid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.glassCard {
	padding: 26px;
	line-height: 1.8;
	color: #f2ecc7;
}

.companyDuration {
	display: flex;
	/* justify-content: space-between; */
	gap: 20px;
	width: 100%;
}

.award {
	position: relative;
	padding: 3px 12px;
	border-radius: 999px;
	border: 1px solid rgba(255, 215, 0, 0.2);
	font-size: 14px;
	color: #ffe28a;
	background: rgba(255, 215, 0, 0.08);
	overflow: hidden;
}

.award::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	border-radius: inherit;

	background: linear-gradient(
		120deg,
		transparent,
		rgba(255, 255, 255, 0.4),
		transparent
	);

	transition: none;
}

.award:hover::before {
	animation: shimmer 0.8s ease forwards;
}

@keyframes shimmer {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

.infoTitle {
	font-size: 22px;
	color: #ffe171;
	margin-bottom: 12px;
}

.infoList {
	padding-left: 18px;
	line-height: 1.9;
}

.skillsGrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.skillCard {
	padding: 24px;
	transition: transform 0.25s, border-color 0.25s;
}

.skillCard:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 215, 0, 0.4);
}

.skillCard h3 {
	font-size: 21px;
	margin-bottom: 12px;
	color: #ffe171;
}

.skillCard p {
	line-height: 1.7;
	color: #f5eecb;
}

.projectsLayout {
	display: grid;
	grid-template-columns: 1.2fr 1.8fr;
	/* grid-template-columns: 0.1fr 1fr 1.8fr; */
	gap: 5px;
	align-items: start;
}

.projectsList {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.projectCard {
	padding: 22px;
	transition: transform 0.25s, border-color 0.25s, box-shadow 0.5s;
	/* cursor: pointer; */
}

.skillCard:hover {
	border-color: rgba(255, 215, 0, 0.42);
	box-shadow: 1px 1px 20px rgba(233, 233, 233, 0.396);
}

.projectCard:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 215, 0, 0.42);
	box-shadow: 1px 1px 20px rgba(233, 233, 233, 0.396);
}

.projectTopLine {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 12px;
}

.visitButtonContent {
	display: flex; 
	flex-direction: row; 
	gap: 6px;
}

.projectTopLine h3 {
	font-size: 25px;
	color: #fff1a8;
}

.school h3 {
	color: #fff1a8;
}

.schoolDate {
	font-size: 13px;
	color: #aaa;
	margin-bottom: 10px;
	transition: all 0.5s ease;
}

.projectText p {
	line-height: 1.75;
	color: #eee6bf;
	margin-bottom: 14px;
}

.projectTextUl {
	padding-left: 20px;
	padding-bottom: 15px;
	color: #eee6bf;
}

.projectTags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.projectTags span {
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(255, 215, 0, 0.12);
	border: 1px solid rgba(255, 215, 0, 0.2);
	font-size: 14px;
	color: #ffe28a;
}

span {
  transition: all 0.5s ease;
}

span:hover {
  	background: rgba(255, 217, 0, 0.357);
    border-radius: 999px;
}

.visitBtn {
  padding: 7px 12px;
  background: transparent;
  color: #ffd84d;
  font-weight: bold;
  white-space: nowrap;
  border: 1px solid rgba(255, 215, 0, 0.4);
  transition: all 0.25s ease;
}

.visitBtn:hover {
  background: rgba(255, 215, 0, 0.12);
  border-color: rgba(255, 215, 0, 0.8);
  color: #ffe57a;
  transform: translateY(-4px);
  box-shadow: 1px 5px 10px rgba(233, 233, 233, 0.184);
}

.previewPanel {
	position: sticky;
	top: 30%;
	padding: 18px;
	min-height: 480px;
  /* min-width: 900px; */
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.previewDefault {
	text-align: center;
	color: #f3eac2;
	padding: 20px;
}

.previewDefault h3 {
	font-size: 30px;
	color: #ffe47f;
	margin-bottom: 10px;
}

.previewBox {
	display: none;
	width: 100%;
	height: 440px;
	border-radius: 18px;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	box-shadow: 0 0 28px rgba(255, 215, 0, 0.12);
}

.fitFrame {
  background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #111;
}

#journeyLedgerImageReview {
	background-image: url("./photoReview/Journeys_Desktop.png");
}

#receiveFlowImageReview {
  	background-image: url("./photoReview/receiveflow.png");
}

#marketCostImageReview {
	background-image: url("./photoReview/marketcost.JPG");
}

#uniformsVoucherImageReview {
	background-image: url("./photoReview/uniformVoucher.png");
}

#utaSlotTrackerImageReview {
	background-image: url("./photoReview/utaslottracker.JPG");
}

#naturalizationTestImageReview {
	background-image: url("./photoReview/uscis.JPG");
}

#timeLogsImageReview {
	background-image: url("./photoReview/timeLogs.png");
}

#beachThemeToggleImageReview {
	background-image: url("./photoReview/beachThemeToggle.png");
}

.contactItem {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
	color: #f5edc4;
	font-size: 18px;
}

.contactItem i {
	color: #ffd84d;
	width: 24px;
	text-align: center;
}

.contactAffect {
  text-decoration: none; 	
  color: #f5edc4;
	font-size: 18px;
  padding: 0 10px;
}

.contactAffect:hover {
  text-decoration: underline;
}

.siteFooter {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 24px 0 36px;
	color: #f2e6a6;
	font-size: 17px;
}

.mainWrapper #projects {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	max-width: none;
	padding: 40px 5vw 80px;
}

.timelineDotProject {
	left: -11px;
	top: 33px;
	width: 20px;
	height: 20px;
	background-image: url(photoReview/diamond2.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 150%;
	background-position: left 30% top 20%;
	box-shadow: 0 0 10px white;
	rotate: 45deg;
	border: .5px outset silver;
}

#projectCount {
  color: gold; 
  /* filter: drop-shadow(0px 0px 5px yellow);  */
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; 
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  width: 5%;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-bottom: 15px;
  position: sticky;
  top: 45%;
  z-index: 999;
  left: 0;

	padding: 2px 12px;
  background: rgba(0, 0, 0, 0.144);
  backdrop-filter: blur(8px);
  /* border: 1px solid rgba(255, 215, 0, 0.2); */
  border-radius: 16px;
  gap: 5px;
}

.projectsLayoutCover {
	border-left: 2px solid rgba(255, 215, 0, 0.3);
	margin-left: 2.4%;
	padding-left: 40px;
}

.timeline {
	position: relative;
	margin-left: 30px;
	border-left: 2px solid rgba(255, 215, 0, 0.3);
}

.timelineItem {
	position: relative;
	margin-bottom: 40px;
	padding-left: 20px;
}

.timelineDot {
	position: absolute;
	left: -11px;
	top: 33px;
	width: 20px;
	height: 20px;
	background-image: url(photoReview/diamond2.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 150%;
	background-position: left 30% top 20%;
	box-shadow: 0 0 10px white;
	rotate: 45deg;
	border: .5px outset silver;
}

.timelineItemSub {
	position: relative;
	padding-left: 30px;
	border-left: 2px solid rgba(255, 215, 0, 0.3);
}

.timelineDotSub1, .timelineDotSub2 {
	position: absolute;
	left: -7px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-image: url(photoReview/diamond2.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 150%;
	background-position: left 30% top 20%;
	opacity: 0.5;
	border: 0.5px outset silver;
}

.timelineDotSub1 {
	top: 19.7%;
	transition: all 0.7s ease;
}

.timelineDotSub2 {
	top: 71.5%;
	background: rgba(255, 217, 0, 0.565);
	transition: all 0.7s ease;
}

.role1:hover ~ .timelineDotSub1 {
	animation: glowPulse 2s infinite ease-in-out;
	transform: scale(1.4);
}

.role2:hover ~ .timelineDotSub2 {
	animation: glowPulse 2s infinite ease-in-out;
	transform: scale(1.4);
}

@keyframes glowPulse {
	0% {
		box-shadow: 0 0 5px white;
		background: white;
		background-image: url(photoReview/diamond2.png);
		background-position: center;
		background-repeat: no-repeat;
		background-size: 150%;
		background-position: left 30% top 20%;
		opacity: 1;
	}

	50% {
		box-shadow: 0 0 30px white;
		background: rgba(255, 217, 0, 0.565);
		background-image: url(photoReview/diamond2.png);
		background-position: center;
		background-repeat: no-repeat;
		background-size: 150%;
		background-position: left 30% top 20%;
		opacity: 1;
	}

	100% {
		box-shadow: 0 0 5px white;
		background: white;
		background-image: url(photoReview/diamond2.png);
		background-position: center;
		background-repeat: no-repeat;
		background-size: 150%;
		background-position: left 30% top 20%;
		opacity: 1;
	}
}

.glassCard:hover .timelineItemSub h3 {
	text-shadow: 0 0 25px yellow;
}

.roleBlock {
	margin-top: 20px;
	padding-left: 10px;
}

.roleBlock h4 {
	margin: 0;
	font-size: 18px;
	color: rgba(194, 219, 2, 0.524);
	transition: all 0.5s ease;
}

.roleBlock:hover h4 {
	background-image: url(photoReview/diamond2.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 180%;
	background-position: right 30% top 10%;
	opacity: 1;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.roleDate {
	font-size: 13px;
	color: #aaa;
	margin-bottom: 10px;
	transition: all 0.5s ease;
}

.role1:hover .roleDate, .role2:hover .roleDate {
	color: rgba(255, 255, 255, 0.952);
}

.noUnderline {
	text-decoration: none;
}

.expList {
	padding-left: 50px;
}

.projectNavigation {
	color: #f7f1d0;
	color: rgb(126, 107, 3);
	transition: all 0.5s ease;
}

.projectNavigation:hover {
	color: gold;
	text-shadow: 0 0 5px rgb(255, 255, 255);
}

.highlight {
	font-weight: 600;
	color: #ffe066;
	background: rgba(255, 215, 0, 0.08);
	padding: 2px 6px;
	border-radius: 6px;
}

/* .highlight:hover {
	color: gold;
	border-radius: 5px;
	background: rgba(255, 217, 0, 0.071);
} */

.eduTimeline {
	margin-bottom: 15px;
}


#about,
#education,
#capstone,
#experience,
#skills,
#contact,
#receiveFlow,
#uniformVoucher {
	scroll-margin-top: 37px;
}

#projects {
	scroll-margin-top: 120px;
}

#hero {
	scroll-margin-top: 150px;
}

#receiveFlow, #uniformVoucher, #journeyLedger {
	scroll-margin-top: 200px;
}

#contactPanel {
	position: fixed;
	display: flex;
	flex-direction: column;
	left: 1.5%;
	top: 20%;
	height: 100vh;
	z-index: 9999;
}

.topLeftVertical {
	height: 30%;
	background-color: rgba(255, 215, 0, 0.3);
	width: 5%;
	transform: translateY(-50px);
	margin-left: 40%;
	border-top-left-radius: 90%;
	border-top-right-radius: 90%;
	box-shadow: 0 -10px 5px rgba(255, 255, 0, 0.453);
}

.bottomLeftVertical {
	height: 30%;
	background: linear-gradient(rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.3), rgba(255, 255, 255, 0.611));
	width: 5%;
	transform: translateY(50px);
	margin-left: 40%;
	border-top-left-radius: 90%;
	border-top-right-radius: 90%;
	box-shadow: 0 -10px 5px rgba(255, 255, 0, 0.453);
}

.contactVerticalList {
	display: flex;
	flex-direction: column;
	gap: 20px;
	transform: scale(140%);
}

.iconVertical {
	background-image: url(photoReview/diamond2.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 180%;
	background-position: right 30% top 10%;
	opacity: 1;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.5s ease;
}

.iconVertical:hover {
	filter: drop-shadow(0 0 5px white);
	transform: translateY(-4px);
}

.about-text p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.highligh-text {
  margin-bottom: 16px;
  line-height: 1.7;
}

.projectTextUl li {
	  margin-bottom: 10px;
  line-height: 1;
}






















@media (max-width: 1050px) {
	.heroSection,
	.projectsLayout,
	.skillsGrid,
	.aboutGrid,
	.contactGrid {
		grid-template-columns: 1fr;
	}

	.previewPanel {
		position: relative;
		top: 0;
		min-height: 360px;
	}

	.skillCard {
		width: 100%;
	}
}










@media (max-width: 768px) {
	body {
		margin: 0;
	}

	body::before {
		content: "";
		position: fixed;
		inset: 0;

		background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.72)), url("7.jpg");
		background-size: 250%;
		background-position: right 20% top 80%;
		background-repeat: no-repeat;
		z-index: -1;
	}

	#contactPanel {
		display: none;
	}

	.status {
		display: flex;
		flex-direction: column;
		gap: 10px;
		width: 90%;
		justify-content: space-between;
		padding-bottom: 15px;
		color: #fff1a8;
	}

	.heroMetrics {
    	grid-template-columns: repeat(2, 1fr);
    	width: 100%;
  	}

	.siteHeader {
		flex-direction: column;
		gap: 14px;
		padding: 18px 5%;
	}

	.topNav {
		gap: 14px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.heroSection {
		min-height: auto;
		padding-top: 10px;
	}

	.heroIntro {
		font-size: 17px;
	}

	.projectTopLine {
		flex-direction: column;
		align-items: flex-start;
	}

	.previewBox {
		height: 260px;
	}

	.mainWrapper {
		width: min(94%, 1200px);
	}

	.timelineDotSub1 {
		/* top: 156.5px; */
		top: 13.6%;
	}

	.timelineDotSub2 {
		top: 81.4%;
	}

	.companyDuration {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	gap: 20px;
	width: 100%;
	}

	.projectsLayoutCover {
		margin-left: 3%;
		padding-left: 30px;
	}
}