/* ===== PREPARATION PAGE - MODERN MINIMAL DESIGN ===== */

/* Bangla Font Support */
html[lang="bn"] body,
html[lang="bn"] h1,
html[lang="bn"] h2,
html[lang="bn"] h3,
html[lang="bn"] h4,
html[lang="bn"] p,
html[lang="bn"] li,
html[lang="bn"] span,
html[lang="bn"] a,
html[lang="bn"] button,
html[lang="bn"] .lang-btn {
	font-family: "Hind Siliguri", "Outfit", sans-serif;
}

html[lang="bn"] .header h1,
html[lang="bn"] .section-card h2,
html[lang="bn"] .step-content h3,
html[lang="bn"] .category-item h3,
html[lang="bn"] .prize-item h3 {
	font-family: "Hind Siliguri", "Syne", sans-serif;
}

/* Body Background */
body {
	background: #f8f9fa;
}

/* Language Toggle - Clean */
.language-toggle {
	position: fixed;
	top: 20px;
	right: 20px;
	display: inline-flex;
	gap: 4px;
	background: white;
	padding: 6px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
	z-index: 1000;
	border: 1px solid #e2e8f0;
}

.lang-btn {
	padding: 8px 16px;
	border-radius: 6px;
	text-decoration: none;
	color: #718096;
	font-weight: 500;
	transition: all 0.2s ease;
	font-size: 0.875rem;
	letter-spacing: 0;
}

.lang-btn:hover {
	color: #2c3e50;
	background: #f8f9fa;
}

.lang-btn.active {
	background: #2c3e50;
	color: white;
	box-shadow: 0 2px 4px rgba(44, 62, 80, 0.2);
}

/* Preparation Wrapper - Clean Layout */
.preparation-wrapper {
	max-width: 800px;
	margin: 0 auto;
	padding: 80px 20px 60px;
	position: relative;
}

/* Logo Container - Minimal */
.logo-container {
	text-align: center;
	margin-bottom: 40px;
}

/* Header - Clean Typography */
.header {
	text-align: center;
	margin-bottom: 48px;
}

.header h1 {
	font-family: "Syne", sans-serif;
	color: #2c3e50;
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 12px;
	letter-spacing: -0.025em;
	line-height: 1.25;
}

.subtitle p {
	color: #718096;
	font-size: 1rem;
	line-height: 1.625;
	max-width: 650px;
	margin: 0 auto;
	font-weight: 400;
}

/* Section Cards - Minimal Shadcn Style */
.section-card {
	background: white;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 16px;
	transition: all 0.2s ease;
}

.section-card:hover {
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.section-card h2 {
	font-family: "Syne", sans-serif;
	color: #2c3e50;
	font-size: 1.25rem;
	margin-bottom: 16px;
	font-weight: 600;
	letter-spacing: -0.025em;
	display: flex;
	align-items: center;
	gap: 10px;
}

.section-icon {
	flex-shrink: 0;
	color: #4a90e2;
	stroke-width: 1.5;
}

.section-intro {
	font-weight: 500;
	color: #718096;
	margin-bottom: 16px;
	font-size: 0.95rem;
	line-height: 1.625;
}

/* Timeline List - Minimal */
.timeline-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.timeline-list li {
	padding: 12px 16px;
	background: #f8f9fa;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	line-height: 1.625;
	color: #2d3748;
	transition: all 0.2s ease;
	font-size: 0.9375rem;
}

.timeline-list li:hover {
	background: white;
	border-color: #cbd5e0;
}

.timeline-list li strong {
	color: #2c3e50;
	font-weight: 600;
}

.note {
	margin-top: 12px;
	padding: 10px 14px;
	background: #f8f9fa;
	border-radius: 8px;
	font-size: 0.875rem;
	color: #718096;
	border: 1px solid #e2e8f0;
}

/* Prize Grid - Clean Cards */
.prize-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-bottom: 16px;
}

.prize-item {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	transition: all 0.2s ease;
}

.prize-item:hover {
	background: white;
	border-color: #cbd5e0;
}

.prize-item h3 {
	font-family: "Syne", sans-serif;
	color: #2c3e50;
	font-size: 1rem;
	margin-bottom: 10px;
	font-weight: 600;
}

.prize-item p {
	color: #718096;
	line-height: 1.625;
	font-size: 0.9375rem;
}

.achievement-banner {
	background: #27ae60;
	color: white;
	padding: 16px 20px;
	border-radius: 8px;
	text-align: center;
	font-size: 0.9375rem;
	line-height: 1.625;
	box-shadow: 0 2px 4px rgba(39, 174, 96, 0.2);
}

.achievement-banner strong {
	font-weight: 600;
}

/* Registration Details - Clean Grid */
.reg-grid {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 20px;
}

.reg-item {
	background: #f8f9fa;
	padding: 14px 16px;
	border-radius: 8px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #e2e8f0;
	transition: all 0.2s ease;
}

.reg-item:hover {
	background: white;
	border-color: #cbd5e0;
}

.reg-label {
	font-weight: 600;
	color: #2c3e50;
	font-size: 0.9375rem;
}

.reg-value {
	color: #718096;
	font-weight: 500;
	font-size: 0.9375rem;
}

.reg-value.free {
	color: #27ae60;
	font-weight: 700;
	font-size: 1rem;
}

.reg-value.deadline {
	color: #e74c3c;
	font-weight: 700;
}

.cta-section {
	text-align: center;
	margin-top: 20px;
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-register {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #4a90e2;
	color: white;
	padding: 12px 32px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9375rem;
	transition: all 0.2s ease;
	box-shadow: 0 2px 4px rgba(74, 144, 226, 0.2);
	font-family: "Syne", sans-serif;
	letter-spacing: -0.025em;
}

.btn-register:hover {
	background: #3a7bc8;
	box-shadow: 0 4px 6px rgba(74, 144, 226, 0.3);
}

.btn-exam {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
	color: white;
	padding: 12px 32px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9375rem;
	transition: all 0.2s ease;
	box-shadow: 0 2px 4px rgba(39, 174, 96, 0.2);
	font-family: "Syne", sans-serif;
	letter-spacing: -0.025em;
}

.btn-exam:hover {
	background: linear-gradient(135deg, #229954 0%, #1e8449 100%);
	box-shadow: 0 4px 6px rgba(39, 174, 96, 0.3);
	transform: translateY(-1px);
}

/* Category Grid - Minimal Icons */
.category-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.category-item {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	border: 1px solid #e2e8f0;
	transition: all 0.2s ease;
}

.category-item:hover {
	background: white;
	border-color: #cbd5e0;
}

.category-icon {
	width: 48px;
	height: 48px;
	background: #2c3e50;
	color: white;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0 auto 12px;
	font-family: "Syne", sans-serif;
}

.category-item h3 {
	font-family: "Syne", sans-serif;
	color: #2c3e50;
	font-size: 1rem;
	margin-bottom: 6px;
	font-weight: 600;
}

.category-item p {
	color: #718096;
	font-size: 0.875rem;
	margin: 0;
}

/* Selection Process Steps - Clean Timeline */
.process-steps {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.step-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.step-number {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	background: #4a90e2;
	color: white;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.125rem;
	font-weight: 600;
	font-family: "Syne", sans-serif;
	box-shadow: 0 2px 4px rgba(74, 144, 226, 0.2);
}

.step-content {
	flex: 1;
	background: #f8f9fa;
	padding: 16px;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	transition: all 0.2s ease;
}

.step-content:hover {
	background: white;
	border-color: #cbd5e0;
}

.step-content h3 {
	font-family: "Syne", sans-serif;
	color: #2c3e50;
	font-size: 0.9375rem;
	margin-bottom: 6px;
	font-weight: 600;
}

.step-content p {
	color: #718096;
	line-height: 1.625;
	margin: 0;
	font-size: 0.9375rem;
}

.step-content strong {
	color: #2c3e50;
	font-weight: 600;
}

/* Resources - Clean Links */
.resource-links {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 16px;
}

.resource-link {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px;
	background: #f8f9fa;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.resource-link:hover {
	border-color: #cbd5e0;
	background: white;
}

.link-icon {
	flex-shrink: 0;
	color: #4a90e2;
	margin-top: 2px;
}

.link-content {
	flex: 1;
}

.link-content strong {
	display: block;
	color: #2c3e50;
	font-size: 0.9375rem;
	margin-bottom: 4px;
	font-weight: 600;
}

.link-url,
.link-description {
	display: block;
	color: #718096;
	font-size: 0.8125rem;
	line-height: 1.5;
}

/* Contact Details - Clean Layout */
.contact-details {
	margin-top: 12px;
}

.contact-details p {
	margin-bottom: 10px;
	color: #718096;
	line-height: 1.625;
	font-size: 0.9375rem;
}

.contact-details strong {
	color: #2c3e50;
	font-weight: 600;
}

.contact-details a {
	color: #4a90e2;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.2s ease;
	text-decoration: underline;
	text-decoration-color: #cbd5e0;
	text-underline-offset: 2px;
}

.contact-details a:hover {
	text-decoration-color: #4a90e2;
}

/* Footer Message */
.footer-message {
	text-align: center;
	padding: 20px;
	margin-top: 24px;
	background: #f8f9fa;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
}

.footer-message p {
	color: #2c3e50;
	font-size: 1rem;
	margin: 0;
	font-weight: 500;
}

/* Action Buttons */
.action-buttons {
	text-align: center;
	margin-top: 16px;
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 24px;
	background: white;
	color: #718096;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 500;
	font-size: 0.9375rem;
	transition: all 0.2s ease;
	border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
	background: #f8f9fa;
	color: #2c3e50;
	border-color: #cbd5e0;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet & Below */
@media (max-width: 768px) {
	.preparation-wrapper {
		padding: 70px 16px 40px;
	}

	.header h1 {
		font-size: 1.625rem;
	}

	.subtitle p {
		font-size: 0.9375rem;
	}

	.section-card {
		padding: 20px;
	}

	.section-card h2 {
		font-size: 1.125rem;
	}

	.prize-grid,
	.category-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.step-item {
		gap: 12px;
	}

	.step-number {
		width: 36px;
		height: 36px;
		font-size: 1rem;
	}

	.btn-register {
		width: 100%;
		padding: 12px 24px;
	}
}

/* Mobile */
@media (max-width: 480px) {
	.language-toggle {
		top: 12px;
		right: 12px;
		padding: 3px;
	}

	.lang-btn {
		padding: 5px 10px;
		font-size: 0.8125rem;
	}

	.preparation-wrapper {
		padding: 60px 16px 32px;
	}

	.logo-placeholder img {
		width: 98%;
		height: 98%;
	}

	.header h1 {
		font-size: 1.5rem;
	}

	.subtitle p {
		font-size: 0.875rem;
	}

	.section-card {
		padding: 16px;
		margin-bottom: 12px;
	}

	.section-card h2 {
		font-size: 1rem;
		gap: 8px;
	}

	.section-icon {
		width: 20px;
		height: 20px;
	}

	.timeline-list li {
		padding: 10px 12px;
		font-size: 0.875rem;
	}

	.reg-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
		padding: 12px;
	}

	.btn-register {
		padding: 10px 20px;
		font-size: 0.875rem;
	}

	.btn-exam {
		padding: 10px 20px;
		font-size: 0.875rem;
	}

	.btn-secondary {
		padding: 8px 16px;
		font-size: 0.875rem;
	}

	.category-icon {
		width: 40px;
		height: 40px;
		font-size: 1.125rem;
	}

	.step-number {
		width: 32px;
		height: 32px;
		font-size: 0.9375rem;
	}

	.step-content {
		padding: 12px;
	}

	.step-content h3 {
		font-size: 0.875rem;
	}

	.step-content p {
		font-size: 0.8125rem;
	}

	.resource-link {
		padding: 12px;
		gap: 10px;
	}

	.link-icon {
		width: 18px;
		height: 18px;
	}

	.link-content strong {
		font-size: 0.875rem;
	}

	.link-url,
	.link-description {
		font-size: 0.75rem;
	}

	.achievement-banner {
		padding: 14px 16px;
		font-size: 0.8125rem;
	}

	.footer-message {
		padding: 16px;
	}

	.footer-message p {
		font-size: 0.9375rem;
	}
}

/* Smooth scroll behavior */
html {
	scroll-behavior: smooth;
}

/* Smooth scroll behavior */
html {
	scroll-behavior: smooth;
}
