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

:root {
	--primary-color: #6366f1;
	--secondary-color: #8b5cf6;
	--accent-color: #ec4899;
	--light-bg: #0f172a;
	--lighter-bg: #1e293b;
	--text-dark: #ffffff;
	--text-gray: #cbd5e1;
	--card-bg: rgba(30, 41, 59, 0.5);
	--gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	--gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	--gradient-vibrant: linear-gradient(
		135deg,
		#667eea 0%,
		#764ba2 50%,
		#f093fb 100%
	);
	--gradient-ocean: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--gradient-sunset: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	--gradient-mesh: linear-gradient(
		135deg,
		#667eea 0%,
		#764ba2 25%,
		#f093fb 50%,
		#4facfe 75%,
		#00f2fe 100%
	);
}

html {
	scroll-behavior: smooth;
}

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

/* Background Animation */
.background-animation {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.circle {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.5;
	animation: float 20s infinite ease-in-out;
}

.circle-1 {
	width: 700px;
	height: 700px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	top: -300px;
	left: -300px;
	animation-delay: 0s;
}

.circle-2 {
	width: 600px;
	height: 600px;
	background: linear-gradient(135deg, #f093fb, #f5576c);
	bottom: -250px;
	right: -250px;
	animation-delay: 7s;
}

.circle-3 {
	width: 550px;
	height: 550px;
	background: linear-gradient(135deg, #4facfe, #00f2fe);
	top: 50%;
	left: 50%;
	animation-delay: 14s;
}

@keyframes float {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(100px, -100px) scale(1.1);
	}
	66% {
		transform: translate(-100px, 100px) scale(0.9);
	}
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(30, 41, 59, 0.8);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	z-index: 1000;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-text {
	font-size: 1.5rem;
	font-weight: bold;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-link {
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 1rem;
	border-radius: 8px;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--gradient-1);
	transition: width 0.3s ease;
}

.nav-link:hover {
	background: rgba(102, 126, 234, 0.1);
}

.nav-link:hover::after {
	width: 80%;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: var(--text-dark);
	transition: all 0.3s ease;
}

/* Hero Section */
.hero {
	min-height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3rem 2rem;
	position: relative;
	overflow: hidden;
}

.particle-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

.hero-content {
	max-width: 1200px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-title {
	font-size: 2.8rem;
	margin-bottom: 1rem;
	animation: fadeInUp 1s ease;
	font-weight: 700;
	line-height: 1.3;
}

.wave {
	display: inline-block;
	animation: wave 2s infinite;
}

@keyframes wave {
	0%,
	100% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(20deg);
	}
	75% {
		transform: rotate(-20deg);
	}
}

.gradient-text {
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.2rem;
	color: var(--text-gray);
	margin-bottom: 1rem;
	animation: fadeInUp 1s ease 0.2s both;
	font-weight: 400;
}

.hero-intro {
	font-size: 1rem;
	color: var(--text-gray);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	animation: fadeInUp 1s ease 0.3s both;
	opacity: 0.9;
}

.hero-contact-info {
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease 0.5s both;
}

.contact-detail {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
	color: var(--text-gray);
}

.contact-detail:last-child {
	margin-bottom: 0;
}

.contact-detail a {
	color: var(--text-gray);
	text-decoration: none;
	transition: all 0.3s ease;
}

.contact-detail a:hover {
	color: var(--primary-color);
	text-decoration: underline;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	animation: fadeInUp 1s ease 0.6s both;
}

.btn {
	padding: 0.875rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
}

.btn-primary {
	background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
	color: white;
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
	position: relative;
	overflow: hidden;
}

.btn-primary::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.5s;
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-primary:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 15px 40px rgba(255, 107, 53, 0.7);
}

.btn-secondary {
	background: rgba(102, 126, 234, 0.1);
	color: var(--text-dark);
	border: 2px solid rgba(102, 126, 234, 0.5);
	backdrop-filter: blur(10px);
}

.btn-secondary:hover {
	background: var(--gradient-1);
	border-color: transparent;
	color: white;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.floating-card {
	animation: floatCard 6s ease-in-out infinite;
}

.card-content {
	background: rgba(30, 41, 59, 0.6);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 20px;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-image {
	max-width: 320px;
	margin: 0 auto;
}

.profile-img {
	width: 100%;
	height: auto;
	border-radius: 20px;
	object-fit: cover;
	filter: drop-shadow(0 10px 30px rgba(102, 126, 234, 0.8));
}

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

.scroll-indicator {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
}

.mouse {
	width: 30px;
	height: 50px;
	border: 2px solid var(--primary-color);
	border-radius: 20px;
	position: relative;
}

.mouse::before {
	content: "";
	width: 6px;
	height: 6px;
	background: var(--primary-color);
	border-radius: 50%;
	position: absolute;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	animation: scroll 2s infinite;
}

@keyframes scroll {
	0% {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
	100% {
		opacity: 0;
		transform: translateX(-50%) translateY(20px);
	}
}

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

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Section Title */
.section-title {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
	padding-bottom: 1rem;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: var(--gradient-1);
	border-radius: 2px;
}

/* About Section */
.about {
	padding: 6rem 0;
}

.about-content {
	max-width: 800px;
	margin: 0 auto;
}

.about-description {
	font-size: 1.1rem;
	color: var(--text-gray);
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

.stat-item {
	text-align: center;
	padding: 2rem;
	background: rgba(30, 41, 59, 0.6);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-10px) scale(1.05);
	box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
	border-color: rgba(102, 126, 234, 0.5);
}

.stat-number {
	font-size: 3rem;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: bold;
}

.stat-label {
	color: var(--text-gray);
	margin-top: 0.5rem;
}

/* Highlights Title Style */
.highlights-title {
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	margin: 0 auto 3rem;
	padding: 1rem 2rem;
	background: white;
	color: #000;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-bottom: 4px solid #667eea;
	max-width: fit-content;
	letter-spacing: 0.05em;
}

/* My Work Section */
.work {
	padding: 4rem 0;
	background: rgba(15, 23, 42, 0.5);
	position: relative;
}

.work::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(102, 126, 234, 0.05) 0%,
		rgba(118, 75, 162, 0.05) 100%
	);
	pointer-events: none;
}

.work-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
}

.work-card {
	background: rgba(30, 41, 59, 0.6);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 15px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.work-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
	border-color: rgba(102, 126, 234, 0.5);
}

.work-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.work-image img {
	width: 100%;
	height: 100%;
	object-fit: inherit;
	transition: transform 0.3s ease;
	background-color: #fff;
	border-radius: 10px;
}

.work-card:hover .work-image img {
	transform: scale(1.1);
}

.work-content {
	padding: 1rem;
	text-align: center;
}

.work-title {
	font-size: 1.1rem;
	margin: 0;
	color: var(--text-dark);
}

.skill-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.skill-card h3 {
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.skill-bar {
	width: 100%;
	height: 10px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	overflow: hidden;
	margin: 1rem 0;
	position: relative;
}

.skill-bar::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	animation: shimmer 2s infinite;
}

@keyframes shimmer {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.skill-progress {
	height: 100%;
	background: var(--gradient-1);
	border-radius: 10px;
	width: 0;
	transition: width 1.5s ease;
	position: relative;
	box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.skill-card p {
	color: var(--text-gray);
	font-size: 0.9rem;
}

/* Projects Section */
.projects {
	padding: 4rem 0;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
}

.project-card {
	background: rgba(30, 41, 59, 0.6);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 15px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.project-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
	border-color: rgba(102, 126, 234, 0.5);
}

.project-image {
	height: 200px;
	background: var(--gradient-1);
	position: relative;
	overflow: hidden;
}

.project-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
	opacity: 1;
}

.project-link {
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
}

.project-info {
	padding: 1.5rem;
}

.project-info h3 {
	margin-bottom: 0.5rem;
	font-size: 1.3rem;
}

.project-info p {
	color: var(--text-gray);
	margin-bottom: 1rem;
	font-size: 0.95rem;
}

.project-tags {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.tag {
	padding: 0.3rem 0.8rem;
	background: rgba(102, 126, 234, 0.2);
	border-radius: 20px;
	font-size: 0.8rem;
	color: var(--primary-color);
}

/* Contact Section */
.contact {
	padding: 6rem 0;
	background: #f1f5f9;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	max-width: 1000px;
	margin: 0 auto;
}

.contact-info h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.contact-info p {
	color: var(--text-gray);
	margin-bottom: 2rem;
}

.contact-methods {
	margin-bottom: 2rem;
}

.contact-method {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	color: var(--text-gray);
}

.contact-icon {
	font-size: 1.5rem;
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-link {
	padding: 0.5rem 1.5rem;
	background: var(--card-bg);
	border: 1px solid rgba(37, 99, 235, 0.2);
	border-radius: 25px;
	color: var(--primary-color);
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 500;
}

.social-link:hover {
	background: var(--gradient-1);
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1rem;
	background: var(--card-bg);
	border: 1px solid rgba(37, 99, 235, 0.2);
	border-radius: 10px;
	color: var(--text-dark);
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.form-group textarea {
	resize: vertical;
}

/* Footer */
.footer {
	text-align: center;
	padding: 2rem;
	background: rgba(15, 23, 42, 0.8);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #94a3b8;
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	align-items: center;
	justify-content: center;
	animation: fadeIn 0.3s ease;
}

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

.modal-content {
	background: linear-gradient(
		135deg,
		rgba(30, 41, 59, 0.95) 0%,
		rgba(15, 23, 42, 0.95) 100%
	);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(102, 126, 234, 0.3);
	border-radius: 20px;
	padding: 2.5rem;
	max-width: 800px;
	width: 90%;
	max-height: 85vh;
	overflow-y: auto;
	position: relative;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
		0 0 100px rgba(102, 126, 234, 0.2);
	animation: slideUp 0.4s ease;
}

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

.modal-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	font-size: 2rem;
	color: var(--text-gray);
	cursor: pointer;
	transition: all 0.3s ease;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.05);
}

.modal-close:hover {
	color: var(--primary-color);
	background: rgba(102, 126, 234, 0.2);
	transform: rotate(90deg);
}

.modal-title {
	font-size: 2rem;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 2rem;
	font-weight: 700;
	text-align: center;
}

.research-papers-list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.research-paper-link {
	text-decoration: none;
	color: inherit;
	display: block;
	max-width: 350px;
	width: 100%;
}

.research-paper-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2rem 1.5rem;
	background: rgba(30, 41, 59, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.research-paper-item:hover {
	transform: translateY(-10px);
	border-color: rgba(102, 126, 234, 0.5);
	box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
	background: rgba(30, 41, 59, 0.8);
}

.pdf-icon {
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	border-radius: 15px;
	overflow: hidden;
}

.pdf-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.research-paper-content {
	width: 100%;
}

.research-paper-title {
	font-size: 1.1rem;
	color: var(--text-dark);
	margin: 0 0 0.5rem 0;
	font-weight: 600;
	line-height: 1.4;
}

.research-paper-meta {
	color: var(--text-gray);
	font-size: 0.9rem;
	margin: 0;
}

.work-card {
	cursor: pointer;
}

/* Jantar Mantar Modal Styles */
.jantar-mantar-list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.jantar-mantar-link {
	text-decoration: none;
	color: inherit;
	display: block;
	max-width: 350px;
	width: 100%;
}

.jantar-mantar-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2rem 1.5rem;
	background: rgba(30, 41, 59, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.jantar-mantar-item:hover {
	transform: translateY(-10px);
	border-color: rgba(102, 126, 234, 0.5);
	box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
	background: rgba(30, 41, 59, 0.8);
}

.jantar-mantar-image {
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	border-radius: 15px;
	overflow: hidden;
}

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

.jantar-mantar-content {
	width: 100%;
}

.jantar-mantar-title {
	font-size: 1.1rem;
	color: var(--text-dark);
	margin: 0 0 0.5rem 0;
	font-weight: 600;
	line-height: 1.4;
}

.jantar-mantar-meta {
	color: var(--text-gray);
	font-size: 0.9rem;
	margin: 0;
}

.jantar-mantar-button-container {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}

.jantar-learn-more-btn {
	padding: 0.875rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.jantar-learn-more-content {
	padding: 1rem 0;
	color: var(--text-gray);
	line-height: 1.8;
	font-size: 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.jantar-learn-more-content p {
	margin-bottom: 1rem;
}

.jantar-learn-more-image {
	width: 100%;
	max-width: 400px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.jantar-learn-more-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Observerships Modal Styles */
.observerships-content {
	padding: 1rem 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.observerships-tabs {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 2rem;
	flex-wrap: nowrap;
}

.observership-link {
	text-decoration: none;
	color: inherit;
	display: block;
	max-width: 350px;
	width: 100%;
}

.observership-tab-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2rem 1.5rem;
	background: rgba(30, 41, 59, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	transition: all 0.3s ease;
	cursor: pointer;
	max-width: 350px;
	width: 100%;
}

.observership-tab-card:hover {
	transform: translateY(-10px);
	border-color: rgba(102, 126, 234, 0.5);
	box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
	background: rgba(30, 41, 59, 0.8);
}

.observership-card-image {
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	border-radius: 15px;
	overflow: hidden;
}

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

.observership-tab-title {
	font-size: 1.1rem;
	color: var(--text-dark);
	margin: 0;
	font-weight: 600;
	line-height: 1.4;
}

.work-card {
	cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background: rgba(30, 41, 59, 0.98);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		padding: 2rem 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	}

	.nav-menu.active {
		left: 0;
	}

	.hero-content {
		grid-template-columns: 1fr;
		text-align: center;
	}

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

	.hero-buttons {
		justify-content: center;
		flex-wrap: wrap;
	}

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

	.contact-content {
		grid-template-columns: 1fr;
	}

	.modal-content {
		padding: 1.5rem;
		width: 95%;
		max-height: 90vh;
	}

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

	.research-papers-list {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.research-paper-item {
		padding: 1.5rem 1rem;
	}

	.pdf-icon {
		width: 100px;
		height: 100px;
		margin-bottom: 1rem;
	}

	.research-paper-title {
		font-size: 1rem;
	}

	.modal-close {
		top: 1rem;
		right: 1rem;
		width: 35px;
		height: 35px;
		font-size: 1.5rem;
	}

	.jantar-mantar-list {
		gap: 1.5rem;
	}

	.jantar-mantar-item {
		padding: 1.5rem 1rem;
	}

	.jantar-mantar-image {
		width: 100px;
		height: 100px;
		margin-bottom: 1rem;
	}

	.jantar-mantar-title {
		font-size: 1rem;
	}

	.jantar-learn-more-image {
		max-width: 100%;
		border-radius: 10px;
	}

	.jantar-mantar-button-container {
		margin-top: 1.5rem;
	}

	.jantar-learn-more-btn {
		padding: 0.75rem 1.5rem;
		font-size: 0.9rem;
	}

	.observerships-tabs {
		flex-direction: column;
		gap: 1.5rem;
	}

	.observership-tab-card {
		padding: 1.5rem 1rem;
	}

	.observership-card-image {
		width: 100px;
		height: 100px;
		margin-bottom: 1rem;
	}

	.observership-tab-title {
		font-size: 1rem;
	}
}
