/* Basic styles (Keep existing styles) */
.title-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px; /* Added margin */
}
.title-container img {
	width: 80px; /* Adjusted size */
	height: 80px;
}
.title-container div {
	flex: 1;
	text-align: center;
	padding: 0 15px; /* Added padding */
}
.title-container h3,
.title-container p {
	margin: 2px 0; /* Reduced margin */
}
hr {
	border: none;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.2); /* Adjusted color */
	margin-bottom: 30px; /* Added margin */
}
footer {
	position: relative; /* Changed from fixed */
	margin-top: 40px; /* Added margin */
	background-color: transparent; /* Adjusted background */
	text-align: center;
	padding: 20px 0;
}
a {
	color: var(--accent-primary); /* Use theme color */
	text-decoration: none;
}
a:hover {
	color: var(--accent-secondary); /* Use theme color */
	text-decoration: underline;
}
footer a {
	font-weight: bold;
}
/* Theme and Layout Styles (Keep existing styles) */
:root {
	--font-family: "Poppins", sans-serif;
	--bg-gradient-start: #0f2027;
	--bg-gradient-mid: #203a43;
	--bg-gradient-end: #2c5364;
	--text-primary: #f0f0f0;
	--text-secondary: #ccc;
	--accent-primary: #6dd5ed;
	--accent-secondary: #2193b0;
	--container-bg: rgba(30, 45, 55, 0.3);
	--container-border: rgba(255, 255, 255, 0.18);
	--blur-effect: blur(12px);
	--shadow-color: rgba(0, 0, 0, 0.3);
	--button-primary-bg: #3498db;
	--button-primary-hover: #2980b9;
	--button-secondary-bg: #28a745; /* Original secondary button color */
	--button-secondary-hover: #218838;
	--section-header-bg: rgba(255, 255, 255, 0.1);
	--section-header-hover: rgba(255, 255, 255, 0.18);
	--input-bg: rgba(255, 255, 255, 0.9);
	--input-text: #333;
	--border-radius-lg: 20px;
	--border-radius-md: 12px;
	--border-radius-sm: 8px;
	--transition-speed: 0.4s;
	--transition-timing: ease-in-out;
}
*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: var(--font-family);
	background: linear-gradient(-45deg, var(--bg-gradient-start), var(--bg-gradient-mid), var(--bg-gradient-end), var(--bg-gradient-mid));
	background-size: 400% 400%;
	animation: gradientBG 18s ease infinite;
	color: var(--text-primary);
	padding: 40px 20px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	min-height: 100vh;
}
@keyframes gradientBG {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}
.container {
	width: 100%;
	max-width: 850px;
	background: var(--container-bg);
	border-radius: var(--border-radius-lg);
	padding: 40px;
	backdrop-filter: var(--blur-effect);
	-webkit-backdrop-filter: var(--blur-effect);
	border: 1px solid var(--container-border);
	box-shadow: 0 10px 40px 0 var(--shadow-color);
	animation: fadeInContainer 1s var(--transition-timing) forwards;
	opacity: 0;
}
@keyframes fadeInContainer {
	from { opacity: 0; transform: translateY(20px) scale(0.98); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Page Header (Keep existing styles) */
h2.page-title { /* More specific selector */
	text-align: center;
	font-size: 2rem; /* Adjusted size */
	font-weight: 600;
	margin-bottom: 30px; /* Added margin */
	color: var(--text-primary); /* Ensure visibility */
}
h2.page-title i {
	margin-right: 10px;
	color: var(--accent-primary); /* Icon color */
}
/* Main Button (Keep existing styles) */
.select-degree-btn {
	display: block;
	margin: 0 auto 40px;
	padding: 16px 35px;
	font-size: 1.1rem;
	font-weight: 600;
	background: var(--button-primary-bg);
	border: none;
	border-radius: var(--border-radius-md);
	color: white;
	cursor: pointer;
	transition: all var(--transition-speed) var(--transition-timing);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.select-degree-btn i { margin-right: 8px; } /* Icon spacing */
.select-degree-btn::before {
	content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
	background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
	transition: left var(--transition-speed) ease-in-out; z-index: -1;
}
.select-degree-btn:hover {
	background: var(--button-primary-hover); transform: translateY(-3px) scale(1.03);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.select-degree-btn:hover::before { left: 100%; }
.select-degree-btn:active { transform: translateY(-1px) scale(1); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); }

	/* Sections Styling (Keep existing styles) */
.degree-sections { display: none; }
.degree-sections.visible { display: block; animation: fadeInSections 0.8s var(--transition-timing) forwards; }
	@keyframes fadeInSections { from { opacity: 0; } to { opacity: 1; } }
.section {
	margin-bottom: 30px; background: rgba(0,0,0, 0.1); border-radius: var(--border-radius-md);
	overflow: hidden; transition: all var(--transition-speed) var(--transition-timing);
}
.section:hover { background: rgba(0,0,0, 0.15); }
.section-header {
	font-size: 1.4rem; font-weight: 600; padding: 20px 25px; background: var(--section-header-bg);
	border-radius: var(--border-radius-md) var(--border-radius-md) 0 0; cursor: pointer;
	transition: background var(--transition-speed) var(--transition-timing); position: relative;
	display: flex; justify-content: space-between; align-items: center;
}
.section-header i { margin-right: 10px; color: var(--accent-primary); } /* Icon styling */
.section-header:hover { background: var(--section-header-hover); }
.section-header::after { /* Chevron icon */
	content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 1rem;
	transition: transform var(--transition-speed) var(--transition-timing); transform-origin: center;
}
.section-header.active::after { transform: rotate(180deg); }
.section-body {
	max-height: 0; overflow: hidden;
	transition: max-height 0.6s ease-in-out, padding 0.6s ease-in-out;
	padding: 0 25px; background: rgba(0,0,0, 0.05);
	/* NEW: Add border-radius for bottom corners when open */
	border-bottom-left-radius: var(--border-radius-md);
	border-bottom-right-radius: var(--border-radius-md);
}
.section-body.open {
	max-height: 2000px; /* Increased max-height */
	padding: 25px;
}
/* --- NEW: Styles for Distance Ed Subsections --- */
.subsection {
	margin-bottom: 20px; /* Spacing between UG/PG in Distance Ed */
	background: rgba(255, 255, 255, 0.04); /* Slightly different background */
	border-radius: var(--border-radius-sm); /* Smaller radius */
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
}
.subsection:last-child { margin-bottom: 0; }
.subsection-header {
	font-size: 1.2rem; /* Slightly smaller than section header */
	font-weight: 500;
	padding: 15px 20px;
	background: rgba(0, 0, 0, 0.1); /* Darker than subsection body */
	border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
	cursor: pointer;
	transition: background var(--transition-speed) var(--transition-timing);
	position: relative;
	display: flex; justify-content: space-between; align-items: center;
	color: var(--text-secondary); /* Slightly dimmer text */
}
.subsection-header i {
	margin-right: 8px;
	color: var(--accent-secondary); /* Different icon color */
	font-size: 1.1rem; /* Slightly smaller icon */
}
.subsection-header:hover { background: rgba(0, 0, 0, 0.18); }
.subsection-header::after { /* Chevron icon */
	content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 0.9rem; /* Smaller chevron */
	transition: transform var(--transition-speed) var(--transition-timing); transform-origin: center;
	color: var(--text-secondary);
}
.subsection-header.active {
	color: var(--text-primary); /* Brighter text when active */
}
.subsection-header.active::after { transform: rotate(180deg); }
.subsection-body {
	max-height: 0; overflow: hidden;
	transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
	padding: 0 20px; /* Slightly less padding */
	background: rgba(0,0,0, 0.02); /* Very subtle background */
	border-bottom-left-radius: var(--border-radius-sm);
	border-bottom-right-radius: var(--border-radius-sm);
}
.subsection-body.open {
	max-height: 1500px; /* Adjust if needed */
	padding: 20px;
}
/* --- End NEW Subsection Styles --- */
.year-block {
	background: rgba(255, 255, 255, 0.05); padding: 20px; /* Reduced padding */
	border-radius: var(--border-radius-sm);
	margin-bottom: 15px; /* Reduced margin */
	animation: fadeInUpItem 0.5s ease-out forwards; opacity: 0; transform: translateY(10px);
}
/* Ensure animation applies within subsections too */
.section-body.open .year-block,
.subsection-body.open .year-block {
	animation-delay: 0.1s; /* Stagger animation */
	opacity: 0; /* Reset for animation */
	transform: translateY(10px); /* Reset for animation */
	animation: fadeInUpItem 0.5s ease-out forwards;
}
/* Stagger animations within opened bodies */
.section-body.open .year-block:nth-child(2),
.subsection-body.open .year-block:nth-child(2) { animation-delay: 0.15s; }
.section-body.open .year-block:nth-child(3),
.subsection-body.open .year-block:nth-child(3) { animation-delay: 0.2s; }
.section-body.open .year-block:nth-child(4),
.subsection-body.open .year-block:nth-child(4) { animation-delay: 0.25s; }
/* Add more if needed */
.year-block:last-child { margin-bottom: 0; }
	@keyframes fadeInUpItem { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
label {
	font-weight: 500; display: block; margin-bottom: 12px; /* Adjusted margin */
	font-size: 1.05rem; /* Adjusted size */
	color: var(--text-primary);
}
/* Button inside year-block (Keep existing styles) */
.select-course-btn { /* Renamed class for clarity */
	display: inline-block; /* Changed from none */
	padding: 12px 25px;
	margin-top: 10px; /* Added margin */
	font-size: 1rem;
	font-weight: 500;
	background: var(--button-secondary-bg); /* Use secondary color */
	border: none;
	border-radius: var(--border-radius-sm);
	color: white;
	cursor: pointer;
	transition: all var(--transition-speed) var(--transition-timing);
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.select-course-btn i { margin-left: 8px; } /* Icon position */
.select-course-btn::before {
	content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
	background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
	transition: left var(--transition-speed) ease-in-out; z-index: -1;
}
.select-course-btn:hover {
	background: var(--button-secondary-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.select-course-btn:hover::before { left: 100%; }
.select-course-btn:active { transform: translateY(0px); box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2); }
/* Focus Styles (Keep existing styles) */
*:focus-visible {
	outline: 2px solid var(--accent-primary); outline-offset: 2px;
	box-shadow: 0 0 0 4px rgba(109, 213, 237, 0.4);
}
/* Footer (Keep existing styles) */
.footer {
	margin-top: 50px; text-align: center; font-size: 0.9rem;
	color: var(--text-secondary); opacity: 0.8; /* Slightly more visible */
}
/* Responsive Adjustments (Keep existing styles, maybe add minor tweaks if needed for subsections) */
@media (max-width: 768px) {
	body { padding: 20px 10px; }
.container { padding: 25px; }
.title-container img { width: 60px; height: 60px; }
.title-container h3 { font-size: 1rem; }
.title-container p { font-size: 12px; }
h2.page-title { font-size: 1.6rem; margin-bottom: 25px; }
.select-degree-btn { padding: 14px 30px; font-size: 1rem; }
.section-header { font-size: 1.2rem; padding: 15px 20px; }
.section-body { padding: 0 20px; }
.section-body.open { padding: 20px; max-height: none; /* Allow full expansion */ }
/* Adjust subsection padding */
.subsection-header { font-size: 1.1rem; padding: 12px 15px; }
.subsection-body { padding: 0 15px; }
.subsection-body.open { padding: 15px; max-height: none; }
.year-block { padding: 15px; }
label { font-size: 1rem; margin-bottom: 10px;}
.select-course-btn { font-size: 0.95rem; padding: 10px 20px; }
}
@media (max-width: 480px) {
.title-container { flex-direction: column; text-align: center;}
.title-container img { margin-bottom: 10px; }
h2.page-title { font-size: 1.4rem; }
.select-degree-btn { width: 90%; font-size: 0.9rem; padding: 12px 25px;}
.section-header { font-size: 1.1rem; padding: 12px 15px;}
.section-header::after { font-size: 0.9rem; }
/* Adjust subsection header */
.subsection-header { font-size: 1rem; padding: 10px 12px; }
.subsection-header::after { font-size: 0.8rem; }
.section-body.open { padding: 15px; }
.subsection-body.open { padding: 12px; }
.year-block { padding: 12px; }
label { font-size: 0.95rem; }
.select-course-btn { width: 100%; text-align: center; font-size: 0.9rem; padding: 10px 15px; }
}
@media print {
.no-print{
	display:none;
}
.table {
	width:100% ! important;
}
}
.ftitle { font-size:26px; }
.stitle { font-size:24px; }
.ttitle,.fotitle { font-size:20px; }
	input[type=text]:focus {
	background-color:cyan
}