:root {
	--primary-blue: #0f172a;
	--accent-gold: #e2e8f0;
	--bg-light: #f8fafc;
	--card-bg: #ffffff;
	--text-main: #1e293b;
	--text-muted: #64748b;
	--border-color: #e2e8f0;
	--gradient-start: #1e3a8a;
	--gradient-end: #0f172a;
}

.profile-container-b3b02f53 {
	max-width: 800px;
	margin: 2rem auto;
	background: var(--bg-light);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: var(--text-main);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	line-height: 1.6;
}

/* 1. Header & Banner */
.profile-header-b3b02f53 {
	background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
	padding: 4.5rem 2rem 5.5rem 2rem;
	text-align: center;
	position: relative;
	color: #ffffff;
}

.header-overlay-b3b02f53 {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at top right, rgba(212, 163, 89, 0.15), transparent);
	pointer-events: none;
}

.header-content-b3b02f53 {
	position: relative;
	z-index: 2;
}

.profile-name-b3b02f53 {
	font-size: 2.25rem;
	font-weight: 700;
	margin: 0 0 0.5rem 0;
	letter-spacing: -0.025em;
	color: #ffffff;
}

.profile-title-b3b02f53 {
	font-size: 1.15rem;
	color: #93c5fd;
	margin: 0;
	font-weight: 500;
	letter-spacing: 0.025em;
}

/* 2. Profile Photo Placeholder */
.photo-wrapper-b3b02f53 {
	display: flex;
	justify-content: center;
	margin-top: -90px;
	position: relative;
	z-index: 10;
}

.profile-photo-b3b02f53 {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: #ffffff;
	border: 6px solid #ffffff;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	padding: 10px;
	box-sizing: border-box;
}

.profile-photo-b3b02f53:hover {
	transform: scale(1.03);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
	border-color: #f1f5f9;
}

.photo-icon-b3b02f53 {
	width: 44px;
	height: 44px;
	margin-bottom: 8px;
	stroke: var(--gradient-start);
}

.photo-text-b3b02f53 {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Body Content Styling */
.profile-body-b3b02f53 {
	padding: 2rem;
}

/* 3. Key Info Cards */
.info-grid-b3b02f53 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
	margin-bottom: 2rem;
}

.info-card-b3b02f53 {
	background: var(--card-bg);
	padding: 1.25rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
	border: 1px solid var(--border-color);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card-b3b02f53:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.info-label-b3b02f53 {
	display: block;
	font-size: 0.75rem;
	text-transform: uppercase;
	color: var(--text-muted);
	font-weight: 600;
	margin-bottom: 0.25rem;
}

.info-value-b3b02f53 {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--text-main);
}

/* General Sections */
.section-card-b3b02f53 {
	background: var(--card-bg);
	padding: 2rem;
	border-radius: 12px;
	margin-bottom: 1.5rem;
	border: 1px solid var(--border-color);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.section-heading-b3b02f53 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 1rem;
	color: var(--primary-blue);
	border-bottom: 2px solid var(--border-color);
	padding-bottom: 0.5rem;
}

.section-text-b3b02f53 {
	font-size: 1rem;
	color: var(--text-main);
	margin: 0;
}

/* 5. Interests & Expertise Banner Tags */
.tags-container-b3b02f53 {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.tag-badge-b3b02f53 {
	background: #eff6ff;
	color: #1e3a8a;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	font-size: 0.9rem;
	font-weight: 600;
	transition: background 0.2s ease, color 0.2s ease;
}

.tag-badge-b3b02f53:hover {
	background: #1e3a8a;
	color: #ffffff;
}

/* 6. Key Qualities */
.qualities-list-b3b02f53 {
	list-style: none;
	padding: 0;
	margin: 0;
}

.qualities-list-b3b02f53 li {
	display: flex;
	align-items: flex-start;
	font-size: 1rem;
	margin-bottom: 0.75rem;
	color: var(--text-main);
}

.qualities-list-b3b02f53 li:last-child {
	margin-bottom: 0;
}

.check-icon-b3b02f53 {
	color: #10b981;
	font-weight: bold;
	margin-right: 0.75rem;
	font-size: 1.1rem;
}

/* 7. Vision / Goals Highlight */
.highlight-box-b3b02f53 {
	background: linear-gradient(135deg, rgba(30, 58, 138, 0.04) 0%, rgba(15, 23, 42, 0.02) 100%);
	border-left: 4px solid var(--gradient-start);
}

.font-italic-b3b02f53 {
	font-style: italic;
	font-size: 1.1rem;
	line-height: 1.7;
	color: #1e293b;
}

/* 8. Experience & Skills Section */
.sub-experience-b3b02f53 {
	margin-bottom: 1.5rem;
}

.sub-heading-b3b02f53 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-muted);
	margin-top: 0;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.skills-wrapper-b3b02f53 {
	border-top: 1px solid var(--border-color);
	padding-top: 1.5rem;
}

.skills-grid-b3b02f53 {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.skill-pill-b3b02f53 {
	background: #f1f5f9;
	color: var(--text-main);
	padding: 0.4rem 0.8rem;
	border-radius: 6px;
	font-size: 0.85rem;
	font-weight: 500;
	border: 1px solid var(--border-color);
}

/* 9. Footer & Contact */
.profile-footer-b3b02f53 {
	background: var(--card-bg);
	padding: 2rem;
	border-radius: 12px;
	border: 1px solid var(--border-color);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
	margin-top: 1.5rem;
}

.contact-info-b3b02f53 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.contact-item-b3b02f53 {
	font-size: 0.95rem;
}

.contact-item-b3b02f53 strong {
	color: var(--primary-blue);
	margin-right: 0.25rem;
}

/* Responsive Grid Layout Rules */
@media (max-width: 640px) {
	.profile-container-b3b02f53 {
		margin: 1rem;
	}
	
	.profile-name-b3b02f53 {
		font-size: 1.75rem;
	}

	.profile-title-b3b02f53 {
		font-size: 1rem;
	}

	.info-grid-b3b02f53 {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.contact-info-b3b02f53 {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}
}
