/**
 * Fixed Admissions Page CSS with Proper Card Animations
 *
 * @format
 */

:root {
	--primary: #0b5394; /* blue */
	--secondary: #ff7f11; /* orange */
	--accent: #1f6fb2; /* blue accent */
	--success: #48bb78;
	--danger: #e53e3e;
	--info: #3182ce;
	--light: #f8f9fa;
	--dark: #2d3748;
	--text: #4a5568;
	--text-light: #718096;
	--border: #e2e8f0;
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
	--gradient-primary: linear-gradient(
		135deg,
		var(--primary) 0%,
		var(--accent) 100%
	);
	--gradient-gold: linear-gradient(135deg, var(--secondary) 0%, #ffab4d 100%);
}

/* Ensure cards are visible by default */
.info-card,
.stream-card,
.fee-card,
.scholarship-card,
.faq-item,
.process-step {
	opacity: 1 !important;
	visibility: visible !important;
	transform: none !important;
}

/* Enhanced Hero Section */
.page-hero.admissions-hero {
	min-height: 70vh;
	display: flex;
	align-items: center;
	position: relative;
	background: var(--gradient-primary);
	overflow: hidden;
	padding: 120px 0 80px;
}

.page-hero.admissions-hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 20% 80%,
			rgba(212, 175, 55, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(255, 255, 255, 0.05) 0%,
			transparent 50%
		);
}

.hero-content {
	position: relative;
	z-index: 10;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.hero-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: white;
	line-height: 1.2;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 3rem;
	line-height: 1.6;
	font-weight: 300;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Enhanced Floating Shapes */
.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.floating-shape {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	animation: float 6s ease-in-out infinite;
}

.shape-1 {
	width: 120px;
	height: 120px;
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.shape-2 {
	width: 80px;
	height: 80px;
	bottom: 10%;
	right: 15%;
	animation-delay: 2s;
}

.shape-3 {
	width: 60px;
	height: 60px;
	top: 40%;
	right: 20%;
	animation-delay: 4s;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

/* Quick Info Section - Fixed Cards */
.quick-info-section {
	padding: 80px 0;
	background: white;
}

.info-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.info-card {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 30px;
	background: var(--light);
	border-radius: 15px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	border: 1px solid transparent;
}

.info-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	background: white;
	border-color: var(--secondary);
}

.info-icon {
	font-size: 2.5rem;
	color: var(--secondary);
	padding: 20px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.1);
	transition: transform 0.3s ease;
}

.info-card:hover .info-icon {
	transform: scale(1.1) rotate(5deg);
}

.info-content h3 {
	color: var(--primary);
	margin-bottom: 8px;
	font-size: 1.3rem;
	font-weight: 700;
}

.info-content p {
	color: var(--text-light);
	font-size: 0.95rem;
	line-height: 1.5;
}

/* Streams Overview - Fixed Cards */
.streams-overview-section {
	padding: 100px 0;
	background: var(--light);
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-tag {
	display: inline-block;
	background: var(--gradient-gold);
	color: white;
	padding: 8px 20px;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: var(--shadow);
}

.section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--primary);
	margin-bottom: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
}

.section-header p {
	font-size: 1.2rem;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.streams-comparison {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 40px;
	max-width: 1000px;
	margin: 0 auto;
}

.stream-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	border: 1px solid transparent;
}

.stream-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: var(--shadow-lg);
	border-color: var(--secondary);
}

.stream-header {
	padding: 40px 30px 30px;
	text-align: center;
	background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
	border-bottom: 1px solid var(--border);
	position: relative;
	overflow: hidden;
}

.stream-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(212, 175, 55, 0.05) 0%,
		transparent 50%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.stream-card:hover .stream-header::before {
	opacity: 1;
}

.stream-header h3 {
	font-size: 2rem;
	color: var(--primary);
	margin-bottom: 10px;
	font-weight: 700;
	position: relative;
	z-index: 2;
}

.stream-subtitle {
	color: var(--text-light);
	font-size: 1.1rem;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

.stream-icon {
	font-size: 3rem;
	color: var(--secondary);
	margin: 0 auto;
	padding: 20px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: var(--shadow);
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
}

.stream-card:hover .stream-icon {
	transform: scale(1.1) rotate(5deg);
	background: var(--gradient-gold);
	color: white;
}

.stream-details {
	padding: 30px;
	position: relative;
	z-index: 2;
}

.stream-details h4 {
	color: var(--primary);
	margin-bottom: 15px;
	font-size: 1.2rem;
	font-weight: 600;
}

.stream-details ul {
	list-style: none;
	margin-bottom: 25px;
}

.stream-details li {
	padding: 8px 0;
	border-bottom: 1px solid rgba(226, 232, 240, 0.8);
	color: var(--text);
	transition: all 0.3s ease;
	position: relative;
	padding-left: 20px;
}

.stream-details li:hover {
	transform: translateX(5px);
	color: var(--secondary);
}

.stream-details li:before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--secondary);
	font-weight: bold;
	font-size: 1.2rem;
}

.exam-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 25px;
}

.exam-tag {
	background: var(--gradient-primary);
	color: white;
	padding: 6px 12px;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.exam-tag:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(26, 54, 93, 0.3);
}

.eligibility {
	background: rgba(248, 249, 250, 0.8);
	padding: 20px;
	border-radius: 10px;
	margin-top: 20px;
	transition: all 0.3s ease;
}

.stream-card:hover .eligibility {
	background: rgba(212, 175, 55, 0.05);
	transform: translateY(-2px);
}

.eligibility h4 {
	margin-bottom: 8px;
}

.eligibility p {
	color: var(--text);
	font-size: 0.95rem;
}

.btn-stream {
	display: block;
	width: calc(100% - 60px);
	margin: 0 30px 30px;
	background: var(--gradient-gold);
	color: white;
	padding: 15px;
	border-radius: 12px;
	text-decoration: none;
	text-align: center;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.btn-stream::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s ease;
}

.btn-stream:hover::before {
	left: 100%;
}

.btn-stream:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Admission Process - Fixed Steps */
.admission-process-section {
	padding: 100px 0;
	background: white;
}

.process-timeline {
	max-width: 800px;
	margin: 0 auto;
}

.process-step {
	display: flex;
	gap: 30px;
	margin-bottom: 50px;
	position: relative;
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

.step-visual {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 60px;
}

.step-number {
	width: 60px;
	height: 60px;
	background: var(--gradient-gold);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	box-shadow: var(--shadow);
	z-index: 2;
	transition: all 0.3s ease;
}

.process-step:hover .step-number {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.step-connector {
	flex: 1;
	width: 3px;
	background: var(--border);
	margin: 10px 0;
	transition: background 0.3s ease;
}

.process-step:hover .step-connector {
	background: var(--secondary);
}

.process-step:last-child .step-connector {
	display: none;
}

.step-content {
	flex: 1;
	padding: 25px;
	background: var(--light);
	border-radius: 15px;
	box-shadow: var(--shadow);
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.step-content:hover {
	transform: translateX(10px);
	box-shadow: var(--shadow-lg);
	border-color: var(--secondary);
	background: white;
}

.step-content h3 {
	color: var(--primary);
	margin-bottom: 15px;
	font-size: 1.5rem;
	font-weight: 700;
}

.step-content p {
	color: var(--text);
	margin-bottom: 20px;
	line-height: 1.6;
}

.step-content ul {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.step-content li {
	padding: 8px 0;
	color: var(--text);
	font-size: 0.95rem;
	position: relative;
	padding-left: 20px;
	transition: all 0.3s ease;
}

.step-content li:hover {
	transform: translateX(5px);
	color: var(--secondary);
}

.step-content li:before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--secondary);
	font-weight: bold;
	font-size: 1.2rem;
}

/* Fee Structure - Fixed Cards */
.fee-section {
	padding: 100px 0;
	background: var(--light);
}

.fee-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.fee-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	border: 1px solid transparent;
}

.fee-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: var(--shadow-lg);
	border-color: var(--secondary);
}

.fee-card.featured {
	border: 2px solid var(--secondary);
	transform: scale(1.05);
}

.fee-card.featured:hover {
	transform: scale(1.05) translateY(-12px);
}

.featured-badge {
	position: absolute;
	top: 20px;
	right: -30px;
	background: var(--gradient-gold);
	color: white;
	padding: 8px 40px;
	font-size: 0.8rem;
	font-weight: 600;
	transform: rotate(45deg);
	box-shadow: var(--shadow);
	z-index: 3;
}

.fee-header {
	padding: 30px;
	text-align: center;
	background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
	border-bottom: 1px solid var(--border);
	position: relative;
	overflow: hidden;
}

.fee-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(212, 175, 55, 0.05) 0%,
		transparent 50%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.fee-card:hover .fee-header::before {
	opacity: 1;
}

.fee-header h3 {
	color: var(--primary);
	margin-bottom: 15px;
	font-size: 1.5rem;
	font-weight: 700;
	position: relative;
	z-index: 2;
}

.fee-amount {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 5px;
	position: relative;
	z-index: 2;
}

.currency {
	font-size: 1.2rem;
	color: var(--text-light);
	font-weight: 600;
}

.amount {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary);
}

.period {
	color: var(--text-light);
	font-size: 1rem;
}

.fee-details {
	padding: 30px;
	position: relative;
	z-index: 2;
}

.fee-details ul {
	list-style: none;
}

.fee-details li {
	padding: 12px 0;
	border-bottom: 1px solid rgba(226, 232, 240, 0.8);
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--text);
	transition: all 0.3s ease;
}

.fee-details li:hover {
	transform: translateX(5px);
	color: var(--secondary);
}

.fee-details i {
	color: var(--success);
	font-size: 0.9rem;
	transition: transform 0.3s ease;
}

.fee-details li:hover i {
	transform: scale(1.2);
}

.fee-note {
	padding: 20px 30px;
	background: rgba(248, 249, 250, 0.8);
	border-top: 1px solid var(--border);
	transition: background 0.3s ease;
}

.fee-card:hover .fee-note {
	background: rgba(212, 175, 55, 0.05);
}

.fee-note p {
	color: var(--text-light);
	font-size: 0.9rem;
	text-align: center;
}

.scholarship-info {
	background: white;
	padding: 40px;
	border-radius: 15px;
	box-shadow: var(--shadow);
	text-align: center;
	transition: all 0.3s ease;
}

.scholarship-info:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.scholarship-info h3 {
	color: var(--primary);
	margin-bottom: 15px;
	font-size: 1.8rem;
	font-weight: 700;
}

.scholarship-info > p {
	color: var(--text-light);
	margin-bottom: 30px;
	font-size: 1.1rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.scholarship-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.scholarship-card {
	padding: 25px;
	background: var(--light);
	border-radius: 10px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	border: 1px solid transparent;
}

.scholarship-card:hover {
	background: var(--gradient-primary);
	transform: translateY(-8px) scale(1.05);
	box-shadow: var(--shadow-lg);
	border-color: var(--secondary);
}

.scholarship-card:hover h4,
.scholarship-card:hover p {
	color: white;
}

.scholarship-card h4 {
	color: var(--primary);
	margin-bottom: 10px;
	font-size: 1.2rem;
	font-weight: 700;
	transition: color 0.3s ease;
}

.scholarship-card p {
	color: var(--text-light);
	font-size: 0.9rem;
	line-height: 1.5;
	transition: color 0.3s ease;
}

/* FAQ Section - Fixed Cards */
.faq-section {
	padding: 100px 0;
	background: var(--light);
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: white;
	border-radius: 10px;
	margin-bottom: 15px;
	box-shadow: var(--shadow);
	overflow: hidden;
	transition: all 0.3s ease;
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	border: 1px solid transparent;
}

.faq-item:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
	border-color: var(--secondary);
}

.faq-question {
	padding: 25px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.faq-question:hover {
	background: rgba(248, 249, 250, 0.8);
}

.faq-question h3 {
	color: var(--primary);
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0;
	transition: color 0.3s ease;
}

.faq-question:hover h3 {
	color: var(--secondary);
}

.faq-question i {
	color: var(--secondary);
	transition: all 0.3s ease;
}

.faq-item.active .faq-question i {
	transform: rotate(180deg);
}

.faq-answer {
	height: 0;
	overflow: hidden;
}

.faq-answer p {
	padding: 0 30px 25px;
	color: var(--text);
	line-height: 1.6;
	margin: 0;
}

/* Enhanced Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: none;
	cursor: pointer;
}

.btn-primary {
	background: var(--gradient-gold);
	color: white;
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.btn-outline {
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
	background: white;
	color: var(--primary);
	border-color: white;
	transform: translateY(-3px);
}

.btn i {
	transition: transform 0.3s ease;
}

.btn:hover i {
	transform: translateX(5px);
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	color: white;
	z-index: 10;
}

.scroll-indicator span {
	display: block;
	margin-bottom: 12px;
	font-size: 0.9rem;
	opacity: 0.8;
	animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
	0%,
	100% {
		opacity: 0.5;
	}
	50% {
		opacity: 1;
	}
}

.scroll-arrow {
	width: 2px;
	height: 30px;
	background: white;
	margin: 0 auto;
	position: relative;
	animation: bounce 2s infinite;
}

.scroll-arrow::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: -4px;
	width: 10px;
	height: 10px;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
	transform: rotate(45deg);
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
	.application-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.streams-comparison {
		grid-template-columns: 1fr;
	}

	.fee-cards {
		grid-template-columns: 1fr;
	}

	.fee-card.featured {
		transform: none;
	}

	.fee-card.featured:hover {
		transform: translateY(-12px);
	}
}

@media (max-width: 768px) {
	.page-hero.admissions-hero {
		min-height: 60vh;
		padding: 100px 0 60px;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.process-step {
		flex-direction: column;
		gap: 20px;
	}

	.step-visual {
		flex-direction: row;
		justify-content: center;
		gap: 20px;
	}

	.step-connector {
		width: 100%;
		height: 3px;
		margin: 0;
	}

	.step-content ul {
		grid-template-columns: 1fr;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.form-navigation {
		flex-direction: column;
		gap: 15px;
	}

	.btn-prev,
	.btn-next {
		width: 100%;
	}

	.stream-card:hover,
	.fee-card:hover,
	.scholarship-card:hover {
		transform: translateY(-8px);
	}
}

@media (max-width: 480px) {
	.info-cards {
		grid-template-columns: 1fr;
	}

	.streams-comparison {
		grid-template-columns: 1fr;
	}

	.scholarship-cards {
		grid-template-columns: 1fr;
	}

	.application-form {
		padding: 25px;
	}

	.application-info {
		padding: 25px;
	}

	.step-content:hover {
		transform: translateX(5px);
	}
}

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn:focus,
.filter-btn:focus,
.form-group input:focus,
.form-group select:focus {
	outline: 2px solid var(--secondary);
	outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.info-card,
	.stream-card,
	.fee-card,
	.scholarship-card,
	.faq-item,
	.process-step {
		transition: none !important;
		transform: none !important;
	}

	.info-card:hover,
	.stream-card:hover,
	.fee-card:hover,
	.scholarship-card:hover,
	.faq-item:hover,
	.process-step:hover {
		transform: none !important;
	}
}

/* Application Form */
.application-section {
	padding: 100px 0;
	background: white;
}

.application-container {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 50px;
	max-width: 1200px;
	margin: 0 auto;
}

.application-form {
	background: var(--light);
	padding: 40px;
	border-radius: 15px;
	box-shadow: var(--shadow);
}

.form-step {
	display: none;
}

.form-step.active {
	display: block;
}

.form-step h3 {
	color: var(--primary);
	margin-bottom: 30px;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 30px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	color: var(--primary);
	margin-bottom: 8px;
	font-weight: 600;
	font-size: 0.95rem;
}

.form-group input,
.form-group select {
	padding: 12px 15px;
	border: 1px solid var(--border);
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--secondary);
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-navigation {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}

.btn-prev,
.btn-next,
.btn-submit {
	padding: 12px 25px;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-prev {
	background: var(--light);
	color: var(--text);
	border: 1px solid var(--border);
}

.btn-next,
.btn-submit {
	background: var(--gradient-gold);
	color: white;
}

.btn-prev:hover {
	background: var(--border);
}

.btn-next:hover,
.btn-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.review-summary {
	background: white;
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.review-item {
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
	display: flex;
	justify-content: space-between;
}

.review-item:last-child {
	border-bottom: none;
}

.review-item strong {
	color: var(--primary);
}

.application-info {
	background: var(--light);
	padding: 30px;
	border-radius: 15px;
	box-shadow: var(--shadow);
	height: fit-content;
}

.application-info h3 {
	color: var(--primary);
	margin-bottom: 20px;
	font-size: 1.3rem;
	font-weight: 700;
}

.dates-timeline {
	margin-bottom: 40px;
}

.date-item {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border);
}

.date-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.date-circle {
	min-width: 12px;
	height: 12px;
	background: var(--secondary);
	border-radius: 50%;
	margin-top: 5px;
}

.date-content h4 {
	color: var(--primary);
	margin-bottom: 5px;
	font-size: 1rem;
}

.date-content p {
	color: var(--text-light);
	font-size: 0.9rem;
}

.contact-info {
	background: white;
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
	margin-bottom: 10px;
}

.contact-info > p {
	color: var(--text-light);
	margin-bottom: 20px;
	font-size: 0.95rem;
}

.contact-details p {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	color: var(--text);
	font-size: 0.9rem;
}

.contact-details i {
	color: var(--secondary);
	width: 16px;
}

/* CTA Section */
.admission-cta-section {
	padding: 100px 0;
	background: var(--gradient-primary);
	text-align: center;
	color: white;
}

.cta-content h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 1rem;
	font-weight: 700;
}

.cta-content p {
	font-size: 1.3rem;
	margin-bottom: 3rem;
	opacity: 0.9;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Enhanced Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: none;
	cursor: pointer;
}

.btn-primary {
	background: var(--gradient-gold);
	color: white;
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.btn-outline {
	background: transparent;
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
	background: white;
	color: var(--primary);
	border-color: white;
	transform: translateY(-3px);
}

.btn i {
	transition: transform 0.3s ease;
}

.btn:hover i {
	transform: translateX(5px);
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	color: white;
	z-index: 10;
}

.scroll-indicator span {
	display: block;
	margin-bottom: 12px;
	font-size: 0.9rem;
	opacity: 0.8;
	animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
	0%,
	100% {
		opacity: 0.5;
	}
	50% {
		opacity: 1;
	}
}

.scroll-arrow {
	width: 2px;
	height: 30px;
	background: white;
	margin: 0 auto;
	position: relative;
	animation: bounce 2s infinite;
}

.scroll-arrow::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: -4px;
	width: 10px;
	height: 10px;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
	transform: rotate(45deg);
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
	.application-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.streams-comparison {
		grid-template-columns: 1fr;
	}

	.fee-cards {
		grid-template-columns: 1fr;
	}

	.fee-card.featured {
		transform: none;
	}
}

@media (max-width: 768px) {
	.page-hero.admissions-hero {
		min-height: 60vh;
		padding: 100px 0 60px;
	}

	.form-grid {
		grid-template-columns: 1fr;
	}

	.process-step {
		flex-direction: column;
		gap: 20px;
	}

	.step-visual {
		flex-direction: row;
		justify-content: center;
		gap: 20px;
	}

	.step-connector {
		width: 100%;
		height: 3px;
		margin: 0;
	}

	.step-content ul {
		grid-template-columns: 1fr;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.form-navigation {
		flex-direction: column;
		gap: 15px;
	}

	.btn-prev,
	.btn-next {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.info-cards {
		grid-template-columns: 1fr;
	}

	.streams-comparison {
		grid-template-columns: 1fr;
	}

	.scholarship-cards {
		grid-template-columns: 1fr;
	}

	.application-form {
		padding: 25px;
	}

	.application-info {
		padding: 25px;
	}
}

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn:focus,
.filter-btn:focus,
.form-group input:focus,
.form-group select:focus {
	outline: 2px solid var(--secondary);
	outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
