body {
	font-family: 'PT Sans', sans-serif;
	overflow-x: hidden;
	scroll-padding-top: 70px;
	background-color: #000;
}
  
.fade-in-on-scroll {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
	will-change: opacity, transform;
}
  
.fade-in-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}
  
.navbar {
	backdrop-filter: blur(8px);
	background-color: rgba(0, 0, 0, 0.7);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
  
section h2 {
	padding-top: 4rem;
}
  
.about-section {
	background-color: #151515;
	background-image: url('../img/tech-pattern.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	background-blend-mode: overlay;
	color: #fff;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 1rem;
}

@media (max-width: 767px) {
	.about-section {
		background-size: cover;
		background-attachment: scroll;
	}
}
  
.about-section .row {
	width: 100%;
}
  
.about-section .col-md-6:first-child {
	text-align: right;
}
  
.about-section .badge {
	font-size: 1rem;
	font-weight: normal;
	padding: 0.7rem;
	min-width: 100px;
	text-align: center;
	margin-bottom: 1rem;
}
  
.profile-pic {
	width: 100%;
	max-width: 340px;
	height: auto;
	border-radius: 50%;
	box-shadow: 0 0 65px rgba(0, 123, 255, 0.5);
	animation: beatGlow 6s ease-in-out infinite;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
  
@keyframes beatGlow {
	0%, 100% {
		transform: scale(1.03);
		box-shadow: 0 0 14px rgba(0, 123, 255, 0.6);
	}
	50% {
		transform: scale(1.07);
		box-shadow: 0 0 20px rgba(0, 123, 255, 0.8);
	}
}
  
  
@media (max-width: 767px) {
	.about-section .row {
		flex-direction: column;
	}
	
	.about-section .col-md-6 {
		flex: 1 1 100%;
		align-items: center !important;
		text-align: center !important;
	}
	
	.about-section .col-md-6:first-child {
		order: 1;
		margin-bottom: 3rem;
	}
	
	.about-section .col-md-6:last-child {
		order: 0;
		margin-bottom: 1rem;
	}
	
	.profile-pic {
		max-width: 250px;
		margin-top: 2.5rem;
		margin-bottom: 1.5rem;
	}
	
	.about-section .badge {
		margin-bottom: 0.5rem;
	}
	
	.about-section .d-flex.flex-wrap {
		margin-bottom: 2rem;
	}
}
  
.experience-section {
	background-color: #000;
}
  
.timeline-alt {
	position: relative;
	padding: 2rem 0;
	overflow-x: hidden;
}
  
.timeline-alt::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background-color: rgba(0, 123, 255, 0.5);
	transform: translateX(-50%);
	z-index: 1;
}
  
.timeline-alt-item {
	position: relative;
	width: 100%;
	padding: 2rem 1rem;
}
  
.timeline-icon {
	position: absolute;
	top: 2rem;
	width: 32px;
	height: 32px;
	background-color: #0d6efd;
	color: white;
	border-radius: 50%;
	text-align: center;
	line-height: 32px;
	font-size: 16px;
	z-index: 2;
}
  
.timeline-content {
	background-color: rgba(43, 43, 43, 0.5);
	padding: 1.5rem;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 123, 255, 0.1);
	position: relative;
	z-index: 2;
}
  
@media (min-width: 768px) {
	.timeline-alt-item {
		width: 50%;
		padding: 2rem;
	}
	
	.timeline-alt-item.left {
		left: 0;
		text-align: right;
	}
	
	.timeline-alt-item.right {
		left: 50%;
		text-align: left;
	}
	
	.timeline-alt-item.left .timeline-icon {
		right: -16px;
	}
	
	.timeline-alt-item.right .timeline-icon {
		left: -16px;
	}
}
  
@media (max-width: 767px) {
	.timeline-alt::before {
		display: none;
	}
	
	.timeline-icon {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		width: 40px !important;
		height: 40px !important;
		line-height: 40px !important;
		font-size: 20px !important;
		margin: 0 auto 1rem auto !important;
		display: block;
	}
}
  
.education-section {
	background-color: #0a0d14;
}
  
.edu-card {
	background-color: rgba(43, 43, 43, 0.5);
	padding: 1.5rem;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 123, 255, 0.08);
	transition: transform 0.3s ease;
}
  
.edu-card:hover {
	transform: translateY(-5px);
}
  
.edu-card ul {
	list-style: disc;
	padding-left: 1.2rem;
}
  
.edu-card li {
	margin-bottom: 0.5rem;
	color: #ccc;
}
  
.ventures-section {
	background-color: #000;
}
  
.ventures-section h2 {
	padding-top: 2rem;
}
  
.venture-card {
	background-color: rgba(43, 43, 43, 0.5);
	border-left: 4px solid #0d6efd;
	border-radius: 8px;
	box-shadow: 0 0 12px rgba(0, 123, 255, 0.1);
	transition: transform 0.3s ease;
}
  
.venture-card:hover {
	transform: translateY(-4px);
}
  
.venture-icon {
	font-size: 3rem;
	color: #0d6efd;
	flex-shrink: 0;
	margin-top: 0.5rem;
}
  
.venture-card a {
	text-decoration: underline;
}