/* ===================================
   DESIGN ENHANCEMENT STYLESHEET
   Modern, Professional & Visually Appealing
   =================================== */

/* ===================================
   COLOR PALETTE & DESIGN VARIABLES
   =================================== */
:root {
	--primary-color: #FFBC09;
	--primary-dark: #DF9C00;
	--dark-bg: #07294D;
	--light-bg: #F9F9F9;
	--text-dark: #292b2c;
	--text-light: #888888;
	--border-color: #E8E8E8;
	--transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* ===================================
   ENHANCED BANNER SECTION
   =================================== */
.banner_section .banner_slide_content {
	top: 50%;
	transform: translateY(-50%);
}

.banner_content h2 {
	font-size: 56px;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 25px;
	letter-spacing: -0.5px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.banner_content p {
	font-size: 20px;
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 35px;
	opacity: 0.95;
}

.banner_content .btn {
	margin-right: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: var(--transition);
}

.banner_content .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ===================================
   ENHANCED CATEGORY BOX SECTION
   =================================== */
.single_categories a {
	border-radius: 8px;
	padding: 35px 25px;
	font-weight: 600;
	font-size: 16px;
	letter-spacing: 0.3px;
	transition: var(--transition);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.single_categories a:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.single_categories i {
	font-size: 36px;
	margin-bottom: 15px;
	transition: var(--transition);
}

.single_categories a:hover i {
	transform: scale(1.15) rotate(5deg);
}

/* ===================================
   ENHANCED ICON BOX SECTION
   =================================== */
.icon_box_style1 {
	border-radius: 10px;
	transition: var(--transition);
	border: 2px solid var(--border-color);
	padding: 20px;
}

.icon_box_style1:hover {
	border-color: var(--primary-color);
	box-shadow: 0 8px 30px rgba(255, 188, 9, 0.15);
	transform: translateY(-12px);
}

.box_icon {
	background: linear-gradient(135deg, rgba(255, 188, 9, 0.1), rgba(255, 188, 9, 0.05));
	border-radius: 8px;
	padding: 12px;
	width: fit-content;
	margin-bottom: 15px;
}

.icon_box_style1 .box_icon i {
	color: var(--primary-color);
	font-size: 36px;
}

.intro_desc h5 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--text-dark);
}

.intro_desc p {
	font-size: 14px;
	color: var(--text-dark);
	line-height: 1.6;
}

/* ===================================
   ENHANCED FEATURE SECTION
   =================================== */
.heading_s1 h2 {
	font-size: 42px;
	font-weight: 800;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.heading_s1 h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), transparent);
	border-radius: 2px;
}

/* ===================================
   ENHANCED COURSE CARDS
   =================================== */
.content_box {
	border-radius: 12px;
	overflow: hidden;
	transition: var(--transition);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--border-color);
	background: #fff;
}

.content_box:hover {
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	transform: translateY(-10px);
	border-color: var(--primary-color);
}

.content_img {
	height: 220px;
	overflow: hidden;
	background: var(--light-bg);
}

.content_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.content_box:hover .content_img img {
	transform: scale(1.08) rotate(1deg);
}

.content_desc {
	padding: 20px;
}

.content_title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--text-dark);
}

.content_desc p {
	font-size: 14px;
	line-height: 1.7;
	color: var(--text-light);
	margin-bottom: 0;
}

/* ===================================
   ENHANCED TEAM/FACULTY SECTION
   =================================== */
.team_box {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: var(--transition);
	border: 1px solid var(--border-color);
}

.team_box:hover {
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
	transform: translateY(-8px);
}

.team_img {
	height: 280px;
	overflow: hidden;
	background: linear-gradient(135deg, #667eea 0%, var(--primary-color) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.team_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.team_box:hover .team_img img {
	transform: scale(1.1);
}

.team_title {
	padding: 20px;
	background: #fff;
	text-align: center;
}

.team_title h5 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 8px 0;
	color: var(--text-dark);
}

.team_title span {
	font-size: 13px;
	color: var(--primary-color);
	font-weight: 600;
	letter-spacing: 0.3px;
}

/* ===================================
   ENHANCED ABOUT SECTION
   =================================== */
.bg_gray {
	background: linear-gradient(135deg, #F9F9F9 0%, #F5F5F5 100%);
}

.about_img {
	border-radius: 0 12px 12px 0;
}

/* ===================================
   ENHANCED COUNTER SECTION
   =================================== */
.box_counter {
	padding: 30px 20px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	transition: var(--transition);
	text-align: center;
}

.box_counter:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: translateY(-8px);
}

.counter_icon {
	margin-bottom: 20px;
}

.counter_icon img {
	max-width: 70px;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
	transition: var(--transition);
}

.box_counter:hover .counter_icon img {
	transform: scale(1.1);
}

.counter_text {
	font-size: 36px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 8px;
}

.box_counter p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
	letter-spacing: 0.5px;
}

/* ===================================
   ENHANCED FORM SECTION
   =================================== */
.register_form {
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
	border-radius: 12px;
	backdrop-filter: blur(10px);
	padding: 40px;
}

.form-control {
	border: 2px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border-radius: 6px;
	padding: 12px 15px;
	font-size: 14px;
	transition: var(--transition);
}

.form-control::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.form-control:focus {
	border-color: var(--primary-color);
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	box-shadow: 0 0 0 0.2rem rgba(255, 188, 9, 0.2);
}

.custom_select select {
	border: 2px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border-radius: 6px;
	padding: 10px 30px 10px 15px;
	transition: var(--transition);
}

.custom_select select:focus {
	border-color: var(--primary-color);
	background: rgba(255, 255, 255, 0.12);
}

.custom_select select option {
	background: var(--dark-bg);
	color: #fff;
}

/* ===================================
   ENHANCED BUTTONS
   =================================== */
.btn-default {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
	border: none;
	border-radius: 6px;
	font-weight: 600;
	letter-spacing: 0.4px;
	box-shadow: 0 4px 15px rgba(255, 188, 9, 0.3);
	transition: var(--transition);
}

.btn-default:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 188, 9, 0.4);
	background: linear-gradient(135deg, var(--primary-dark), #cc8b00);
}

.btn-outline-white {
	background: transparent;
	border: 2px solid #fff;
	color: #fff;
	border-radius: 6px;
	font-weight: 600;
	letter-spacing: 0.4px;
	transition: var(--transition);
}

.btn-outline-white:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--primary-color);
	border-color: var(--primary-color);
}

/* ===================================
   ENHANCED FOOTER
   =================================== */
.footer_dark {
	background: linear-gradient(135deg, var(--dark-bg), #05213a);
	padding-top: 60px;
}

.top_footer {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget_title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
	position: relative;
	padding-bottom: 12px;
}

.widget_title::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background: var(--primary-color);
	border-radius: 2px;
}

.widget_links li a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	transition: var(--transition);
	position: relative;
	padding-left: 8px;
}

.widget_links li a:hover {
	color: var(--primary-color);
	transform: translateX(4px);
}

.contact_info li i {
	color: var(--primary-color);
}

.contact_info a {
	color: rgba(255, 255, 255, 0.7);
	transition: var(--transition);
}

.contact_info a:hover {
	color: var(--primary-color);
}

.newsletter_form input {
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	border-radius: 6px;
	transition: var(--transition);
}

.newsletter_form input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.newsletter_form input:focus {
	background: rgba(255, 255, 255, 0.15);
	border-color: var(--primary-color);
}

.bottom_footer {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 25px 0;
	background: rgba(0, 0, 0, 0.2);
}

/* ===================================
   ENHANCED HEADER
   =================================== */
.header_wrap {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar-nav .nav-link {
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.3px;
	transition: var(--transition);
	position: relative;
}

.navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transform: translateX(-50%);
	transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
	width: 80%;
	margin-bottom:11px;
}

/* ===================================
   ENHANCED ANIMATIONS
   =================================== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.animation {
	animation-duration: 0.8s;
	animation-fill-mode: both;
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */
@media only screen and (max-width: 768px) {
	.banner_content h2 {
		font-size: 40px;
	}

	.banner_content p {
		font-size: 16px;
	}

	.heading_s1 h2 {
		font-size: 32px;
	}

	.register_form {
		padding: 30px 20px;
	}

	.team_img {
		height: 220px;
	}

	.about_img {
		border-radius: 0;
		min-height: 300px;
	}
}

@media only screen and (max-width: 480px) {
	.banner_content h2 {
		font-size: 28px;
		margin-bottom: 15px;
	}

	.banner_content .btn {
		display: block;
		width: 100%;
		margin-bottom: 10px;
		margin-right: 0;
	}

	.heading_s1 h2 {
		font-size: 26px;
	}

	.single_categories a {
		padding: 25px 15px;
	}

	.content_box {
		margin-top: 15px;
	}

	.register_form {
		padding: 20px 15px;
	}
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-gradient {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.shadow-lg {
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

.rounded-lg {
	border-radius: 12px !important;
}

.transition-smooth {
	transition: var(--transition);
}