/* Modern Portfolio Styles - Part 1 */
:root {
	--dark-blue: #0f172a;
	--medium-blue: #1e293b;
	--light-blue: #334155;
	--accent-blue: #3b82f6;
	--accent-blue-light: #60a5fa;
	--light-grey: #f8fafc;
	--medium-grey: #e2e8f0;
	--dark-grey: #64748b;
	--white: #ffffff;
	--text-dark: #0f172a;
	--text-medium: #334155;
	--text-light: #64748b;
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
	--shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
		sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--light-grey);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(226, 232, 240, 0.8);
	z-index: 1000;
	transition: all 0.3s ease;
}

.navbar.scrolled {
	background: rgba(255, 255, 255, 0.95);
	box-shadow: var(--shadow-sm);
}

.nav-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
}

.logo {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--dark-blue);
	letter-spacing: -0.5px;
}

.dot {
	color: var(--accent-blue);
	font-size: 2rem;
}

.nav-contact {
	display: flex;
	gap: 24px;
	align-items: center;
}

.nav-contact-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--text-medium);
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.nav-contact-item svg {
	color: var(--accent-blue);
	flex-shrink: 0;
}

.nav-contact-item:hover {
	color: var(--accent-blue);
}

.nav-contact-item:hover svg {
	transform: scale(1.1);
}

/* Hero Section */
.hero-section {
	min-height: auto;
	margin-top: 70px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	background: var(--light-grey);
	padding: 80px 0 60px 0;
}

.hero-background {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 0;
}

.gradient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.3;
	animation: float 20s ease-in-out infinite;
}

.orb-1 {
	width: 500px;
	height: 500px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	top: -10%;
	right: -5%;
	animation-delay: 0s;
}

.orb-2 {
	width: 400px;
	height: 400px;
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	bottom: -10%;
	left: -5%;
	animation-delay: 5s;
}

.orb-3 {
	width: 350px;
	height: 350px;
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	animation-delay: 10s;
}

@keyframes float {
	0%,
	100% {
		transform: translate(0, 0);
	}
	33% {
		transform: translate(30px, -30px);
	}
	66% {
		transform: translate(-20px, 20px);
	}
}

.grid-pattern {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(
			rgba(15, 23, 42, 0.03) 1px,
			transparent 1px
		),
		linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
	background-size: 50px 50px;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-left {
	animation: fadeInUp 0.8s ease-out;
}

.hero-right {
	animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(59, 130, 246, 0.1);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 50px;
	color: var(--accent-blue);
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 24px;
}

.badge-dot {
	width: 8px;
	height: 8px;
	background: var(--accent-blue);
	border-radius: 50%;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.5;
		transform: scale(1.1);
	}
}

.hero-title {
	font-size: 2.75rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 12px;
	color: var(--dark-blue);
	letter-spacing: -1px;
}

.gradient-text {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--text-medium);
	margin-bottom: 16px;
}

.hero-description {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-light);
	margin-bottom: 32px;
	max-width: 500px;
}

.hero-actions {
	display: flex;
	gap: 16px;
	margin-bottom: 0;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	font-size: 1rem;
	font-weight: 600;
	color: var(--white);
	background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
	border: none;
	border-radius: 12px;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
	transition: all 0.3s ease;
	font-family: inherit;
}

.btn-primary:hover {
	background: linear-gradient(135deg, #fbbf24 0%, #fb923c 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.btn-primary svg {
	transition: transform 0.3s ease;
}

.btn-primary:hover svg {
	transform: translateX(4px);
}

/* Contact Info */
.contact-info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 0;
}

.contact-item {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--text-medium);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: all 0.3s ease;
	padding: 8px 0;
}

.contact-item svg {
	color: var(--accent-blue);
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.contact-item:hover {
	color: var(--accent-blue);
	transform: translateX(4px);
}

.contact-item:hover svg {
	transform: scale(1.1);
}

.hero-stats {
	display: flex;
	align-items: center;
	gap: 24px;
}

.stat-item {
	text-align: left;
}

.stat-number {
	font-size: 2rem;
	font-weight: 800;
	color: var(--dark-blue);
	line-height: 1;
	margin-bottom: 4px;
}

.stat-label {
	font-size: 0.875rem;
	color: var(--text-light);
	font-weight: 500;
}

.stat-divider {
	width: 1px;
	height: 40px;
	background: var(--medium-grey);
}

/* Profile Card */
.profile-card {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.profile-image-wrapper {
	position: relative;
	width: 320px;
	height: 320px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.profile-ring,
.profile-ring-2 {
	position: absolute;
	border-radius: 50%;
	border: 2px solid;
}

.profile-ring {
	width: 100%;
	height: 100%;
	border-color: rgba(59, 130, 246, 0.2);
	animation: rotate 20s linear infinite;
}

.profile-ring-2 {
	width: 90%;
	height: 90%;
	border-color: rgba(102, 126, 234, 0.2);
	animation: rotate 15s linear infinite reverse;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.profile-image {
	width: 280px;
	height: 280px;
	border-radius: 50%;
	object-fit: cover;
	object-position: center center;
	border: 6px solid var(--white);
	box-shadow: var(--shadow-2xl);
	position: relative;
	z-index: 1;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	transform: scale(1);
}

.floating-badge {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: var(--white);
	border-radius: 50px;
	box-shadow: var(--shadow-lg);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--dark-blue);
	animation: floatBadge 3s ease-in-out infinite;
	z-index: 10;
}

.badge-1 {
	top: 9%;
	right: 2%;
	color: #f59e0b;
}

.badge-1 svg {
	color: #f59e0b;
}

.badge-2 {
	bottom: 5%;
	left: -4%;
	color: #10b981;
	animation-delay: 1.5s;
}

.badge-2 svg {
	color: #10b981;
}

.badge-3 {
	bottom: 55%;
	left: -1%;
	color: #3b82f6;
	animation-delay: 3s;
}

.badge-3 svg {
	color: #3b82f6;
}

.badge-4 {
	top: 55%;
	right: -12%;
	color: #8b5cf6;
	animation-delay: 4.5s;
}

.badge-4 svg {
	color: #8b5cf6;
}

@keyframes floatBadge {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

/* Work Section */
.work-section {
	padding: 50px 0;
	background: var(--light-grey);
	position: relative;
	overflow: hidden;
}

.work-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(
			circle at 20% 30%,
			rgba(102, 126, 234, 0.08) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 70%,
			rgba(118, 75, 162, 0.08) 0%,
			transparent 50%
		),
		linear-gradient(135deg, transparent 0%, rgba(102, 126, 234, 0.02) 100%);
	pointer-events: none;
}

.work-section::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: repeating-linear-gradient(
			0deg,
			transparent,
			transparent 2px,
			rgba(15, 23, 42, 0.02) 2px,
			rgba(15, 23, 42, 0.02) 4px
		),
		repeating-linear-gradient(
			90deg,
			transparent,
			transparent 2px,
			rgba(15, 23, 42, 0.02) 2px,
			rgba(15, 23, 42, 0.02) 4px
		);
	opacity: 0.5;
	pointer-events: none;
}

.section-title {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--dark-blue);
	margin-bottom: 12px;
	position: relative;
	letter-spacing: -0.5px;
	z-index: 1;
	display: inline-block;
	width: auto;
	left: 50%;
	transform: translateX(-50%);
	background: var(--white);
	padding: 10px 24px;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.section-title::before {
	content: "KEY MILESTONES";
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 3rem;
	font-weight: 900;
	color: var(--light-grey);
	opacity: 0.3;
	letter-spacing: 6px;
	z-index: -1;
	white-space: nowrap;
}

.section-title::after {
	content: "";
	display: block;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #667eea, #764ba2);
	margin: 4px 0 0 0;
	border-radius: 2px;
	box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	margin-top: 50px;
	position: relative;
	z-index: 1;
}

.work-card {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 28px 24px;
	border: 1px solid rgba(255, 255, 255, 0.8);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
	cursor: pointer;
	user-select: none;
}

.work-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 20px;
	padding: 2px;
	background: linear-gradient(
		135deg,
		rgba(102, 126, 234, 0.5),
		rgba(118, 75, 162, 0.5)
	);
	-webkit-mask: linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.work-card::after {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(102, 126, 234, 0.1) 0%,
		transparent 70%
	);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.work-card:hover::before {
	opacity: 1;
}

.work-card:hover::after {
	opacity: 1;
}

.work-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
	border-color: rgba(102, 126, 234, 0.3);
	background: rgba(255, 255, 255, 0.9);
}

.card-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: var(--white);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.card-icon::before {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: 18px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.work-card:hover .card-icon {
	transform: scale(1.15) rotate(-5deg);
	box-shadow: 0 12px 24px rgba(102, 126, 234, 0.4);
}

.work-card:hover .card-icon::before {
	opacity: 0.5;
}

.card-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--dark-blue);
	margin-bottom: 10px;
}

.card-description {
	font-size: 0.9rem;
	color: var(--text-light);
	line-height: 1.5;
	margin-bottom: 16px;
}

.card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--accent-blue);
	font-weight: 600;
	text-decoration: none;
	font-size: 0.875rem;
	transition: all 0.3s ease;
}

.card-link:hover {
	gap: 10px;
	color: #667eea;
}

.card-link svg {
	transition: transform 0.3s ease;
}

.card-link:hover svg {
	transform: translateX(4px);
}

/* Card Animation on Load */
@keyframes cardFadeIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.work-card {
	animation: cardFadeIn 0.6s ease-out forwards;
	opacity: 0;
}

.work-card:nth-child(1) {
	animation-delay: 0.1s;
}

.work-card:nth-child(2) {
	animation-delay: 0.2s;
}

.work-card:nth-child(3) {
	animation-delay: 0.3s;
}

.work-card:nth-child(4) {
	animation-delay: 0.4s;
}

/* Footer */
.footer {
	background: var(--dark-blue);
	padding: 32px 0;
	text-align: center;
}

.copyright {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
	font-weight: 400;
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(15, 23, 42, 0.8);
	backdrop-filter: blur(4px);
	animation: fadeIn 0.3s ease;
}

.modal.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.modal-content {
	background: var(--white);
	border-radius: 20px;
	width: 90%;
	max-width: 800px;
	max-height: 85vh;
	overflow: hidden;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
	animation: slideUp 0.3s ease;
	display: flex;
	flex-direction: column;
}

@keyframes slideUp {
	from {
		transform: translateY(50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.modal-header {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 24px 32px;
	border-bottom: 1px solid var(--medium-grey);
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	position: relative;
}

.modal-title {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--white);
	margin: 0;
	text-align: center;
}

.modal-close {
	background: rgba(255, 255, 255, 0.2);
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: var(--white);
	position: absolute;
	right: 32px;
	top: 50%;
	transform: translateY(-50%);
}

.modal-close:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-50%) rotate(90deg);
}

.modal-body {
	padding: 32px;
	overflow-y: auto;
	flex: 1;
}

.modal-tabs {
	display: flex;
	flex-direction: row;
	gap: 20px;
	flex-wrap: nowrap;
	overflow-x: auto;
}

.modal-tab {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 20px;
	background: var(--light-grey);
	border-radius: 16px;
	border: 1px solid var(--medium-grey);
	transition: all 0.3s ease;
	align-items: center;
	flex: 1;
	min-width: 200px;
	text-align: center;
	cursor: pointer;
	user-select: none;
}

.modal-tab:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
	border-color: rgba(102, 126, 234, 0.3);
}

.tab-image {
	flex-shrink: 0;
	width: 100%;
	max-width: 160px;
	height: 160px;
	border-radius: 12px;
	overflow: hidden;
	background: var(--white);
	border: 2px solid var(--medium-grey);
}

.tab-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* HRIPL Logo specific styling */
.hripl-logo-container {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
	background: var(--white);
}

.hripl-logo {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain !important;
	padding: 8px;
}

.tab-image-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: var(--white);
}

.tab-content {
	flex: 1;
}

.tab-title {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--dark-blue);
	margin-bottom: 0;
	line-height: 1.3;
}

.tab-description {
	font-size: 0.95rem;
	color: var(--text-light);
	line-height: 1.6;
}

/* Modal Responsive */
@media (max-width: 768px) {
	.modal-content {
		width: 95%;
		max-height: 90vh;
	}

	.modal-header {
		padding: 20px 24px;
	}

	.modal-title {
		font-size: 1.5rem;
	}

	.modal-body {
		padding: 24px;
	}

	.modal-tab {
		flex-direction: column;
		gap: 16px;
	}

	.tab-image {
		width: 100%;
		height: 200px;
	}
}

/* Responsive Design */
@media (max-width: 1024px) {
	.hero-content {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.hero-left {
		order: 2;
	}

	.hero-right {
		order: 1;
	}

	.hero-actions {
		justify-content: center;
	}

	.hero-stats {
		justify-content: center;
	}

	.profile-image-wrapper {
		width: 300px;
		height: 300px;
	}

	.profile-image {
		width: 250px;
		height: 250px;
	}
}

@media (max-width: 768px) {
	.nav-contact {
		flex-direction: column;
		gap: 8px;
		align-items: flex-end;
	}

	.nav-contact-item {
		font-size: 0.75rem;
	}

	.nav-contact-item span {
		max-width: 150px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1.25rem;
	}

	.hero-description {
		font-size: 1rem;
	}

	.hero-actions {
		flex-direction: column;
		width: 100%;
	}

	.btn-primary {
		width: 100%;
		justify-content: center;
	}

	.contact-info {
		align-items: flex-start;
	}

	.contact-item {
		font-size: 0.875rem;
	}

	.stat-number {
		font-size: 1.5rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.cards-grid {
		grid-template-columns: 1fr;
	}

	.profile-image-wrapper {
		width: 250px;
		height: 250px;
	}

	.profile-image {
		width: 200px;
		height: 200px;
	}

	.floating-badge {
		font-size: 0.75rem;
		padding: 8px 14px;
	}

	.badge-3,
	.badge-4 {
		display: none;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1.125rem;
	}

	.badge {
		font-size: 0.75rem;
		padding: 6px 12px;
	}

	.hero-stats {
		flex-wrap: wrap;
		gap: 16px;
	}

	.stat-divider {
		display: none;
	}
}

/* Photo Lightbox Styles */
.lightbox {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.95);
	backdrop-filter: blur(10px);
	animation: fadeIn 0.3s ease;
}

.lightbox.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-content {
	position: relative;
	width: 90%;
	max-width: 1200px;
	height: 85vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-image {
	position: absolute;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
	border-radius: 8px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-image.active {
	opacity: 1;
	pointer-events: auto;
}

.lightbox-close {
	position: absolute;
	top: 24px;
	right: 24px;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: var(--white);
	z-index: 10;
}

.lightbox-close:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(90deg);
	border-color: rgba(255, 255, 255, 0.5);
}

.lightbox-btn {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	color: var(--white);
	z-index: 10;
	top: 50%;
	transform: translateY(-50%);
}

.lightbox-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-50%) scale(1.1);
}

.lightbox-btn.prev {
	left: 24px;
}

.lightbox-btn.next {
	right: 24px;
}

.lightbox-indicators {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	justify-content: center;
	z-index: 10;
}

.lightbox-indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.lightbox-indicator.active {
	background: var(--white);
	width: 40px;
	border-radius: 6px;
}

.lightbox-indicator:hover {
	background: rgba(255, 255, 255, 0.7);
	border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive Lightbox */
@media (max-width: 768px) {
	.lightbox-content {
		width: 95%;
		height: 80vh;
	}

	.lightbox-btn {
		width: 48px;
		height: 48px;
	}

	.lightbox-btn.prev {
		left: 16px;
	}

	.lightbox-btn.next {
		right: 16px;
	}

	.lightbox-close {
		top: 16px;
		right: 16px;
		width: 48px;
		height: 48px;
	}

	.lightbox-indicators {
		bottom: 24px;
	}
}

@media (max-width: 480px) {
	.lightbox-content {
		height: 70vh;
	}

	.lightbox-btn {
		width: 40px;
		height: 40px;
	}

	.lightbox-btn svg {
		width: 20px;
		height: 20px;
	}

	.lightbox-close {
		width: 40px;
		height: 40px;
	}

	.lightbox-close svg {
		width: 24px;
		height: 24px;
	}

	.lightbox-btn.prev {
		left: 8px;
	}

	.lightbox-btn.next {
		right: 8px;
	}

	.lightbox-indicators {
		bottom: 16px;
		gap: 8px;
	}

	.lightbox-indicator {
		width: 10px;
		height: 10px;
	}

	.lightbox-indicator.active {
		width: 32px;
	}
}
