
:root {
	--dark-blue: #0a192f;
	--medium-blue: #112240;
	--light-blue: #233554;
	--accent: #64ffda;
	--white: #e6f1ff;
	--light-gray: #8892b0;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body {
	background-color: var(--dark-blue);
	color: var(--white);
	line-height: 1.6;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Enhanced About Text Styles */
.about-intro {
	margin-bottom: 25px;
	position: relative;
}

.about-intro h3 {
	font-size: 1.8rem;
	color: var(--accent);
	margin-bottom: 10px;
	font-weight: 600;
}

.accent-line {
	width: 60px;
	height: 3px;
	background: var(--accent);
	margin-bottom: 20px;
}

.about-text p {
	margin-bottom: 25px;
	color: var(--light-gray);
	line-height: 1.8;
	position: relative;
}

.about-text .highlighted {
	background: rgba(100, 255, 218, 0.05);
	padding: 20px;
	border-left: 3px solid var(--accent);
	border-radius: 0 5px 5px 0;
	margin-bottom: 30px;
}

.timeline-item {
	display: flex;
	margin-bottom: 30px;
	position: relative;
}

.timeline-item::before {
	content: '';
	position: absolute;
	left: 15px;
	top: 30px;
	bottom: -30px;
	width: 2px;
	background: rgba(100, 255, 218, 0.3);
}

.timeline-item:last-child::before {
	display: none;
}

.timeline-marker {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--accent);
	color: var(--dark-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	flex-shrink: 0;
	z-index: 1;
}

.timeline-content {
	flex: 1;
}

.passion-statement {
	background: linear-gradient(145deg, var(--medium-blue), var(--dark-blue));
	padding: 25px;
	border-radius: 8px;
	position: relative;
	margin-top: 20px;
	border: 1px solid rgba(100, 255, 218, 0.1);
}

.quote-icon {
	position: absolute;
	top: -15px;
	left: 20px;
	width: 30px;
	height: 30px;
	background: var(--accent);
	color: var(--dark-blue);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.passion-statement p {
	margin-bottom: 0;
	font-style: italic;
	padding-left: 20px;
}

/* Animation for timeline items */
.timeline-item {
	opacity: 0;
	transform: translateX(-20px);
	transition: all 0.5s ease;
}

.timeline-item.animate {
	opacity: 1;
	transform: translateX(0);
}

/* Enhanced profile image styles */
.about-image {
	position: relative;
	text-align: center;
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 25, 47, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	border-radius: 5px;
}

.image-overlay span {
	color: var(--accent);
	font-weight: 600;
	font-size: 1.2rem;
	transform: translateY(20px);
	transition: transform 0.3s ease;
}

/* Header & Navigation */
header {
	background-color: rgba(10, 25, 47, 0.95);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	padding: 20px 0;
	backdrop-filter: blur(10px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--accent);
	display: flex;
	align-items: center;
}

.logo::before {
	content: '<';
	color: var(--accent);
	font-weight: 300;
}

.logo::after {
	content: '/>';
	color: var(--accent);
	font-weight: 300;
}

.nav-links {
	display: flex;
	list-style: none;
}

.nav-links li {
	margin-left: 30px;
	position: relative;
}

.nav-links a {
	color: var(--white);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
	font-size: 0.9rem;
	letter-spacing: 0.5px;
}

.nav-links a::before {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent);
	transition: width 0.3s;
}

.nav-links a:hover::before {
	width: 100%;
}

.nav-links a:hover {
	color: var(--accent);
}

.header-social-links {
	display: flex;
	margin-left: 30px;
}

.header-social-links a {
	color: var(--white);
	font-size: 1.2rem;
	margin-left: 15px;
	transition: color 0.3s, transform 0.3s;
}

.header-social-links a:hover {
	color: var(--accent);
	transform: translateY(-2px);
}

/* Hero Section */
.hero {
	padding: 180px 0 100px;
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: url('images/03-laptop.jpg') no-repeat center center/cover;
	opacity: 0.2;
	clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-content {
	max-width: 700px;
	margin-left: 50px;
	position: relative;
	z-index: 2;
}

.hero h1 {
	font-size: 4rem;
	margin-bottom: 20px;
	line-height: 1.1;
}

.typed-text {
	color: var(--accent);
	vertical-align: top;
	line-height: 1em;
	position: relative;
	display: inline-block;
	min-width: 0ch; /* keeps space even when empty */
}

.typed-text::after {
	content: '|';
	position: absolute;
	right: -10px;
	color: var(--accent);
	animation: blink 0.7s infinite;
}

@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}

.hero h2 {
	font-size: 2.5rem;
	color: var(--light-gray);
	margin-bottom: 30px;
}

.hero p {
	max-width: 600px;
	margin-bottom: 40px;
	color: var(--light-gray);
	font-size: 1.1rem;
	line-height: 1.8;
}

.btn {
	display: inline-block;
	padding: 15px 35px;
	background-color: transparent;
	color: var(--accent);
	border: 1px solid var(--accent);
	border-radius: 4px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0%;
	height: 100%;
	background-color: rgba(100, 255, 218, 0.1);
	transition: all 0.3s;
	z-index: -1;
}

.btn:hover::before {
	width: 100%;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(100, 255, 218, 0.2);
}

/* Sections */
section {
	padding: 100px 0;
}

.section-title {
	margin-bottom: 80px;
	position: relative;
	display: flex;
	align-items: center;
}

.section-title h2 {
	font-size: 2.5rem;
	color: var(--white);
	display: inline-block;
	margin-right: 20px;
}

.section-title::after {
	content: '';
	display: block;
	width: 300px;
	height: 1px;
	background-color: var(--light-blue);
	margin-left: 20px;
}

/* About Section */
.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.about-text {
	position: relative;
}

.about-image {
	position: relative;
	text-align: center;
}

.about-image img {
	width: 100%;
	max-width: 400px;
	border-radius: 5px;
	filter: grayscale(0.3);
	transition: all 0.5s;
}

.about-image::after {
	content: '';
	position: absolute;
	top: 20px;
	left: 20px;
	right: -20px;
	bottom: -20px;
	border-radius: 5px;
	z-index: -1;
	opacity: 0.5;
}

/* Skills Section */
.skills-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
}

.skill {
	background: linear-gradient(145deg, var(--medium-blue), var(--dark-blue));
	padding: 30px;
	border-radius: 8px;
	transition: transform 0.3s, box-shadow 0.3s;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.skill::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background-color: var(--accent);
}

.skill:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.skill i {
	font-size: 3rem;
	color: var(--accent);
	margin-bottom: 20px;
}

.skill h3 {
	margin-bottom: 15px;
	font-size: 1.5rem;
}

.skill p {
	color: var(--light-gray);
}

/* Skills Modal Styles */
.skills-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(10, 25, 47, 0.98);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.skills-modal.active {
	opacity: 1;
	visibility: visible;
}

.modal-content {
	background: linear-gradient(145deg, var(--medium-blue), var(--dark-blue));
	width: 90%;
	max-width: 800px;
	max-height: 80vh;
	overflow-y: auto;
	border-radius: 8px;
	padding: 30px;
	position: relative;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	transform: translateY(50px);
	transition: transform 0.5s ease;
	border: 1px solid rgba(100, 255, 218, 0.1);
}

.skills-modal.active .modal-content {
	transform: translateY(0);
}

.modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	color: var(--accent);
	font-size: 1.5rem;
	cursor: pointer;
	transition: color 0.3s;
	z-index: 10;
}

.modal-close:hover {
	color: var(--white);
}

.modal-header {
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	gap: 15px;
	padding-right: 40px;
}

.modal-header i {
	font-size: 2.5rem;
	color: var(--accent);
}

.modal-header h2 {
	font-size: 2rem;
	color: var(--white);
}

.modal-body h3 {
	color: var(--accent);
	margin: 20px 0 10px;
	font-size: 1.3rem;
}

.modal-body p {
	color: var(--light-gray);
	line-height: 1.7;
	margin-bottom: 15px;
}

.skill-detail-list {
	list-style-type: none;
	margin: 15px 0;
}

.skill-detail-list li {
	padding: 8px 0;
	padding-left: 25px;
	position: relative;
	color: var(--light-gray);
}

.skill-detail-list li:before {
	content: '▹';
	position: absolute;
	left: 0;
	color: var(--accent);
}

.skill-level {
	margin: 20px 0;
}

.skill-level-bar {
	height: 8px;
	background-color: var(--light-blue);
	border-radius: 4px;
	margin: 10px 0;
	overflow: hidden;
}

.skill-level-fill {
	height: 100%;
	background-color: var(--accent);
	border-radius: 4px;
	width: 0;
	transition: width 1s ease-in-out;
}

.skill-level-labels {
	display: flex;
	justify-content: space-between;
	color: var(--light-gray);
	font-size: 0.9rem;
}

/* Projects Section */
.projects-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 30px;
}

.project {
	background: linear-gradient(145deg, var(--medium-blue), var(--dark-blue));
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

.project:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.project-img {
	height: 200px;
	background: linear-gradient(45deg, var(--light-blue), var(--dark-blue));
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.project-img i {
	font-size: 4rem;
	color: var(--accent);
	z-index: 2;
}

.project-img::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
	transform: rotate(45deg);
	transition: all 0.5s;
}

.project:hover .project-img::after {
	animation: shine 1.5s;
}

@keyframes shine {
	0% { left: -50%; }
	100% { left: 100%; }
}

.project-info {
	padding: 25px;
}

.project-info h3 {
	margin-bottom: 15px;
	font-size: 1.4rem;
}

.project-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 15px 0;
}

.project-tag {
	background-color: rgba(100, 255, 218, 0.1);
	color: var(--accent);
	padding: 5px 10px;
	border-radius: 3px;
	font-size: 0.8rem;
}

.project-links {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.project-link {
	color: var(--accent);
	text-decoration: none;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: all 0.3s;
}

.project-link:hover {
	color: var(--white);
}

/* Contact Section */
.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px;
	background: linear-gradient(145deg, var(--medium-blue), var(--dark-blue));
	border-radius: 5px;
	transition: transform 0.3s;
}

.contact-item:hover {
	transform: translateX(5px);
}

.contact-item i {
	font-size: 1.5rem;
	color: var(--accent);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(100, 255, 218, 0.1);
	border-radius: 50%;
}

.contact-actions {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-action {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px;
	background: linear-gradient(145deg, var(--medium-blue), var(--dark-blue));
	border-radius: 8px;
	transition: all 0.3s;
	text-decoration: none;
	color: var(--white);
}

.contact-action:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-action i {
	font-size: 1.8rem;
	color: var(--accent);
}

.contact-action-text h3 {
	margin-bottom: 5px;
	color: var(--accent);
}

/* Footer */
footer {
	background: linear-gradient(to right, var(--dark-blue), var(--medium-blue));
	padding: 50px 0 30px;
	text-align: center;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 25px;
	margin-bottom: 30px;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: linear-gradient(145deg, var(--medium-blue), var(--dark-blue));
	color: var(--accent);
	font-size: 1.5rem;
	border-radius: 50%;
	transition: all 0.3s;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
	transform: translateY(-5px);
	color: var(--white);
	background: var(--accent);
}

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 50px;
	height: 50px;
	background: var(--accent);
	color: var(--dark-blue);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 1.5rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	transition: all 0.3s;
	z-index: 100;
}

.back-to-top:hover {
	transform: translateY(-5px);
}

/* Project Modal Styles */
.project-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(10, 25, 47, 0.98);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.project-modal.active {
	opacity: 1;
	visibility: visible;
}

.project-modal .modal-content {
	background: linear-gradient(145deg, var(--medium-blue), var(--dark-blue));
	width: 90%;
	max-width: 900px;
	max-height: 85vh;
	overflow-y: auto;
	border-radius: 8px;
	padding: 30px;
	position: relative;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	transform: translateY(50px);
	transition: transform 0.5s ease;
	border: 1px solid rgba(100, 255, 218, 0.1);
}

.project-modal.active .modal-content {
	transform: translateY(0);
}

.project-features {
	list-style-type: none;
	margin: 15px 0;
}

.project-features li {
	padding: 8px 0;
	padding-left: 25px;
	position: relative;
	color: var(--light-gray);
}

.project-features li:before {
	content: '▹';
	position: absolute;
	left: 0;
	color: var(--accent);
}

.project-tech-stack {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 15px 0;
}

.project-tech {
	background-color: rgba(100, 255, 218, 0.1);
	color: var(--accent);
	padding: 5px 10px;
	border-radius: 3px;
	font-size: 0.9rem;
}

.project-links-modal {
	display: flex;
	gap: 15px;
	margin-top: 25px;
}

.project-link-modal {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: transparent;
	color: var(--accent);
	border: 1px solid var(--accent);
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.project-link-modal:hover {
	background: rgba(100, 255, 218, 0.1);
	transform: translateY(-2px);
}

/* Enhanced Profile Image Styles */
.about-image {
	position: relative;
	text-align: center;
	perspective: 1000px;
}

.image-container {
	position: relative;
	display: inline-block;
	border-radius: 15px;
	transform-style: preserve-3d;
	transition: transform 0.5s ease;
}



.about-image img {
	width: 100%;
	max-width: 380px;
	height: 380px;
	object-fit: cover;
	border-radius: 15px;
	position: relative;
	z-index: 2;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	transition: all 0.5s ease;
	filter: grayscale(0.2) contrast(1.1);
}



/* Floating elements */
.floating-element {
	position: absolute;
	width: 50px;
	height: 50px;
	background: var(--medium-blue);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	font-size: 1.2rem;
	z-index: 3;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	animation: float 6s ease-in-out infinite;
	border: 2px solid rgba(100, 255, 218, 0.3);
}

.element-1 {
	top: -15px;
	right: -15px;
	animation-delay: 0s;
}

.element-2 {
	bottom: 30px;
	left: -20px;
	animation-delay: 2s;
}

.element-3 {
	top: 50%;
	right: -20px;
	animation-delay: 4s;
}

@keyframes float {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-15px) rotate(10deg); }
}

/* Enhanced overlay */
.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(100, 255, 218, 0.2) 100%);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.5s ease;
	z-index: 4;
}

.overlay-content {
	text-align: center;
	transform: translateY(20px);
	transition: transform 0.5s ease;
}

.overlay-content span {
	color: var(--accent);
	font-weight: 600;
	font-size: 1.2rem;
	display: block;
	margin-bottom: 15px;
}

.overlay-icons a {
	display: inline-flex;
	width: 50px;
	height: 50px;
	background: var(--accent);
	color: var(--dark-blue);
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	transform: scale(0.8);
}

.overlay-icons a:hover {
	transform: scale(1.1);
	box-shadow: 0 0 20px rgba(100, 255, 218, 0.7);
}

.about-image:hover .image-overlay {
	opacity: 1;
}

.about-image:hover .overlay-content {
	transform: translateY(0);
}

/* Decorative border */
.decorative-border {
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	border: 2px solid var(--accent);
	border-radius: 20px;
	z-index: 1;
	opacity: 0.5;
	transition: all 0.5s ease;
}

/* Status indicator */
.status-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
	gap: 10px;
}

.status-dot {
	width: 12px;
	height: 12px;
	background: var(--accent);
	border-radius: 50%;
	display: inline-block;
	position: relative;
}

@keyframes pulse {
	0% { transform: scale(1); opacity: 0.6; }
	70% { transform: scale(2.5); opacity: 0; }
	100% { transform: scale(1); opacity: 0; }
}

.status-text {
	color: var(--light-gray);
	font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
	.about-content,
	.contact-container {
		grid-template-columns: 1fr;
	}
	
	.hero h1 {
		font-size: 3rem;
	}
	
	.hero h2 {
		font-size: 2rem;
	}
	
	.section-title::after {
		width: 100px;
	}

	.hero-bg {
		width: 100%;
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
		opacity: 0.1;
	}

	.about-image img {
		max-width: 320px;
		height: 320px;
	}
	
	.floating-element {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}
}


/* Fix for centering issues on all screen sizes */
.hero-content {
  margin-left: 0;
  text-align: center;
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
}

.hero h1, .hero h2, .hero p {
  text-align: center;
}

.hero p {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  margin: 0 auto;
  display: block;
  width: fit-content;
}

/* Only apply left margin on large desktop screens */
@media (min-width: 1200px) {
  .hero-content {
	margin-left: 50px;
	text-align: left;
	max-width: 700px;
	padding: 0;
  }
  
  .hero h1, .hero h2, .hero p {
	text-align: left;
  }
  
  .hero p {
	margin-left: 0;
	margin-right: 0;
  }
  
  .btn {
	margin: 0;
	display: inline-block;
  }
}

/* Adjust background for smaller screens */
@media (max-width: 1200px) {
  .hero-bg {
	width: 100%;
	opacity: 0.1;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .hero h1 {
	font-size: 2.5rem;
  }
  
  .hero h2 {
	font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .section-title {
	flex-direction: column;
	align-items: flex-start;
  }
  
  .section-title::after {
	width: 100%;
	margin-left: 0;
	margin-top: 10px;
  }
  
  /* Optional: Adjust font size if needed */
  .section-title h2 {
	font-size: 2rem;
  }
}

@media (max-width: 768px) {
	.projects-container {
		grid-template-columns: 1fr;
	}
	
	.nav-links {
		display: none;
	}
	
	.hero {
		text-align: center;
	}
	
	.hero p {
		margin: 0 auto 40px;
	}
	
	.modal-content {
		padding: 20px;
	}
	
	.modal-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.about-image {
		margin-bottom: 40px;
	}
	
	.about-image img {
		max-width: 280px;
		height: 280px;
	}
}
.view-btn {
	display: inline-block;
	padding: 8px 16px;
	background: rgba(100, 255, 218, 0.1);
	color: var(--accent);
	border: 1px solid rgba(100, 255, 218, 0.3);
	border-radius: 4px;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.3s ease;
	cursor: pointer;
	margin-top: 20px; /* Increased margin */
}

.view-btn:hover {
	background: rgba(100, 255, 218, 0.2);
	transform: translateY(-2px);
}
.availability-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 24px;
	background: linear-gradient(145deg, rgba(100, 255, 218, 0.1), rgba(100, 255, 218, 0.05));
	color: var(--accent);
	text-decoration: none;
	border-radius: 50px;
	border: 1px solid rgba(100, 255, 218, 0.3);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.availability-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.2), transparent);
	transition: all 0.6s ease;
}

.availability-btn:hover .btn-arrow {
	transform: translateX(5px);
}

.btn-arrow {
	transition: transform 0.3s ease;
	font-weight: bold;
}

@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(100, 255, 218, 0.7); }
	70% { box-shadow: 0 0 0 10px rgba(100, 255, 218, 0); }
	100% { box-shadow: 0 0 0 0 rgba(100, 255, 218, 0); }
}
.skill-view-btn, .project-view-btn {
	display: inline-block;
	padding: 8px 16px;
	background: rgba(100, 255, 218, 0.1);
	color: var(--accent);
	border: 1px solid rgba(100, 255, 218, 0.3);
	border-radius: 4px;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	margin-top: 15px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.skill-view-btn:hover, .project-view-btn:hover {
	background: rgba(100, 255, 218, 0.2);
	transform: translateY(-2px);
}

/* Remove cursor pointer from skill and project cards */
.skill, .project {
	cursor: default;
}

/* Adjust skill card padding to accommodate button */
.skill {
	padding-bottom: 25px;
}
.skill-view-btn, .project-view-btn {
	display: inline-block;
	padding: 8px 16px;
	background: rgba(100, 255, 218, 0.1);
	color: var(--accent);
	border: 1px solid rgba(100, 255, 218, 0.3);
	border-radius: 4px;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	margin-top: 15px;
	transition: all 0.3s ease;
	cursor: pointer;
}

/* Fix for Devicon C++ icon */
.devicon-cplusplus-line {
	font-size: 3rem !important;
	color: var(--accent) !important;
	margin-bottom: 20px !important;
	display: inline-block !important;
	width: auto !important;
	height: auto !important;
}

/* Ensure all skill icons have consistent styling */
.skill i,
.skill .devicon-cplusplus-line {
	font-size: 3rem;
	color: var(--accent);
	margin-bottom: 20px;
	display: block;
}

/* Active navigation link styles */
.nav-links li.active a {
	color: var(--accent);
}

.nav-links li.active a::before {
	width: 100%;
}

/* Optional: Add a subtle background or other indicator */
.nav-links li.active {
	position: relative;
}

.nav-links li.active::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--accent);
}
/* Mobile Navigation */
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: var(--accent);
	font-size: 1.5rem;
	cursor: pointer;
	z-index: 1001;
}

.nav-links.active {
	display: flex !important;
	flex-direction: column;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: rgba(10, 25, 47, 0.98);
	backdrop-filter: blur(10px);
	padding: 20px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-links.active li {
	margin: 10px 0;
	text-align: center;
}

.nav-links.active a {
	padding: 10px 20px;
	display: block;
	font-size: 1.1rem;
}

/* Show hamburger menu on mobile */
@media (max-width: 768px) {
	.mobile-menu-btn {
		display: block;
	}
	
	.nav-links {
		display: none;
	}
	
	.header-social-links {
		display: none;
	}
}

/* Academic Section Styles */
.academic-container {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 30px;
}

.academic-card {
	background: linear-gradient(145deg, var(--medium-blue), var(--dark-blue));
	padding: 30px;
	border-radius: 8px;
	transition: transform 0.3s, box-shadow 0.3s;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
	cursor: default;
	min-height: 500px;
}

.academic-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background-color: var(--accent);
}

.academic-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.academic-card i {
	font-size: 3rem;
	color: var(--accent);
	margin-bottom: 20px;
}

.academic-card h3 {
	margin-bottom: 15px;
	font-size: 1.5rem;
}

.academic-duration {
	color: var(--accent) !important;
	font-weight: 600;
	margin-bottom: 10px !important;
	font-size: 0.9rem;
}

.academic-program {
	color: var(--white) !important;
	font-weight: 500;
	margin-bottom: 20px !important;
	font-style: italic;
	line-height: 1.4;
}

.academic-courses {
	list-style-type: none;
	margin: 15px 0;
	text-align: left;
}

.academic-courses li {
	padding: 6px 0;
	padding-left: 20px;
	position: relative;
	color: var(--light-gray);
	font-size: 0.9rem;
	line-height: 1.4;
}

.academic-courses li:before {
	content: '▹';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-size: 0.8rem;
}

/* BUC Card Specific Styles */
.buc-card {
	min-height: 550px;
}

.buc-modules-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin: 20px 0;
}

.buc-modules-column {
	display: flex;
	flex-direction: column;
}

.current-enrollment {
	margin-top: 25px;
	padding: 15px;
	background: rgba(100, 255, 218, 0.05);
	border-radius: 5px;
	border-left: 3px solid var(--accent);
	grid-column: 1 / -1;
}

.current-enrollment p {
	color: var(--accent) !important;
	font-size: 0.9rem;
	margin-bottom: 0 !important;
	line-height: 1.4;
	text-align: center;
}

/* Responsive Design for Academic Section */
@media (max-width: 968px) {
	.academic-container {
		grid-template-columns: 1fr;
	}
	
	.buc-modules-container {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	
	.academic-card {
		min-height: auto;
	}
	
	.buc-card {
		min-height: auto;
	}
}

@media (max-width: 768px) {
	.academic-card {
		padding: 20px;
	}
	
	.buc-modules-container {
		grid-template-columns: 1fr;
	}
}

/* Experience Section Styles */
.experience-timeline {
	position: relative;
	padding-left: 50px;
}

.experience-timeline::before {
	content: '';
	position: absolute;
	left: 15px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: rgba(100, 255, 218, 0.3);
}

.timeline-item {
	display: flex;
	margin-bottom: 40px;
	position: relative;
}

.timeline-item:last-child {
	margin-bottom: 0;
}

.timeline-marker {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--accent);
	color: var(--dark-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 30px;
	flex-shrink: 0;
	z-index: 1;
	position: relative;
}

.timeline-content {
	flex: 1;
	padding-bottom: 20px;
}

.timeline-content h3 {
	color: var(--white);
	margin-bottom: 8px;
	font-size: 1.4rem;
	line-height: 1.3;
}

.experience-social-link {
	display: inline-block;
	margin-left: 8px;
	font-size: 0.8rem;
	color: var(--accent);
	transition: color 0.3s ease, transform 0.3s ease;
	text-decoration: none;
}

.experience-social-link:hover {
	color: var(--white);
	transform: scale(1.1);
}

.experience-social-link i {
	font-size: 0.9em;
}

.timeline-date {
	color: var(--accent);
	font-weight: 600;
	font-size: 0.9rem;
	display: block;
	margin-bottom: 15px;
}

.timeline-content p {
	color: var(--light-gray);
	line-height: 1.6;
	margin: 0;
}

.timeline-content p.white-col {
	color: var(--white);
}

/* Animation for timeline items */
.timeline-item {
	opacity: 0;
	transform: translateX(-20px);
	transition: all 0.5s ease;
}

.timeline-item.animate {
	opacity: 1;
	transform: translateX(0);
}

/* Responsive Design for Experience Section */
@media (max-width: 768px) {
	.experience-timeline {
		padding-left: 30px;
	}
	
	.timeline-item {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.timeline-marker {
		margin-right: 0;
		margin-bottom: 15px;
		align-self: flex-start;
	}
	
	.timeline-content {
		padding-left: 0;
	}
	
	.experience-social-link {
		margin-left: 5px;
		font-size: 0.7rem;
	}
}

/* Soft Skills Section - Circular Layout */
/* Only positioning CSS - keeps original design exactly the same */
.soft-skills-wrapper {
	display: flex;
	width: 100%;
}

.soft-skills-original-container {
	width: 60%; /* Takes 60% of the space */
	display: flex;
	justify-content: flex-start; /* Aligns to left */
}

.soft-skills-container {
	/* This container stays exactly the same size */
	max-width: 600px; /* Keep it the same size as before */
	min-height: 550px;
	margin: 0; /* Remove auto margin to align left */
}

.soft-skills-right-content {
	width: 40%; /* Takes remaining 40% */
	padding-left: 30px;
}

/* On mobile, stack them */
@media (max-width: 768px) {
	.soft-skills-wrapper {
		flex-direction: column;
	}
	
	.soft-skills-original-container,
	.soft-skills-right-content {
		width: 100%;
	}
	
	.soft-skills-container {
		margin: 0 auto; /* Center it again on mobile */
	}
	
	.soft-skills-right-content {
		padding-left: 0;
		padding-top: 40px;
	}
}
.soft-skills-split {
	display: flex;
	gap: 50px;
	align-items: flex-start;
}

.soft-skills-left {
	flex: 1;
}

.soft-skills-right {
	flex: 1;
	min-height: 400px;
	background: transparent;
}

/* On mobile, stack them */
@media (max-width: 768px) {
	.soft-skills-split {
		flex-direction: column;
		gap: 40px;
	}
}

.soft-skills-section {
	position: relative;
	padding: 80px 0;
}

.soft-skills-container {
	position: relative;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	min-height: 600px;
}

/* Center Image */
/* .center-image-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 345px;
	height: 345px;
	z-index: 2;
}

.center-image {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	transition: all 0.5s ease;
}

.skill-card {
	position: absolute;
	width: 180px;
	padding: 25px 15px;
	border-radius: 12px;
	text-align: center;
	transition: all 0.4s ease;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: default;
}

.skill-card.pos-1 { top: 0%; left: 50%; transform: translateX(-50%); }
.skill-card.pos-2 { top: 25%; right: 5%; }
.skill-card.pos-3 { bottom: 25%; right: 5%; }
.skill-card.pos-4 { bottom: 0%; left: 50%; transform: translateX(-50%); }
.skill-card.pos-5 { bottom: 25%; left: 5%; }
.skill-card.pos-6 { top: 25%; left: 5%; }
*/

.center-image-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 250px;
	height: 250px;
	z-index: 2;
}

.center-image {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid var(--accent);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
	transition: all 0.5s ease;
}

/* Circular arrangement for skill cards */


.skill-card {
	position: absolute;
	width: 180px;
	padding: 25px 15px;
	background: linear-gradient(145deg, var(--medium-blue), var(--dark-blue));
	border-radius: 12px;
	border: 2px solid rgba(100, 255, 218, 0.2);
	text-align: center;
	transition: all 0.4s ease;
	z-index: 1;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: default;
}

.skill-card i {
	font-size: 2.2rem;
	color: var(--accent);
	margin-bottom: 15px;
	transition: transform 0.3s ease;
}

.skill-card span {
	color: var(--white);
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.4;
}

.skill-card.pos-1 { top: 5%; left: 50%; transform: translateX(-50%); }
.skill-card.pos-2 { top: 25%; right: 5%; }
.skill-card.pos-3 { bottom: 25%; right: 5%; }
.skill-card.pos-4 { bottom: 5%; left: 50%; transform: translateX(-50%); }
.skill-card.pos-5 { bottom: 25%; left: 5%; }
.skill-card.pos-6 { top: 25%; left: 5%; }


/* Add decorative connecting lines */
.skill-connector {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 350px;
	height: 350px;
	border: 2px dashed rgba(100, 255, 218, 0.2);
	border-radius: 50%;
	z-index: 0;
	pointer-events: none;
}

/* Responsive Design for Circular Layout */
@media (max-width: 900px) {
	.soft-skills-container {
		max-width: 700px;
		min-height: 500px;
	}
	
	.center-image-container {
		width: 200px;
		height: 200px;
	}
	
	.skill-card {
		width: 160px;
		padding: 20px 12px;
	}
	
	.skill-connector {
		width: 300px;
		height: 300px;
	}
}

@media (max-width: 768px) {
	.soft-skills-container {
		max-width: 600px;
		min-height: 450px;
	}
	
	.center-image-container {
		width: 180px;
		height: 180px;
	}
	
	.skill-card {
		width: 140px;
		padding: 18px 10px;
	}
	
	.skill-card i {
		font-size: 1.8rem;
		margin-bottom: 12px;
	}
	
	.skill-card span {
		font-size: 0.9rem;
	}
	
	.skill-connector {
		width: 280px;
		height: 280px;
	}
}

@media (max-width: 650px) {
	/* Switch to vertical layout for very small screens */
	.soft-skills-container {
		position: relative;
		min-height: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	
	.center-image-container {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		width: 200px;
		height: 200px;
		margin-bottom: 30px;
	}
	
	.skill-card {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		bottom: auto;
		transform: none !important;
		width: 100%;
		max-width: 300px;
		margin: 10px auto;
	}
	
	.skill-card:hover {
		transform: translateY(-5px) scale(1.02) !important;
	}
	
	.skill-connector {
		display: none;
	}
	
	.soft-skills-section {
		padding: 60px 0;
	}
}
.soft-skills-right-content {
	width: 40%;
	padding-left: 50px;
	padding-top: 60px; /* Added to move content down */
	margin-top: 40px; /* Added to move content down */
}

.soft-skills-right-content h3 {
	color: var(--accent);
	font-size: 1.8rem;
	margin-bottom: 20px;
	font-weight: 600;
}

.soft-skills-right-content p {
	color: var(--light-gray);
	line-height: 1.8;
	margin-bottom: 15px;
	position: relative;
	padding-left: 20px;
}

.soft-skills-right-content p::before {
	content: '▹';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-size: 0.9rem;
}

/* Mobile responsive adjustment */
@media (max-width: 768px) {
	.soft-skills-right-content {
		padding-left: 0;
		padding-top: 40px; /* Reduced for mobile */
		margin-top: 0; /* Reset for mobile */
	}
}