/* ================================
   CUSTOM STYLES FOR PORTFOLIO
   ================================ */

/* Reset any gaps at the top */
html, body {
	margin: 0 !important;
	padding: 0 !important;
}

/* Utility Classes */
.no-list-style {
	list-style-type: none;
	padding-left: 0;
}

.mt-20 {
	margin-top: 20px;
}

.mt-15 {
	margin-top: 15px;
}

.mb-12 {
	margin-bottom: 12px;
}

.italic-gray {
	font-style: italic;
	color: #ccc;
}

/* Subtle muted text helper */
.muted {
	color: rgba(255, 255, 255, 0.72);
}

/* ================================
   LARGE RECTANGULAR CARDS (NEW DESIGN)
   ================================ */
.venture-grid-large,
.projects-grid-large {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 30px;
	margin-top: 30px;
}

.venture-card-large,
.project-card-large {
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	background: rgba(20, 28, 47, 0.6);
	overflow: hidden;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	height: 540px;
	display: flex;
	flex-direction: column;
}

.venture-card-large:hover,
.project-card-large:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(77, 171, 247, 0.25);
	border-color: rgba(77, 171, 247, 0.5);
}

.card-image-large {
	width: 100%;
	height: 340px;
	overflow: hidden;
	position: relative;
	flex-shrink: 0;
}

.card-image-large img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.venture-card-large:hover .card-image-large img,
.project-card-large:hover .card-image-large img {
	transform: scale(1.08);
}

.card-overlay {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 10;
}

.card-image-large::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.4));
	pointer-events: none;
	z-index: 5;
}

.card-content-compact {
	padding: 20px 24px 24px 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(20, 28, 47, 0.98) 100%);
	position: relative;
}

.card-content-compact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(77, 171, 247, 0.3), transparent);
}

.card-content-compact h3 {
	font-size: 1.5em;
	font-weight: 700;
	margin: 0;
	color: #ffffff;
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-wrap: break-word;
}

.card-subtitle {
	font-size: 0.95em;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	flex-grow: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-wrap: break-word;
	height: 2.8em;
}

.card-content-compact .chips {
	margin: 6px 0 8px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	min-height: 28px;
	align-items: center;
}

/* ================================
   STARTUPS / SERVICES (ENTREPRENEUR LAYOUT)
   ================================ */
.venture-grid,
.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 30px;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.venture-card,
.service-card {
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.04) 100%);
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
	padding: 24px;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
}

.venture-card:hover,
.service-card:hover {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%);
	border-color: rgba(245, 158, 11, 0.5);
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(245, 158, 11, 0.4);
}

/* Enhanced card image styling */
.venture-card img,
.project-card img {
	transition: transform 0.3s ease;
}

.venture-card:hover img,
.project-card:hover img {
	transform: scale(1.05);
}

.venture-card h3,
.service-card h3 {
	margin: 0 0 8px 0;
	font-weight: 700;
	transition: color 0.3s ease;
}

.service-card:hover h3 {
	color: #fbbf24;
}

.venture-card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 8px;
}

.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.chip {
	display: inline-flex;
	align-items: center;
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 0.8em;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.92);
	background: rgba(245, 158, 11, 0.2);
	border: 1px solid rgba(245, 158, 11, 0.35);
	white-space: nowrap;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.chip:hover {
	background: rgba(245, 158, 11, 0.3);
	border-color: rgba(245, 158, 11, 0.5);
	transform: translateY(-2px);
}

/* Startup Section - Blue Chips */
#two .chip {
	background: rgba(77, 171, 247, 0.2);
	border: 1px solid rgba(77, 171, 247, 0.35);
}

#two .chip:hover {
	background: rgba(77, 171, 247, 0.3);
	border-color: rgba(77, 171, 247, 0.5);
}

/* Projects Section - Green Chips */
#four .chip {
	background: rgba(16, 185, 129, 0.2);
	border: 1px solid rgba(16, 185, 129, 0.35);
}

#four .chip:hover {
	background: rgba(16, 185, 129, 0.3);
	border-color: rgba(16, 185, 129, 0.5);
}


.pill {
	display: inline-flex;
	align-items: center;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 0.78em;
	font-weight: 800;
	letter-spacing: 0.02em;
	border: 1px solid rgba(255, 255, 255, 0.22);
	white-space: nowrap;
}

.pill-live {
	background: rgba(212, 175, 55, 0.2);
	color: rgba(255, 255, 255, 0.95);
	border-color: rgba(212, 175, 55, 0.4);
}

.pill-ship {
	background: rgba(14, 165, 233, 0.16);
	color: rgba(255, 255, 255, 0.92);
	border-color: rgba(14, 165, 233, 0.30);
}

.pill-build {
	background: rgba(245, 158, 11, 0.16);
	color: rgba(255, 255, 255, 0.92);
	border-color: rgba(245, 158, 11, 0.30);
}

.highlight-row {
	margin-top: 18px;
}

.highlight {
	border: 1px dashed rgba(255, 255, 255, 0.22);
	border-radius: 14px;
	padding: 14px 16px;
	background: rgba(0, 0, 0, 0.12);
}

.highlight-title {
	font-weight: 800;
	margin-bottom: 10px;
	color: #d4af37;
}

/* ================================
   PROJECT CARDS
   ================================ */
.project-card {
	border: 1px solid #444;
	padding: 20px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	height: 100%;
	transition: all 0.3s ease;
}

.project-card:hover {
	border-color: rgba(77, 171, 247, 0.6);
	background: rgba(255, 255, 255, 0.08);
}

.project-card-image {
	width: 100%;
	height: 150px;
	border-radius: 8px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
}

.project-card-image.gradient-purple {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.project-card-image.gradient-pink {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.project-card-image.gradient-blue {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.project-card h3 {
	margin: 0 0 10px 0;
}

.project-card p {
	margin: 8px 0;
}

.project-card p.status {
	margin: 10px 0 0 0;
}

.status-badge {
	background: rgba(34, 197, 94, 0.9);
	color: #fff;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.85em;
	font-weight: 600;
	box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-badge.status-active {
	background: rgba(14, 165, 233, 0.9);
	box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

/* ================================
   WORK EXPERIENCE CARDS
   ================================ */
.work-experience-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.work-card {
	border: 2px solid #444;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	min-height: 200px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.work-card.short {
	min-height: 180px;
}

.work-card.tall {
	min-height: 240px;
}

.work-card-left {
	padding: 20px;
	border-right: 2px solid #555;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 150px;
	background: rgba(77, 171, 247, 0.1);
}

.work-card-icon {
	font-size: 3.5em;
	margin-bottom: 12px;
}

.work-card-date {
	font-size: 1.2em;
	color: #4dabf7;
	text-align: center;
	line-height: 1.5;
	font-weight: 700;
}

.work-card-content {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.work-card-header {
	margin-bottom: 16px;
}

.work-card-header h3 {
	margin: 0 0 8px 0;
	font-size: 1.5em;
	color: #ffffff;
	font-weight: 700;
}

.work-card-header p {
	margin: 0;
	font-size: 1.2em;
	color: #4dabf7;
	font-weight: 600;
}

.work-card-description {
	font-size: 1.1em;
	color: #eee;
	line-height: 1.6;
}

.work-card-bullet {
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
}

.work-card-bullet:last-child {
	margin-bottom: 0;
}

.work-card-bullet .bullet-point {
	position: absolute;
	left: 0;
	color: #4dabf7;
}

/* ================================
   PUBLICATION CARDS
   ================================ */
.publications-container {
	display: flex;
	justify-content: center;
	width: 100%;
}

.publications-wrapper {
	width: 100%;
	max-width: 1300px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.publication-card {
	width: 1200px;
	margin: 0 auto 16px auto;
	border: none;
	padding: 16px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
	backdrop-filter: blur(12px);
	box-shadow: 0 10px 40px rgba(31, 38, 135, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.22);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.publication-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 10px;
}

.publication-card h3 {
	margin: 0;
	font-size: 1.1em;
	line-height: 1.35;
	flex: 1;
	text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.publication-card h3 a {
	text-decoration: none;
	color: #0f172a;
	font-weight: 800;
	letter-spacing: -0.01em;
	transition: all 0.3s ease;
}

.publication-badge {
	padding: 4px 12px;
	border-radius: 18px;
	font-size: 0.8em;
	font-weight: 700;
	white-space: nowrap;
	margin-left: 15px;
	box-shadow: 0 4px 8px rgba(255, 165, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.publication-badge.submitted {
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.95) 0%, rgba(255, 165, 0, 0.95) 100%);
	color: #1a0d00;
}

.publication-badge.preprint {
	background: linear-gradient(135deg, rgba(135, 206, 235, 0.95) 0%, rgba(30, 144, 255, 0.95) 100%);
	color: #002b55;
}

.publication-badge.published {
	background: linear-gradient(135deg, rgba(34, 197, 94, 0.95) 0%, rgba(21, 128, 61, 0.95) 100%);
	color: #052e16;
}

.publication-meta {
	display: flex;
	margin: 8px 0;
	gap: 20px;
	flex-wrap: wrap;
}

.publication-meta-item {
	display: flex;
	align-items: center;
	flex: 1;
	min-width: 250px;
}

.publication-meta-dot {
	width: 6px;
	height: 6px;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	border-radius: 50%;
	margin-right: 8px;
	box-shadow: 0 2px 3px rgba(239, 68, 68, 0.45);
	flex-shrink: 0;
}

.publication-meta-item p {
	margin: 0;
	font-size: 0.9em;
	color: #334155;
	font-weight: 600;
}

.publication-author-highlight {
	background: linear-gradient(135deg, rgba(14, 165, 233, 0.18) 0%, rgba(56, 189, 248, 0.18) 100%);
	color: #0369a1;
	padding: 3px 8px;
	border-radius: 6px;
	margin: 0 4px;
	font-weight: 800;
	border: 1px solid rgba(14, 165, 233, 0.25);
}

.publication-description {
	background: rgba(248, 250, 252, 0.6);
	padding: 10px 12px;
	border-radius: 10px;
	margin: 12px 0;
	border-left: 3px solid #0ea5e9;
	backdrop-filter: blur(6px);
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
}

.publication-description p {
	margin: 0;
	font-size: 0.9em;
	line-height: 1.5;
	color: #1e293b;
	font-weight: 500;
}

.publication-links {
	display: flex;
	gap: 10px;
	margin-top: 12px;
	flex-wrap: wrap;
}

.publication-links a {
	padding: 6px 14px;
	border-radius: 8px;
	text-decoration: none;
	font-size: 0.85em;
	font-weight: 700;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	border: none;
	height: 32px;
}

.publication-links a span {
	margin-right: 6px;
	font-size: 1em;
}

/* ================================
   SECTION OVERLAYS & BACKGROUNDS
   ================================ */
.section-bg-blur {
	background-image: url('../../images/pic06.jpg');
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	position: relative;
}

.section-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(32, 29, 39, 0.92);
	backdrop-filter: blur(10px);
	z-index: 1;
}

.section-overlay.light-blur {
	backdrop-filter: blur(8px);
	background: transparent;
}

.section-container {
	position: relative;
	z-index: 2;
}

/* ================================
   COLLABORATION & TEACHING CARDS
   ================================ */
.collab-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 16px;
	margin-top: 20px;
}

.collab-card {
	border: 1px solid #444;
	padding: 16px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.05);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.collab-card-header {
	margin-bottom: 12px;
}

.collab-card-header-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.collab-card h3 {
	margin: 0;
	font-size: 1em;
	color: #f0f0f0;
	line-height: 1.4;
}

.collab-date-badge {
	font-size: 0.75em;
	color: #4dabf7;
	background: rgba(77, 171, 247, 0.1);
	padding: 2px 8px;
	border-radius: 10px;
	white-space: nowrap;
}

.collab-card p {
	margin: 6px 0 0 0;
	font-size: 0.85em;
}

.collab-card p.person {
	color: #4dabf7;
}

.collab-card p.department {
	font-size: 0.8em;
	color: #bbb;
	margin: 4px 0 0 0;
}

.collab-card p.description {
	margin: 0 0 12px 0;
	color: #ccc;
	flex-grow: 1;
	line-height: 1.5;
}

.collab-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 0.8em;
	margin-top: auto;
}

.collab-tag {
	color: #4dabf7;
	background: rgba(77, 171, 247, 0.1);
	padding: 2px 8px;
	border-radius: 12px;
}

.teaching-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 12px;
	margin-top: 20px;
}

.teaching-card {
	border: 1px solid #444;
	padding: 12px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.05);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.teaching-card-header {
	margin-bottom: 8px;
}

.teaching-card h3 {
	margin: 0;
	font-size: 0.95em;
	color: #f0f0f0;
	line-height: 1.3;
}

.teaching-card p.venue {
	margin: 4px 0 0 0;
	font-size: 0.8em;
	color: #bbb;
}

.teaching-card p.description {
	margin: 0 0 8px 0;
	font-size: 0.85em;
	color: #ccc;
	flex-grow: 1;
}

.teaching-card-links {
	display: flex;
	gap: 8px;
	font-size: 0.8em;
	margin-top: auto;
}

.teaching-card-links a {
	color: #4dabf7;
	text-decoration: none;
}

/* ================================
   CONTACT SECTION
   ================================ */
#seven h3 {
	font-weight: 800 !important;
	font-size: 1.6em !important;
	margin-bottom: 30px !important;
}

.contact-info {
	list-style: none !important;
	padding: 0 !important;
}

.contact-info li {
	margin-bottom: 20px !important;
	font-size: 1.05em !important;
}

.contact-info li strong {
	font-weight: 800 !important;
	font-size: 1.1em !important;
	color: #ffffff !important;
}

.contact-info li a {
	font-weight: 550 !important;
	color: rgb(255, 255, 255) !important;
	text-decoration: none !important;
	border-bottom: none !important;
	transition: all 0.3s ease !important;
}

.contact-info li a:hover {
	color: #10b981 !important;
	border-bottom: none !important;
}

/* Contact form styling */
.contact-form-clean h3,
#seven .col-6 h3 {
	font-weight: 800 !important;
	font-size: 1.6em !important;
	margin-bottom: 30px !important;
}

#seven input[type="text"],
#seven input[type="email"],
#seven textarea {
	font-weight: 600 !important;
}

#seven input[type="submit"] {
	font-weight: 800 !important;
}

/* Global Font - Times New Roman */
/* NOTE: Avoid forcing a global font here; the theme's typography is more modern. */

/* Custom styles to fix layout issues */
.scroll-content {
	max-height: 400px;
	overflow-y: auto;
	padding-right: 10px;
}

.scroll-content::-webkit-scrollbar {
	width: 6px;
}

.scroll-content::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
}

.scroll-content::-webkit-scrollbar-thumb {
	background: rgba(77, 171, 247, 0.5);
	border-radius: 3px;
}

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

.list-item {
	margin-bottom: 8px;
	padding-left: 20px;
	position: relative;
	list-style-type: none;
}

.list-item:before {
	content: "•";
	position: absolute;
	left: 0;
	color: #f59e0b;
}

.research-block {
	margin-bottom: 25px;
	padding: 15px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	border-left: 3px solid #4dabf7;
}

.thesis-title {
	margin-bottom: 8px;
	color: #fff;
}

.thesis-content {
	margin-bottom: 5px;
	font-weight: bold;
}

.thesis-meta {
	color: #ccc;
	font-size: 0.9em;
}

/* ================================
   ENHANCED NAVIGATION MENU
   ================================ */
#header {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	z-index: 10000 !important;
	background: rgba(15, 23, 42, 0.95) !important;
	backdrop-filter: blur(10px) !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
	border-bottom: 2px solid rgba(16, 185, 129, 0.3) !important;
	height: 3.2em !important;
	line-height: 3.2em !important;
	transition: all 0.3s ease !important;
}

/* Ensure page content doesn't hide behind fixed header */
#page-wrapper {
	padding-top: 3.2em !important;
}

/* For landing pages, remove padding since banner goes full screen */
body.landing #page-wrapper {
	padding-top: 0 !important;
}

/* Remove any default margin on the main section for subpages */
#main.wrapper {
	margin-top: 0 !important;
}

#header nav {
	height: inherit !important;
	line-height: inherit !important;
}

#header:hover {
	border-bottom-color: rgba(16, 185, 129, 0.6) !important;
}

#logo {
	font-weight: bold;
}

#logo a {
	font-size: 1em !important;
	font-weight: 900 !important;
	background: linear-gradient(135deg, #10b981 0%, #34d399 50%, #10b981 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: "Times New Roman", Times, serif !important;
	letter-spacing: 0.02em;
	text-shadow: none;
	transition: all 0.3s ease;
}

#logo a:hover {
	filter: brightness(1.2);
}

#nav ul {
	white-space: nowrap !important;
}

#nav ul li {
	margin-left: 0.3em !important;
}

#nav ul li a {
	font-size: 0.85em !important;
	font-weight: 600 !important;
	color: #e0e0e0 !important;
	font-family: "Times New Roman", Times, serif !important;
	transition: all 0.3s ease !important;
	position: relative;
	padding: 0 0.5em !important;
	white-space: nowrap !important;
}

#nav ul li a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, #10b981, transparent);
	transition: width 0.3s ease;
}

#nav ul li a:hover {
	color: #10b981 !important;
}

#nav ul li a:hover::after {
	width: 80%;
	background: #10b981;
}

#nav ul li.active > a {
	color: #10b981 !important;
	font-weight: 700 !important;
}

#nav ul li.active > a::after {
	width: 80%;
	background: #10b981;
}

/* Dropdown menu styling */
#nav ul li > ul.dropdown-bold {
	font-weight: bold;
}

#nav ul li > ul {
	background: rgba(15, 23, 42, 0.98) !important;
	border: 2px solid rgba(16, 185, 129, 0.3) !important;
	border-radius: 8px !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
	padding: 0.5em 0 !important;
	margin-top: 0.5em !important;
}

#nav ul li > ul li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
	padding: 0.5em 0 !important;
}

#nav ul li > ul li:last-child {
	border-bottom: none !important;
}

#nav ul li > ul li a {
	color: #d0d0d0 !important;
	padding: 0.5em 1.5em !important;
	display: block !important;
}

#nav ul li > ul li a:hover {
	background: rgba(16, 185, 129, 0.15) !important;
	color: #10b981 !important;
	padding-left: 2em !important;
}

/* ================================
   BUTTON STANDARDIZATION
   ================================ */

/* Base Button Styles */
.button {
	display: inline-block;
	padding: 0.8em 2.2em !important;
	font-size: 0.95em !important;
	font-weight: 700 !important;
	font-family: "Times New Roman", Times, serif !important;
	text-align: center;
	text-decoration: none;
	border-radius: 25px !important;
	border: 2px solid rgba(255, 255, 255, 0.3) !important;
	background: rgba(255, 255, 255, 0.08) !important;
	color: #ffffff !important;
	transition: all 0.3s ease !important;
	cursor: pointer;
	white-space: nowrap;
	line-height: 1.2 !important;
}

.button:hover {
	background: rgba(255, 255, 255, 0.15) !important;
	border-color: rgba(255, 255, 255, 0.5) !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3) !important;
}

/* Primary Button Styles */
.button.primary {
	background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%) !important;
	border: 2px solid rgba(212, 175, 55, 0.5) !important;
	color: #0f172a !important;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4) !important;
}

.button.primary:hover {
	background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%) !important;
	border-color: rgba(212, 175, 55, 0.8) !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6) !important;
	color: #000000 !important;
}

/* Small Button Variant (for cards) */
.button.small {
	padding: 0.65em 1.8em !important;
	font-size: 0.9em !important;
	font-weight: 700 !important;
}

/* Contact button in navigation menu */
#nav .button.primary {
	padding: 0.6em 1.4em !important;
	font-size: 0.8em !important;
	border-radius: 25px !important;
	font-weight: 700 !important;
}

/* Section Footer Buttons - Consistent Sizing */
footer.major .button,
.actions.special .button {
	padding: 0.75em 2em !important;
	font-size: 0.95em !important;
	min-width: 180px;
}

/* Contact Form Submit Button - Special Yellow/Orange Hover */
#seven input[type="submit"],
#seven input[type="submit"].primary,
#seven button.primary {
	padding: 0.85em 2.5em !important;
	font-size: 1em !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
	vertical-align: middle !important;
	text-align: center !important;
	display: inline-block !important;
	border-radius: 25px !important;
	transition: all 0.3s ease !important;
	cursor: pointer;
}

#seven input[type="submit"]:hover,
#seven input[type="submit"].primary:hover,
#seven button.primary:hover {
	background-color: #f59e0b !important;
	border-color: #f59e0b !important;
	box-shadow: 0 0 20px rgba(245, 158, 11, 0.5) !important;
	transform: translateY(-2px) !important;
}

/* Card Buttons - Inside Venture and Project Cards */
.card-content-compact .button {
	width: 100%;
	text-align: center;
	margin-top: auto;
	padding: 0.7em 1.5em !important;
	font-size: 0.9em !important;
	font-weight: 700 !important;
	white-space: nowrap;
	border-radius: 25px !important;
}

.card-content-compact .button.primary.small {
	background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%) !important;
	border: 2px solid rgba(212, 175, 55, 0.5) !important;
	color: #0f172a !important;
	box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3) !important;
	border-radius: 25px !important;
}

.card-content-compact .button.primary.small:hover {
	background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%) !important;
	border-color: rgba(212, 175, 55, 0.8) !important;
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5) !important;
	transform: translateY(-3px) !important;
	color: #000000 !important;
}

/* ================================
   ABOUT SECTION STYLING
   ================================ */
#one header h2 {
	font-size: 3.5em !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
	margin-bottom: 0.5em !important;
	font-family: "Times New Roman", Times, serif !important;
}

#one header h2 .name-behnam {
	color: #d4af37;
	background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

#one header h2 .name-mostafavi {
	background: linear-gradient(135deg, #ffffff 0%, #ffffff 25%,  #ffffff 50%, #ffffff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

#one header p {
	font-size: 1.2em !important;
	color: #b0b0b0 !important;
	font-family: "Times New Roman", Times, serif !important;
}

/* Social icons hover effect - Card style with neon glow */
#one .icons li a {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 2.5em !important;
	height: 2.5em !important;
	border-radius: 50% !important;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
	background: rgba(255, 255, 255, 0.05) !important;
	position: relative !important;
}

#one .icons li a:hover {
	/* background: #10b981 !important; */
	transform: translateY(-8px) scale(1.1) !important;
	box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6), 
	            0 0 60px rgba(16, 185, 129, 0.4),
	            0 0 100px rgba(16, 185, 129, 0.2) !important;
}

/* Footer icons hover effect - Card style with neon glow */
#footer .icons li a {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 2.5em !important;
	height: 2.5em !important;
	border-radius: 50% !important;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
	background: rgba(255, 255, 255, 0.05) !important;
	position: relative !important;
}

#footer .icons li a:hover {
	/* background: #10b981 !important; */
	transform: translateY(-8px) scale(1.1) !important;
	box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6), 
	            0 0 60px rgba(16, 185, 129, 0.4),
	            0 0 100px rgba(16, 185, 129, 0.2) !important;
}

/* ================================
   BANNER NAME STYLING
   ================================ */
#banner .content {
	text-align: left !important;
	padding-left: 4em !important;
	padding-top: 3em !important;
	padding-bottom: 4em !important;
}

#banner .content header {
	text-align: left !important;
	font-family: "Times New Roman", Times, serif;
	max-width: 65%;
}

#banner h2 {
	font-size: 4.5em !important;
	font-weight: 900 !important;
	background: linear-gradient(135deg, #10b981 0%, #34d399 50%, #10b981 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-top: 0.1em !important;
	margin-bottom: 0.4em !important;
	line-height: 1 !important;
	text-align: left !important;
	font-family: "Times New Roman", Times, serif !important;
	text-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
	letter-spacing: 0.02em;
	position: relative;
}

#banner h2::after {
	content: '';
	position: absolute;
	bottom: -0.2em;
	left: 0;
	width: 120px;
	height: 5px;
	background: linear-gradient(90deg, #10b981 0%, transparent 100%);
	border-radius: 3px;
}

.banner-tagline {
	font-size: 4.4em !important;
	font-weight: 800 !important;
	background: linear-gradient(135deg, #ffffff 0%, #f4d03f 50%, #ffffff 100%) !important;
	-webkit-background-clip: text !important;
	background-clip: text !important;
	-webkit-text-fill-color: transparent !important;
	margin-top: -0.5em !important;
	margin-bottom: 0.15em !important;
	line-height: 1.1 !important;
	text-align: left !important;
	font-family: "Times New Roman", Times, serif !important;
	text-shadow: 0 2px 30px rgba(255, 255, 255, 0.5) !important;
	letter-spacing: 0.03em !important;
	font-style: normal !important;
}

#banner p {
	font-size: 1.25em !important;
	line-height: 1.8 !important;
	color: #e0e0e0 !important;
	margin-top: 1.5em !important;
	font-weight: 400 !important;
	letter-spacing: 0.02em;
}

#banner p br {
	display: block;
	content: "";
	margin-top: 0.5em;
}

#banner .content .image {
	width: 20em !important;
	height: 20em !important;
}

#banner .content .image img {
	border: none !important;
	box-shadow: none !important;
	transition: all 0.3s ease;
}

#banner .content .image img:hover {
	transform: scale(1.02);
}

/* ================================
   EXPERIENCE LOGOS (About Section)
   ================================ */
.experience-logos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 24px;
}

.exp-logo {
	display: block;
	text-decoration: none;
	border: none;
}

.exp-logo-placeholder {
	width: 100%;
	aspect-ratio: 16/9;
	background: rgba(255, 255, 255, 0.08);
	border: 2px dashed rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.exp-logo-placeholder span {
	font-size: 0.7em;
	color: rgba(255, 255, 255, 0.3);
	font-weight: 600;
	letter-spacing: 0.05em;
}

.exp-logo:hover .exp-logo-placeholder {
	border-color: rgba(77, 171, 247, 0.5);
	background: rgba(77, 171, 247, 0.1);
}

.exp-logo-placeholder img {
	max-width: 80%;
	max-height: 80%;
	object-fit: contain;
	filter: grayscale(100%) brightness(1.2);
	opacity: 0.7;
	transition: all 0.3s ease;
}

.exp-logo:hover .exp-logo-placeholder img {
	filter: grayscale(0%) brightness(1);
	opacity: 1;
}

/* ================================
   NARROW SPOTLIGHT SECTIONS
   ================================ */
.spotlight.spotlight-narrow > .image {
	width: 30% !important;
}

.spotlight.spotlight-narrow > .content {
	width: 70% !important;
	padding: 4em 3em !important;
}

.spotlight.spotlight-narrow .scroll-content {
	max-height: 500px;
}

/* ================================
   EXPANDABLE SPOTLIGHT SECTIONS
   ================================ */
.spotlight-expandable {
	position: relative;
}

.sidebar-toggle {
	position: absolute;
	z-index: 100;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 72px;
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
	border: 2px solid rgba(77, 171, 247, 0.4);
	border-radius: 0 12px 12px 0;
	color: #4dabf7;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
}

/* Position for right-aligned spotlight (image on right) */
.spotlight.right .sidebar-toggle {
	right: 0;
	border-radius: 12px 0 0 12px;
	border-right: none;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

/* Position for left-aligned spotlight (image on left) */
.spotlight.left .sidebar-toggle {
	left: 0;
	border-radius: 0 12px 12px 0;
	border-left: none;
}

.sidebar-toggle:hover {
	background: linear-gradient(135deg, rgba(77, 171, 247, 0.2) 0%, rgba(77, 171, 247, 0.1) 100%);
	border-color: rgba(77, 171, 247, 0.8);
	color: #fff;
	transform: translateY(-50%) scale(1.05);
}

.sidebar-toggle:active {
	transform: translateY(-50%) scale(0.98);
}

.toggle-icon {
	font-size: 12px;
	line-height: 1;
	transition: transform 0.3s ease;
}

/* Expanded state - content takes 90%, image minimized */
.spotlight-expandable.spotlight-expanded > .image {
	width: 10% !important;
	opacity: 0.6;
	filter: blur(2px);
}

.spotlight-expandable.spotlight-expanded > .content {
	width: 90% !important;
	padding: 4em 5em !important;
}

.spotlight-expandable.spotlight-expanded .scroll-content {
	max-height: 650px;
}

/* Smooth transitions for expand/collapse */
.spotlight-expandable > .image,
.spotlight-expandable > .content {
	transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
	            opacity 0.4s ease,
	            filter 0.4s ease,
	            padding 0.4s ease;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Large Laptops and smaller desktops */
@media (max-width: 1440px) {
	/* Scale down entire page for laptops */
	body, input, select, textarea {
		font-size: 9pt !important;
	}
	
	/* Header adjustments for laptop screens */
	#header {
		height: 3.8em !important;
		line-height: 3.8em !important;
	}
	
	#header h1 {
		left: 0.6em !important;
	}
	
	#header nav {
		right: 0.6em !important;
	}
	
	#logo a {
		font-size: 1.05em !important;
	}
	
	#nav ul li a {
		font-size: 0.82em !important;
		padding: 0 0.45em !important;
	}
	
	#nav ul li {
		margin-left: 0.4em !important;
	}
	
	.button.primary {
		padding: 0 0.7em !important;
		font-size: 0.82em !important;
	}
	
	/* Banner adjustments */
	#banner h2 {
		font-size: 4.3em !important;
	}
	
	#banner .banner-tagline {
		font-size: 4.2em !important;
	}
	
	#banner p {
		font-size: 1.25em !important;
	}
	
	#banner .content .image {
		width: 18em !important;
		height: 18em !important;
	}
	
	#banner .content {
		padding-left: 3.5em !important;
		padding-top: 2.5em !important;
		padding-bottom: 3.5em !important;
	}
}

/* Standard Laptops */
@media (max-width: 1366px) {
	/* Scale down entire page for standard laptops */
	body, input, select, textarea {
		font-size: 8pt !important;
	}
	
	/* Header adjustments for standard laptop screens */
	#header {
		height: 3.5em !important;
		line-height: 3.5em !important;
	}
	
	#header h1 {
		left: 0.5em !important;
	}
	
	#header nav {
		right: 0.5em !important;
	}
	
	#logo a {
		font-size: 0.95em !important;
	}
	
	#nav ul li a {
		font-size: 0.75em !important;
		padding: 0 0.35em !important;
	}
	
	#nav ul li {
		margin-left: 0.3em !important;
	}
	
	.button.primary {
		padding: 0 0.6em !important;
		font-size: 0.75em !important;
	}
	
	/* Banner adjustments */
	#banner h2 {
		font-size: 3.9em !important;
	}
	
	#banner .banner-tagline {
		font-size: 3.8em !important;
	}
	
	#banner p {
		font-size: 1.2em !important;
	}
	
	#banner .content .image {
		width: 17em !important;
		height: 17em !important;
	}
	
	#banner .content {
		padding-left: 3em !important;
		padding-top: 2em !important;
		padding-bottom: 3em !important;
	}
}

/* Tablets and smaller desktops */
@media (max-width: 1280px) {
	/* Scale down entire page */
	body, input, select, textarea {
		font-size: 7.5pt !important;
	}
	
	/* Header adjustments */
	#header {
		height: 3.4em !important;
		line-height: 3.4em !important;
	}
	
	#header h1 {
		left: 0.45em !important;
	}
	
	#header nav {
		right: 0.45em !important;
	}
	
	#logo a {
		font-size: 0.9em !important;
	}
	
	#nav ul li a {
		font-size: 0.7em !important;
		padding: 0 0.3em !important;
	}
	
	#nav ul li {
		margin-left: 0.25em !important;
	}
	
	.button.primary {
		font-size: 0.7em !important;
		padding: 0 0.55em !important;
	}
	
	/* Banner adjustments */
	#banner h2 {
		font-size: 3.6em !important;
	}
	
	#banner .banner-tagline {
		font-size: 3.5em !important;
	}
	
	#banner p {
		font-size: 1.15em !important;
	}
	
	#banner .content .image {
		width: 16em !important;
		height: 16em !important;
	}
	
	#banner .content {
		padding-left: 2.5em !important;
		padding-top: 2em !important;
		padding-bottom: 2.5em !important;
	}
	
	.venture-grid,
	.service-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

/* Smaller laptops and tablets */
@media (max-width: 1024px) {
	/* Scale down entire page */
	body, input, select, textarea {
		font-size: 7pt !important;
	}
	
	/* Header adjustments for smaller laptops */
	#header {
		height: 3.3em !important;
		line-height: 3.3em !important;
	}
	
	#header h1 {
		left: 0.4em !important;
	}
	
	#header nav {
		right: 0.4em !important;
	}
	
	#logo a {
		font-size: 0.85em !important;
	}
	
	#nav ul li a {
		font-size: 0.68em !important;
		padding: 0 0.25em !important;
	}
	
	#nav ul li {
		margin-left: 0.2em !important;
	}
	
	.button.primary {
		font-size: 0.68em !important;
		padding: 0 0.5em !important;
	}
	
	/* Banner adjustments */
	#banner h2 {
		font-size: 3.3em !important;
	}
	
	#banner .banner-tagline {
		font-size: 3.2em !important;
	}
	
	#banner p {
		font-size: 1.1em !important;
	}
	
	#banner .content .image {
		width: 15em !important;
		height: 15em !important;
	}
	
	#banner .content {
		padding-left: 2em !important;
		padding-top: 1.8em !important;
		padding-bottom: 2em !important;
	}
}

/* Medium screens */
@media (max-width: 980px) {
	/* Header adjustments for tablets */
	#header {
		height: 3.2em !important;
		line-height: 3.2em !important;
	}
	
	#header h1 {
		left: 0.35em !important;
	}
	
	#header nav {
		right: 0.35em !important;
	}
	
	#logo a {
		font-size: 0.8em !important;
	}
	
	#nav ul li a {
		font-size: 0.65em !important;
		padding: 0 0.2em !important;
	}
	
	#nav ul li {
		margin-left: 0.15em !important;
	}
	
	.button.primary {
		font-size: 0.65em !important;
		padding: 0 0.45em !important;
	}
	
	#one header h2 {
		font-size: 2.8em !important;
	}
	
	#banner .content {
		padding-left: 2em !important;
		padding-right: 2em !important;
	}
	
	#banner .content header {
		max-width: 100%;
	}
	
	#banner h2 {
		font-size: 3.5em !important;
	}
	
	#banner .banner-tagline {
		font-size: 3em;
		margin-top: -0.3em;
	}
	
	#banner p {
		font-size: 1.2em !important;
	}
	
	#banner .content .image {
		width: 14em !important;
		height: 14em !important;
	}
}

/* Mobile devices */
@media (max-width: 768px) {
	/* Header adjustments for mobile */
	#header {
		height: 3.25em !important;
		line-height: 3.25em !important;
	}
	
	#logo a {
		font-size: 0.95em !important;
	}
	
	#nav ul li a {
		font-size: 0.8em !important;
		padding: 0 0.4em !important;
	}
	
	#nav ul li {
		margin-left: 0.4em !important;
	}
	
	/* Button Responsive Adjustments */
	#nav .button.primary {
		font-size: 0.75em !important;
		padding: 0.5em 1em !important;
	}
	
	.button {
		padding: 0.7em 1.8em !important;
		font-size: 0.9em !important;
	}
	
	.button.small {
		padding: 0.6em 1.5em !important;
		font-size: 0.85em !important;
	}
	
	footer.major .button,
	.actions.special .button {
		padding: 0.7em 1.5em !important;
		font-size: 0.9em !important;
		min-width: 150px;
	}
	
	.card-content-compact .button {
		padding: 0.65em 1.3em !important;
		font-size: 0.85em !important;
	}
	
	#one header h2 {
		font-size: 2.2em !important;
	}
	
	#one header p {
		font-size: 1.1em !important;
	}
	
	.venture-grid-large,
	.projects-grid-large {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.venture-card-large,
	.project-card-large {
		height: auto;
		min-height: 450px;
	}
	
	.card-image-large {
		height: 260px;
	}
	
	.card-content-compact {
		padding: 18px 20px 20px 20px;
	}
	
	.card-content-compact h3 {
		font-size: 1.3em;
	}
	
	.card-subtitle {
		font-size: 0.9em;
		height: 2.7em;
	}
	
	.chip {
		font-size: 0.75em;
		padding: 4px 10px;
	}
	
	#banner .content {
		text-align: center !important;
		padding-left: 1.5em !important;
		padding-right: 1.5em !important;
		padding-top: 3em !important;
	}
	
	#banner .content header {
		text-align: center !important;
	}
	
	#banner h2 {
		font-size: 2.8em !important;
		text-align: center !important;
		margin-top: 0.2em !important;
	}
	
	#banner h2::after {
		left: 50%;
		transform: translateX(-50%);
	}
	
	#banner .banner-tagline {
		font-size: 2.2em;
		text-align: center;
		margin-top: 0;
	}
	
	#banner p {
		font-size: 1.1em !important;
	}
	
	#banner .content .image {
		width: 12em !important;
		height: 12em !important;
	}

	.scroll-content {
		max-height: 300px;
	}
	
	.skills-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.venture-grid,
	.service-grid {
		grid-template-columns: 1fr;
	}

	.experience-logos {
		grid-template-columns: repeat(3, 1fr);
		gap: 8px;
		margin-bottom: 16px;
	}

	.spotlight.spotlight-narrow > .image,
	.spotlight.spotlight-narrow > .content {
		width: 100% !important;
	}

	.spotlight.spotlight-narrow > .content {
		padding: 2em 1.5em !important;
	}

	/* Hide toggle on mobile since sections stack */
	.sidebar-toggle {
		display: none;
	}

	.spotlight-expandable.spotlight-expanded > .image,
	.spotlight-expandable.spotlight-expanded > .content {
		width: 100% !important;
	}
}

/* Medium screens */
@media (max-width: 980px) {
	.venture-grid,
	.service-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		max-width: 600px;
	}
	
	.venture-grid-large,
	.projects-grid-large {
		grid-template-columns: 1fr;
	}
	
	.venture-card-large,
	.project-card-large {
		height: auto;
		min-height: 500px;
	}
	
	.card-image-large {
		height: 300px;
	}
	
	.card-content-compact h3 {
		font-size: 1.4em;
	}
	
	.card-subtitle {
		font-size: 0.92em;
	}
	
	/* Button Adjustments for Tablets */
	.button {
		padding: 0.75em 2em !important;
		font-size: 0.92em !important;
	}
	
	.button.small {
		padding: 0.65em 1.6em !important;
		font-size: 0.88em !important;
	}
	
	footer.major .button,
	.actions.special .button {
		padding: 0.72em 1.8em !important;
		font-size: 0.92em !important;
		min-width: 160px;
	}

	.spotlight.spotlight-narrow > .image {
		width: 35% !important;
	}

	.spotlight.spotlight-narrow > .content {
		width: 65% !important;
		padding: 3em 2em !important;
	}

	.experience-logos {
		grid-template-columns: repeat(6, 1fr);
		gap: 8px;
	}

	.exp-logo-placeholder {
		aspect-ratio: 1/1;
	}

	/* Expandable sections on tablet */
	.sidebar-toggle {
		width: 30px;
		height: 60px;
	}

	.spotlight-expandable.spotlight-expanded > .image {
		width: 15% !important;
	}

	.spotlight-expandable.spotlight-expanded > .content {
		width: 85% !important;
		padding: 3em !important;
	}
}

/* Large screens - wider content area */
@media (min-width: 1281px) {
	.spotlight.spotlight-narrow > .image {
		width: 28% !important;
	}

	.spotlight.spotlight-narrow > .content {
		width: 72% !important;
		padding: 5em 4em !important;
	}

	.spotlight.spotlight-narrow .scroll-content {
		max-height: 550px;
	}

	/* Expanded state on large screens */
	.spotlight-expandable.spotlight-expanded > .image {
		width: 8% !important;
	}

	.spotlight-expandable.spotlight-expanded > .content {
		width: 92% !important;
		padding: 5em 6em !important;
	}

	.spotlight-expandable.spotlight-expanded .scroll-content {
		max-height: 700px;
	}
}

/* ================================
   PUBLICATIONS PAGE - NEW DESIGN
   ================================ */

/* Statistics Bar */
.pub-stats-bar {
	display: flex;
	justify-content: center;
	gap: 60px;
	margin-bottom: 50px;
	padding: 24px 40px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
}

.pub-stat {
	text-align: center;
}

.pub-stat-number {
	display: block;
	font-size: 2.8em;
	font-weight: 800;
	color: #4dabf7;
	line-height: 1;
	margin-bottom: 8px;
}

.pub-stat-number.pub-stat-green {
	color: #10b981;
}

.pub-stat-number.pub-stat-amber {
	color: #f59e0b;
}

.pub-stat-label {
	font-size: 0.9em;
	color: rgba(255, 255, 255, 0.65);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 600;
}

/* Publications List */
.pub-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 900px;
	margin: 0 auto;
}

/* Publication Card */
.pub-card {
	display: flex;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.pub-card:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(77, 171, 247, 0.3);
	transform: translateX(8px);
}

.pub-card-published {
	border-left: 3px solid #10b981;
}

.pub-card-published:hover {
	border-left-color: #34d399;
}

/* Year Column */
.pub-year {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 20px;
	min-width: 80px;
	background: rgba(77, 171, 247, 0.06);
	border-right: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 1.1em;
	font-weight: 700;
	color: #4dabf7;
}

/* Content Area */
.pub-content {
	flex: 1;
	padding: 20px 24px;
}

.pub-status-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
	flex-wrap: wrap;
}

.pub-status {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 4px;
	font-size: 0.72em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.pub-status-published {
	background: rgba(16, 185, 129, 0.15);
	color: #34d399;
	border: 1px solid rgba(16, 185, 129, 0.3);
}

.pub-status-review {
	background: rgba(245, 158, 11, 0.12);
	color: #fbbf24;
	border: 1px solid rgba(245, 158, 11, 0.3);
}

.pub-status-preprint {
	background: rgba(77, 171, 247, 0.12);
	color: #7dd3fc;
	border: 1px solid rgba(77, 171, 247, 0.3);
}

.pub-journal {
	font-size: 0.85em;
	color: rgba(255, 255, 255, 0.7);
	font-style: italic;
}

.pub-if {
	font-size: 0.75em;
	color: #10b981;
	font-weight: 600;
	background: rgba(16, 185, 129, 0.1);
	padding: 2px 8px;
	border-radius: 10px;
}

.pub-title {
	font-size: 1.15em;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 10px 0;
	line-height: 1.4;
}

.pub-authors {
	font-size: 0.9em;
	color: rgba(255, 255, 255, 0.65);
	margin: 0 0 12px 0;
}

.pub-author-highlight {
	color: #4dabf7;
	font-weight: 700;
}

.pub-abstract {
	font-size: 0.9em;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.6;
	margin: 0 0 14px 0;
}

.pub-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 14px;
}

.pub-tag {
	font-size: 0.75em;
	padding: 3px 10px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: rgba(255, 255, 255, 0.7);
}

.pub-links {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.pub-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.85em;
	color: #4dabf7;
	text-decoration: none;
	padding: 6px 14px;
	background: rgba(77, 171, 247, 0.08);
	border: 1px solid rgba(77, 171, 247, 0.2);
	border-radius: 6px;
	transition: all 0.3s ease;
}

.pub-link:hover {
	background: rgba(77, 171, 247, 0.18);
	border-color: rgba(77, 171, 247, 0.5);
	color: #7dd3fc;
}

/* ================================
   WORK EXPERIENCE - TIMELINE DESIGN
   ================================ */

.timeline {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding-left: 40px;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 8px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, 
		rgba(77, 171, 247, 0.5) 0%, 
		rgba(77, 171, 247, 0.2) 50%,
		rgba(77, 171, 247, 0.05) 100%);
}

/* Year Markers */
.timeline-year-marker {
	position: relative;
	margin: 30px 0 20px -40px;
	padding-left: 40px;
}

.timeline-year-marker span {
	display: inline-block;
	background: linear-gradient(135deg, #4dabf7 0%, #38bdf8 100%);
	color: #0f172a;
	padding: 6px 20px;
	border-radius: 20px;
	font-size: 0.95em;
	font-weight: 800;
	letter-spacing: 0.05em;
}

/* Timeline Items */
.timeline-item {
	position: relative;
	margin-bottom: 24px;
}

.timeline-dot {
	position: absolute;
	left: -40px;
	top: 24px;
	width: 18px;
	height: 18px;
	background: #1e293b;
	border: 3px solid #4dabf7;
	border-radius: 50%;
	z-index: 2;
	transform: translateX(-1px);
}

.timeline-dot-small {
	width: 12px;
	height: 12px;
	border-width: 2px;
	top: 26px;
	transform: translateX(2px);
}

.timeline-dot-highlight {
	background: #d4af37;
	border-color: #f4d03f;
	width: 22px;
	height: 22px;
	border-width: 3px;
	top: 22px;
	transform: translateX(-3px);
	box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Timeline Cards */
.timeline-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 24px;
	transition: all 0.3s ease;
}

.timeline-card:hover {
	background: rgba(255, 255, 255, 0.07);
	border-color: rgba(77, 171, 247, 0.3);
	transform: translateX(6px);
}

.timeline-card-compact {
	padding: 18px 24px;
}

.timeline-card-highlight {
	border-color: rgba(212, 175, 55, 0.3);
	background: rgba(212, 175, 55, 0.03);
}

.timeline-card-highlight:hover {
	border-color: rgba(212, 175, 55, 0.5);
	background: rgba(212, 175, 55, 0.06);
}

/* Header Area */
.timeline-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.timeline-role h3 {
	font-size: 1.25em;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 6px 0;
}

.timeline-company {
	font-size: 0.95em;
	color: #4dabf7;
	margin: 0;
	font-weight: 500;
}

.timeline-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
}

.timeline-badge {
	font-size: 0.7em;
	padding: 3px 10px;
	border-radius: 4px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.timeline-current {
	background: rgba(16, 185, 129, 0.15);
	color: #34d399;
	border: 1px solid rgba(16, 185, 129, 0.3);
}

.timeline-founder {
	background: rgba(212, 175, 55, 0.15);
	color: #fbbf24;
	border: 1px solid rgba(212, 175, 55, 0.3);
}

.timeline-date {
	font-size: 0.85em;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 500;
}

/* Duties List */
.timeline-duties {
	list-style: none;
	padding: 0;
	margin: 0 0 16px 0;
}

.timeline-duties li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 8px;
	font-size: 0.92em;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.5;
}

.timeline-duties li::before {
	content: '›';
	position: absolute;
	left: 0;
	color: #4dabf7;
	font-weight: 700;
}

.timeline-duties li:last-child {
	margin-bottom: 0;
}

/* Tags */
.timeline-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.timeline-tags span {
	font-size: 0.75em;
	padding: 3px 10px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	color: rgba(255, 255, 255, 0.65);
}

/* ================================
   PUBLICATIONS & WORK EXPERIENCE RESPONSIVE
   ================================ */

@media (max-width: 768px) {
	.pub-stats-bar {
		gap: 30px;
		padding: 20px 24px;
	}
	
	.pub-stat-number {
		font-size: 2.2em;
	}
	
	.pub-card {
		flex-direction: column;
	}
	
	.pub-year {
		padding: 12px 20px;
		justify-content: flex-start;
		min-width: auto;
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	}
	
	.pub-content {
		padding: 16px 20px;
	}
	
	.pub-title {
		font-size: 1.05em;
	}
	
	.timeline {
		padding-left: 30px;
	}
	
	.timeline::before {
		left: 6px;
	}
	
	.timeline-year-marker {
		margin-left: -30px;
		padding-left: 30px;
	}
	
	.timeline-dot {
		left: -30px;
		width: 14px;
		height: 14px;
	}
	
	.timeline-dot-highlight {
		width: 18px;
		height: 18px;
	}
	
	.timeline-card {
		padding: 18px;
	}
	
	.timeline-header {
		flex-direction: column;
		gap: 10px;
	}
	
	.timeline-meta {
		flex-direction: row;
		align-items: center;
	}
	
	.timeline-role h3 {
		font-size: 1.1em;
	}
}

/* ================================
   HOW I HELP - ABOUT ME STYLE
   ================================ */

.help-section {
	padding: 80px 0;
}

.help-section-header {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	padding-bottom: 25px;
}

.help-section-header::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #f59e0b 20%, #fbbf24 50%, #f59e0b 80%, transparent);
	border-radius: 2px;
	box-shadow: 0 2px 12px rgba(245, 158, 11, 0.6);
}

.help-section-header h2 {
	font-size: 2.5em;
	margin: 0 0 15px 0;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.help-highlight {
	color: #f59e0b;
	font-weight: 900;
	text-shadow: 0 0 20px rgba(245, 158, 11, 0.6),
	             0 0 40px rgba(245, 158, 11, 0.3);
	position: relative;
	display: inline-block;
	letter-spacing: 3px;
}

.help-section-header p {
	font-size: 1.2em;
	color: rgba(255, 255, 255, 0.75);
	margin: 0;
	font-weight: 300;
}

.help-service-column {
	text-align: center;
	padding: 30px 20px;
	transition: transform 0.3s ease;
}

.help-service-column:hover {
	transform: translateY(-5px);
}

.help-service-icon {
	font-size: 4em;
	line-height: 1;
	margin-bottom: 20px;
	display: block;
	filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.3));
	transition: all 0.4s ease;
}

.help-service-column:hover .help-service-icon {
	transform: scale(1.15) rotate(5deg);
	filter: drop-shadow(0 8px 20px rgba(245, 158, 11, 0.5));
}

.help-service-column h3 {
	font-size: 1.5em;
	margin: 0 0 15px 0;
	color: #f59e0b;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.help-service-intro {
	font-size: 1em;
	color: rgba(255, 255, 255, 0.75);
	margin-bottom: 25px;
	line-height: 1.6;
	font-style: italic;
}

.help-service-list {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: left;
}

.help-service-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	font-size: 0.95em;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
	transition: all 0.3s ease;
}

.help-service-list li:before {
	content: '▸';
	position: absolute;
	left: 10px;
	color: #f59e0b;
	font-weight: bold;
	font-size: 1.2em;
	transition: all 0.3s ease;
}

.help-service-list li:hover {
	color: rgba(255, 255, 255, 1);
	transform: translateX(5px);
}

.help-service-list li:hover:before {
	left: 5px;
	color: #fbbf24;
}

/* Engagement Section */
.help-engagement-section {
	background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(212, 175, 55, 0.08) 100%);
	border: 2px solid rgba(245, 158, 11, 0.3);
	border-radius: 12px;
	padding: 35px;
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
}

.help-engagement-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 50px;
	flex-wrap: wrap;
}

.help-engagement-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	font-size: 1.1em;
	color: #fff;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: default;
}

.help-engagement-item:hover {
	transform: translateY(-5px);
	color: #fbbf24;
}

.help-engagement-icon {
	font-size: 2.5em;
	line-height: 1;
	filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.3));
	transition: all 0.3s ease;
}

.help-engagement-item:hover .help-engagement-icon {
	transform: scale(1.2);
	filter: drop-shadow(0 8px 16px rgba(245, 158, 11, 0.5));
}

/* Responsive Design */
@media screen and (max-width: 980px) {
	.help-section {
		padding: 60px 0;
	}
	
	.help-section-header {
		margin-bottom: 50px;
	}
	
	.help-section-header h2 {
		font-size: 2em;
	}
	
	.help-highlight {
		letter-spacing: 2px;
	}
	
	.help-section-header p {
		font-size: 1.1em;
	}
	
	.help-section-header::after {
		width: 100px;
		height: 3px;
	}
	
	.help-service-column {
		padding: 25px 15px;
		margin-bottom: 30px;
	}
	
	.help-service-icon {
		font-size: 3.5em;
	}
	
	.help-service-column h3 {
		font-size: 1.3em;
	}
	
	.help-service-intro {
		font-size: 0.95em;
	}
	
	.help-service-list li {
		font-size: 0.9em;
	}
	
	.help-engagement-grid {
		gap: 35px;
	}
}

@media screen and (max-width: 736px) {
	.help-section {
		padding: 50px 0;
	}
	
	.help-section-header {
		margin-bottom: 40px;
		padding-bottom: 20px;
	}
	
	.help-section-header h2 {
		font-size: 1.6em;
		margin-bottom: 12px;
	}
	
	.help-highlight {
		letter-spacing: 1.5px;
		text-shadow: 0 0 15px rgba(245, 158, 11, 0.6),
		             0 0 30px rgba(245, 158, 11, 0.3);
	}
	
	.help-section-header p {
		font-size: 1em;
	}
	
	.help-section-header::after {
		width: 80px;
		height: 3px;
	}
	
	.help-service-column {
		padding: 20px 10px;
		margin-bottom: 25px;
	}
	
	.help-service-icon {
		font-size: 3em;
		margin-bottom: 15px;
	}
	
	.help-service-column h3 {
		font-size: 1.2em;
		margin-bottom: 12px;
	}
	
	.help-service-intro {
		font-size: 0.9em;
		margin-bottom: 20px;
	}
	
	.help-service-list li {
		font-size: 0.85em;
		margin-bottom: 10px;
		padding-left: 25px;
	}
	
	.help-service-list li:before {
		font-size: 1em;
	}
	
	.help-engagement-section {
		padding: 25px 20px;
	}
	
	.help-engagement-grid {
		gap: 25px;
		flex-direction: column;
	}
	
	.help-engagement-item {
		font-size: 1em;
	}
	
	.help-engagement-icon {
		font-size: 2em;
	}
}

