.container-header {
	padding: 10px 60px;
}

.header-icon {
	background-color: white;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

.swayam-logo-container img {
	height: 60px;
	width: 120px;
}

.navbar-nav {
	flex-wrap: wrap;
	justify-content: center;
}

.header-nav-link {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	padding: 8px 12px !important;
	font-size: 16px;
	text-align: center;
	white-space: nowrap;
	display: inline-block;
}

.header-nav-link:hover {
	color: #007BFF;
}

.nav-item {
	display: flex;
	align-items: center;
	justify-content: center;
}

.col-auto.d-flex.align-items-center {
	gap: 15px;
}

.notification-header-icon {
	font-size: 20px;
	margin: 0 8px;
	cursor: pointer;
	position: relative;
}

.notification-bell {
	position: relative;
	cursor: pointer;
}

.has-notification .notification-indicator {
	display: block;
	animation: blinkNotification 1s infinite;
}

@keyframes blinkNotification {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0.3;
	}

	100% {
		opacity: 1;
	}
}

.login-btn {
	background-color: #0053A1;
	color: white;
	padding: 8px 16px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	margin-left: 10px;
	white-space: nowrap;
}

.login-btn:hover {
	background-color: #003e7a;
	color: white;
}

.language-selector {
	border: 1px solid;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 10px;
	cursor: pointer;
	position: relative;
}

@media (max-width: 1200px) {
	.navbar-collapse {
		justify-content: center !important;
	}

	.navbar-nav {
		width: 100%;
		justify-content: center;
	}
}

.user-profile-dropdown {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.user-profile-dropdown.active .profile-dropdown-icon {
	transform: rotate(180deg);
}

.user-avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: #0053A1;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 600;
	margin-right: 5px;
}

.profile-dropdown-icon {
	cursor: pointer;
	font-size: 12px;
	color: #333;
	transition: transform 0.3s ease;
}

.user-profile-dropdown.active .profile-dropdown-icon {
	transform: rotate(180deg);
}

.profile-dropdown-menu {
	position: absolute;
	top: calc(100% + 5px);
	right: 0;
	background: white;
	min-width: 220px;
	border-radius: 6px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
	display: none;
	z-index: 1200;
}

.profile-dropdown-menu.show {
	display: block;
}


.profile-email {
	padding: 12px 15px;
	border-bottom: 1px solid #eee;
	font-size: 14px;
	color: #004AAD;
	word-break: break-all;
	font-weight: 500;
}

.profile-menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.profile-menu-list li {
	padding: 0;
}

.profile-menu-list li a {
	display: flex;
	align-items: center;
	padding: 10px 15px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	transition: background-color 0.2s ease;
}


.profile-menu-list li a:hover {
	background-color: #DEE2F9;
}

.profile-menu-list li a i {
	width: 20px;
	margin-right: 8px;
	color: #555;
}

.profile-menu-list li.separator {
	height: 1px;
	background-color: #eee;
	margin: 5px 0;
}

.menu-icon {
	width: 30px;
	height: 30px;
	margin-right: 10px;
	vertical-align: middle;
}

.has-notification .notification-indicator {
	display: block;
	animation: blinkNotification 1s infinite;
}

@keyframes blinkNotification {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0.3;
	}

	100% {
		opacity: 1;
	}
}

.notification-indicator {
	position: absolute;
	top: -2px;
	right: 9px;
	width: 10px;
	height: 10px;
	background-color: red;
	border-radius: 50%;
	display: none;
}

.notification-popup {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	width: 280px;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	z-index: 1100;
	display: none;
	border: 1px solid #93939333;
}

.notification-popup.show {
	display: block;
}

.notification-header {
	padding: 12px 15px;
	border-bottom: 1px solid #eee;
	background-color: #f8f9fa;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.no-notifications {
	padding: 20px;
	text-align: center;
	color: #888;
	font-size: 14px;
}

.notification-item {
	list-style: none;
	padding: 10px 15px;
	border-bottom: 1px solid #eee;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.notification-item:hover {
	background-color: #f0f8ff;
}

.notification-item a {
	color: #333;
	text-decoration: none;
	display: block;
	font-size: 14px;
}

.notification-list {
	list-style: none;
	padding: 0;
	margin: 0;
	max-height: 300px;
	overflow-y: auto;
}

.blink_notice {
	color: red;
	animation: blink 2s ease infinite;
}

@keyframes blink {
	from {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.redirect-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2000;
}

.redirect-popup-content {
	background-color: #fff;
	width: 90%;
	max-width: 500px;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.redirect-header {
	background-color: #0053A1;
	color: white;
	padding: 15px 20px;
	font-size: 22px;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.redirect-header .close-icon {
	cursor: pointer;
	font-size: 24px;
}

.redirect-body {
	padding: 20px;
}

.redirect-body p {
	font-size: 18px;
	margin-bottom: 25px;
	text-align: center;
}

.redirect-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
}

.redirect-btn {
	padding: 10px 25px;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	border: none;
	font-weight: 500;
}

.continue-btn {
	background-color: #f5f5f5;
	color: #333;
}

.continue-btn:hover {
	background-color: #e5e5e5;
}

.close-btn {
	background-color: #f5f5f5;
	color: #333;
}

.close-btn:hover {
	background-color: #e5e5e5;
}

.mobile-header {
	display: none;
	padding: 12px 15px;
	background-color: white;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}


@media (max-width: 1000px) {
	.desktop-header {
		display: none;
	}

	.mobile-header {
		display: flex !important;
	}

	.notification-popup {
		position: fixed;
		top: 60px;
		left: 0;
		right: 0;
		width: 100%;
		max-width: 100%;
		border-radius: 0;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

	.notification-header {
		border-radius: 0;
	}

	.spoc-popup-content {
	    width: 95%;
        height: auto;
        margin: 10px;
   }

   .spoc-body {
     padding: 20px 15px;
   }
}

.hamburger-icon,
.mobile-notification {
	font-size: 22px;
	color: #333;
	cursor: pointer;
}


.mobile-menu {
	position: fixed;
	top: 0;
	left: -300px;
	width: 300px;
	height: 100%;
	background-color: white;
	box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
	z-index: 1100;
	transition: left 0.3s ease;
	overflow-y: auto;
	padding: 20px 0;
}

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

.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px 20px;
	border-bottom: 1px solid #eee;
}

.mobile-menu-close {
	font-size: 22px;
	color: #333;
	cursor: pointer;
}

.mobile-menu-login {
	margin-right: 20px;
	border-bottom: 1px solid #eee;
}

.mobile-menu-login .login-btn {
	display: block;
	width: 100%;
	text-align: center;
}

.mobile-menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
}


.mobile-menu-link {
	display: block;
	padding: 15px 20px;
	color: black;
	text-decoration: none;
	font-weight: 500;
}

.mobile-menu-link:hover {
	background-color: #DEE2F9;
	color: #007BFF;
}

.mobile-translate-link {
	display: block;
	padding: 15px 20px;
	color: black;
	font-weight: 500;
	cursor: pointer;
}

.mobile-translate-link:hover {
	background-color: #DEE2F9;
	color: #007BFF;
}

.dropdown-icon {
	float: right;
	transition: transform 0.3s ease;
}

.dropdown-icon.rotated {
	transform: rotate(180deg);
}

.language-submenu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: none;
	background-color: #f8f9fa;
}

.language-submenu .language-item {
	padding: 12px 20px 12px 35px;
	cursor: pointer;
	color: #333;
	font-weight: 400;
}

.language-submenu .language-item:hover {
	background-color: #e9ecef;
	color: #007BFF;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1050;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 995;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.overlay.active {
	opacity: 1;
	visibility: visible;
}

.spoc-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2000;
}

.spoc-popup-content {
	background-color: #fff;
	width: 100%;
	max-width: 700px;
	border-radius: 0;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.spoc-header {
	background-color: #003366;
	color: white;
	padding: 15px 20px;
	font-size: 24px;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.spoc-header .close-icon {
	cursor: pointer;
	font-size: 24px;
}

.spoc-body {
	padding: 30px 20px;
}

.spoc-container {
	max-width: 600px;
	margin: 0 auto;
}

.spoc-group {
	margin-bottom: 20px;
}

.spoc-group.required label {
	font-weight: 500;
	font-size: 18px;
	color: #444;
	margin-bottom: 10px;
	display: block;
}

.spoc-form-control {
	display: block;
	width: 100%;
	padding: 10px;
	font-size: 16px;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: 4px;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	height: 45px;
}

.course_recommendation {
	cursor: pointer;
	bottom: 3%;
	right: 1%;
	position: fixed;
	z-index: 1000;
	border: 2px;
	border-radius: 10px;
	background-color: white;
	padding: 5px;
	display: flex;
	gap: 12px;
	border-style: solid;
	border-color: #DEE2F9;
	box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}


.course_recommendation_image {
	display: flex;
	align-content: center;
	justify-content: center;
	flex-wrap: wrap;
}

.course-recommendation-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1999;
	display: none;
}

.course-recommendation-popup {
	min-height: 150px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	z-index: 2000;
	display: none;
	max-width: 90%;
	max-height: 90%;
	overflow: auto;
	min-width: 80%;
}

.cr-close-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background-color: white;
	color: red;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 50;
}

.cr-close-btn::before,
.cr-close-btn::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 2px;
	background-color: red;
}

.cr-close-btn::before {
	transform: rotate(45deg);
}

.cr-close-btn::after {
	transform: rotate(-45deg);
}

.close-btn:hover {
	background-color: #f8f8f8;
}

@media (max-width: 1000px) {
	.course-recommendation-popup {
		max-width: 100%;
		max-height: 100%;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		transform: none;
		border-radius: 0;
	}

	.cr-close-btn {
		top: 10px;
		right: 10px;
		width: 30px;
		height: 30px;
	}
}

.language-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	background: white;
	border-radius: 4px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	padding: 10px;
	min-width: 200px;
	display: none;
	z-index: 1001;
	margin-top: 10px;
}

.language-dropdown.show {
	display: block;
}

.language-item {
	padding: 8px 12px;
	cursor: pointer;
	border-radius: 4px;
}

.language-item:hover {
	background-color: #f0f8ff;
}

.goog-te-menu-frame {
	display: none !important;
}

.goog-te-gadget {
	display: none !important;
}

.goog-te-combo {
	display: none !important;
}

.goog-te-banner-frame {
	display: none !important;

}

.skiptranslate {
	display: none !important
}
