body {
	font-family: "Adobe Clean";
}

a {
	text-decoration: none;
	display: inline-block;
}

svg,
img {
	max-width: 100%;
	display: inline-block;
}

strong {
	font-weight: 700;
}

:is(h1, h2, h3, h4, h5, h6),
:is(.h1, .h2, .h3, .h4, .h5, .h6) {
	font-family: "Adobe Clean";
	font-weight: 700;
}

:is(h1, h2, h3, h4, h5, h6)>strong,
:is(.h1, .h2, .h3, .h4, .h5, .h6)>strong {
	font-weight: 900;
}

.container {
	max-width: 1340px;
}

.website-wrapper {
	overflow: hidden;
	width: 100%;
}

/* HEADER CSS STARTS HERE */
.site-header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.site-header .top-bar {
	background: #042952;
	background: linear-gradient(90deg, #042952 0%, #0a5cb8 100%);
}

.site-header .site-menu .menu-item .menu-link {
	color: #000;
	text-decoration: none;
	padding: 20px 0;
	border-bottom: 2px solid #fff;
	transition: all 0.2s ease-in-out;
	display: block;
}

.site-header .site-menu .menu-item .menu-link:hover {
	color: var(--bs-link-hover-color);
}

.site-header .site-menu .menu-item .menu-link.active {
	font-weight: 600;
}

.site-header .site-menu:not(:hover) .menu-item .menu-link.active,
.site-header .site-menu .menu-item .menu-link:hover {
	border-bottom: 2px solid #366aa3;
}

.site-header .site-menu .menu-item.has-submenu {
	position: relative;
}

.site-header .site-menu .menu-item.has-submenu>.menu-link::after {
	content: "\f054";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	margin-left: 5px;
	font-size: 0.75em;
	vertical-align: middle;
	transition: all 0.2s ease-in-out;
}

.site-header .site-menu .menu-item.has-submenu:hover .menu-link::after {
	transform: rotate(-90deg);
}

.site-header .site-menu .menu-item.has-submenu .submenu {
	position: absolute;
	top: 100%;
	left: 0;
	border-radius: 6px;
	background: #fff;
	box-shadow: 0px 4px 10px 0px rgba(148, 148, 148, 0.25);
	z-index: 999;
	padding: 10px;
	transform: translateY(10px);
	opacity: 0;
	pointer-events: none;
	transition: all 0.2s ease-in-out;
	min-width: 320px;
}

.site-header .site-menu .menu-item.has-submenu .submenu .submenu-item .submenu-link {
	border-radius: 4px;
	padding: 5px 10px;
	display: block;
	text-decoration: none;
	color: #000;
}

.site-header .site-menu .menu-item.has-submenu .submenu .submenu-item .submenu-link:hover {
	background: #e1f5ff;
}

.site-header .site-menu .menu-item.has-submenu:hover .submenu {
	transform: translateY(0);
	opacity: 1;
	pointer-events: all;
}

.site-header .header-main {
	transition: 0.3s ease-in-out;
	background: #fff;
}

.site-header.sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	box-shadow: 0px 4px 10px 0px rgba(148, 148, 148, 0.25);
	z-index: 999;
}

@media (max-width: 991px) {
	.site-header .site-menu .menu-link i {
		transition: 0.2s ease-in-out;
	}

	/* .site-header .site-menu .menu-link:not(.collapsed) i {
		transform: rotate(-90deg);
	} */
}

@media (max-width: 767px) {
	.site-header .site-menu .menu-item .menu-link {
		padding: 5px 10px;
		border: none;
		font-size: 20px;
	}

	.site-header .site-menu .menu-item .nav-submenu .menu-link {
		font-size: 16px;
	}

	.site-header .site-menu .menu-item .menu-link.active,
	.site-header .site-menu .menu-item .menu-link:hover {
		border: none !important;
	}
}


/* HERO SECTION CSS STARTS HERE */
.hero-section {
	padding: 4% 0;
	background-image: url("../images/hero-section-vector-bg.png");
	background-size: 40% auto;
	background-position: center left;
	background-repeat: no-repeat;
}

.hero-section h1 {
	font-size: 60px;
	font-weight: 400;
	color: #454545;
}

.hero-section .hero-cta-wrapper {
	max-width: 400px;
}

@media (max-width: 991px) {
	.hero-section h1 {
		font-size: 40px;
	}
}

@media (max-width: 767px) {
	.hero-section {
		background: none;
	}

	.hero-section h1 {
		font-size: 32px;
	}

	.hero-section p {
		font-size: 16px;
	}
}

.course-countries-carousel .country-card {
	position: relative;
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

.countries-section .country-card {
	position: relative;
	display: block;
}

.countries-section .country-card .image-wrapper {
	overflow: hidden;
	position: relative;
	padding-top: 120%;
}

.countries-section .country-card .image-wrapper::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(41, 92, 149, 0.42);
	z-index: 1;
	pointer-events: none;
}

.countries-section .country-card .image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transition: all 0.2s ease-in-out;
}

.countries-section .country-card:hover .image-wrapper img {
	transform: scale(1.1);
}

.countries-section .country-card .content-wrapper {
	position: absolute;
	top: 0%;
	left: 0%;
	padding: 20px;
	z-index: 2;
	color: #fff;
}

.how-it-works-section {
	position: relative;
	padding: max(5%, 40px) 0 0;
	background-image: url("../images/how-it-works-section-bg-image.png"),
		url("../images/courses-section-bg-overlay-image.png");
	background-size: auto 40%, 45% auto;
	background-position: top left, center right 15%;
	background-repeat: no-repeat;
	z-index: 1;
}

@media (max-width: 767px) {
	.how-it-works-section {
		background-image: url("../images/how-it-works-section-bg-image.png");
		background-size: auto 20%;
		background-position: top 35% left;
	}

	.how-it-works-section .how-it-works-image {
		position: absolute;
		top: 5%;
		left: 65%;
		transform: translateX(-50%);
		display: block;
		width: 60%;
		z-index: -1;
		opacity: 0.3;
	}

	.how-it-works-section .checklist-block svg {
		width: 30px;
		height: 30px;
	}
}

.courses-section {
	background-image: url("../images/courses-section-bg-image-vector.png");
	background-size: auto 100%;
	background-position: center left;
	background-repeat: no-repeat;
	padding: max(6%, 40px) 0;
}

.courses-section .courses-list a {
	display: block;
	padding: 10px 0;
	color: #000;
	font-size: 20px;
	border-bottom: 1px solid rgba(219, 219, 219, 0.6);
	transition: all 0.2s ease-in-out;

	padding: 18px 25px;
	background: white;
	border-radius: 8px;
	margin-bottom: 12px;
	text-decoration: none;
	color: var(--bs-primary);
	padding: 10px 24px;
	font-weight: 500;
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: between;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.courses-section .courses-list a i {
	color: #5c5c5c;
}

.courses-section .courses-list a:hover i,
.courses-section .courses-list a:hover {
	color: #2c6098;
}

@media (max-width: 767px) {
	.courses-section {
		background: none;
	}

	.courses-section .courses-list a {
		font-size: 16px;
		padding: 10px 0;
	}
}

.student-finance-section {
	background-image: url("../images/student-finance-section-bg.png");
	background-size: auto 80%;
	background-repeat: no-repeat;
	background-position: center bottom;
	padding: 0 0 4%;
}

.student-finance-section .tab-content {
	margin: auto;
	margin-top: 20vw;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0px -1.042px 1.042px 0px rgba(255, 255, 255, 0.1) inset,
		0px 1.042px 1.042px 0px rgba(255, 255, 255, 0.25) inset, 0px 8.336px 6.252px 0px rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(52.10107421875px);
	max-width: 1000px;
}

.student-finance-section .nav-link {
	border: 2px solid #b3c5da;
	background-color: #fff;
}

.student-finance-section .nav-link.active,
.student-finance-section .nav-link:hover {
	border: 2px solid var(--bs-primary);
}

@media (max-width: 767px) {
	.student-finance-section {
		background-size: auto 60%;
		padding: 60px 0 40px;
	}

	.student-finance-section .h5 {
		font-size: 16px;
	}

	.student-finance-section .nav-link {
		padding: 6px 16px;
		font-weight: 400;
		font-size: 0.8rem;
	}

	.student-finance-section .nav-pills {
		padding: 10px;
		margin: 0 -10px 20px;
		border-radius: 10px;
	}

	.student-finance-section .tab-content {
		margin-top: 20px;
	}
}

.easy-admission-section .nav {
	--bs-nav-link-padding-x: 1.5rem;
	--bs-nav-link-padding-y: 0.5rem;
	--bs-nav-link-font-weight: 600;
	--bs-nav-link-color: #fff;
}

.easy-admission-section .nav-pills {
	--bs-nav-pills-border-radius: 40px;
	--bs-nav-pills-link-active-color: #fff;
	--bs-nav-pills-link-active-bg: var(--bs-link-hover-color);
	gap: 10px;
}

.students-helped-section {
	background-image: url("../images/students-helped-section-bg.png");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	padding: max(6%, 40px) 0;
}

.students-helped-section .owl-carousel .owl-stage {
	padding: 20px 0;
}

.students-helped-section .owl-carousel .owl-item:nth-child(2n + 1) {
	padding-top: 10em;
}

.students-helped-section .owl-carousel .owl-item .img-wrap {
	padding: 5px;
}

.students-helped-section .owl-carousel .owl-item .img-wrap img {
	border: 1px solid transparent;
	transition: 0.2s ease-in-out;
}

.students-helped-section .owl-carousel .owl-item .img-wrap.active img,
.students-helped-section .owl-carousel .owl-item .img-wrap:hover img {
	border-radius: 162px;
	border: 5px solid #fff;
	box-shadow: 0px 4px 26px 0px rgba(10, 62, 119, 0.22);
}

@media (min-width: 768px) {
	.students-helped-section .btn {
		font-size: 20px;
	}
}

@media (max-width: 767px) {
	.students-helped-section .owl-carousel .owl-item:nth-child(2n + 1) {
		padding-top: 7em;
	}
}

.easy-admission-section {
	position: relative;
	padding: max(5%, 40px) 0;
	z-index: 1;
}

.easy-admission-section::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, #000100 100%);
}

.easy-admission-section .bg-video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -2;
	pointer-events: none;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.easy-admission-section .nav-pills {
	border-radius: 100px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: rgba(69, 69, 125, 0.1);
	box-shadow: 0px 8.336px 6.252px 0px rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(52.10107421875px);
	padding: 10px;
	margin-bottom: 30%;
}

@media (max-width: 991px) {
	.easy-admission-section .nav-pills {
		background: none;
		border: none;
		padding: 0;
		backdrop-filter: none;
	}

	.easy-admission-section .nav-pills .nav-link {
		padding: 10px 15px;
	}

	.easy-admission-section .nav-pills .nav-link:not(.active) {
		border-radius: 100px;
		border: 1px solid rgba(0, 0, 0, 0.1);
		background: rgba(69, 69, 125, 0.1);
		box-shadow: 0px 8.336px 6.252px 0px rgba(0, 0, 0, 0.05);
		backdrop-filter: blur(52.10107421875px);
	}

	.easy-admission-section .nav-pills .nav-link:hover {
		color: #fff;
	}
}

.services-section {
	padding: max(5%, 40px) 0;
}

.services-section .info-box .icon-wrap img {
	object-fit: contain;
}

@media (max-width: 767px) {
	.services-section .h5 {
		font-size: 16px;
	}
}

.testimonials-section {
	padding-bottom: max(5%, 40px);
}

.custom-owl-nav .btn-owl-nav {
	padding: 10px;
	border-radius: 50%;
	color: #fff;
	border: 1px solid #b6b6b6;
}

.custom-owl-nav .btn-owl-nav:hover {
	border: 1px solid var(--bs-primary);
	background: #2855cb;
	color: #fff;
}

.custom-owl-nav .btn-owl-nav i {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	line-height: 1;
	justify-content: center;
}

.testimonials-section .testimonials-carousel .owl-stage {
	display: flex;
}

.testimonials-section .testimonial {
	border: 1px solid #e9e9e9;
	border-radius: 16px;
	background: #fff;
	padding: 30px;
	text-align: center;
	margin: 0 5px;
}

.testimonials-section .testimonial .avatar img {
	width: 70px;
	height: 70px;
	object-fit: contain;
	border-radius: 50%;
	display: inline-block;
	/* border: 2px solid #155092; */
}

.testimonials-section .testimonial p {
	color: #6a6a6a;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 400;
}

.fa.fa-star {
	font-size: 20px;
	color: #fcd503;
}

@media (max-width: 767px) {
	.testimonials-section .testimonial.testimonial-google-info {
		border-radius: 10px;
		border: 1px solid #e9e9e9;
		background: #fff;
		box-shadow: 0px 4px 10px 0px rgba(165, 165, 165, 0.25);
	}

	.testimonials-section .testimonial.testimonial-google-info svg {
		max-width: 120px;
	}

	.testimonials-section .testimonial .display-1 {
		font-size: 60px;
		line-height: 1;
	}

	.testimonials-section .testimonial .h4 {
		font-size: 20px;
	}
}

.achievements-section {
	padding: 3% 0;
}

.achievements-section .achievements-section-inner {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
}

.achievements-section .achievements-section-inner .achievements-row-inner {
	position: relative;
	z-index: 2;
	padding: 6%;
	color: #fff;
}

@media (max-width: 767px) {
	.achievements-section .achievements-section-inner::before {
		background: linear-gradient(0, rgba(16, 78, 146, 0.99) 0%, rgba(31, 93, 160, 0.99) 65%, rgba(0, 0, 0, 0) 100%);
	}

	.achievements-section .achievements-section-inner .achievements-row-inner {
		padding: 20px;
	}

	.achievements-section .achievements-section-inner .achievements-row-inner .btn-primary {
		width: 100%;
	}
}

.flexible-section {
	padding: 3% 0;
}

.flexible-section .flexible-section-inner {
	position: relative;
	border-radius: 10px 100px 10px 10px;
	overflow: hidden;
}

.flexible-section .flexible-section-inner .flexible-row-inner {
	position: relative;
	z-index: 2;
	padding: 6%;
}

.flexible-section .flexible-section-inner .flexible-row-inner .btn-outline-success:not(:hover) {
	color: #000;
}

.flexible-section .flexible-section-inner img.position-absolute {
	top: 20%;
	left: 45%;
}

@media (max-width: 767px) {
	.flexible-section .flexible-section-inner {
		border-radius: 10px;
	}

	.flexible-section .flexible-section-inner .flexible-row-inner {
		padding: 20px;
	}

	.flexible-section .flexible-section-inner .flexible-row-inner .btn-primary {
		width: 100%;
	}
}

.contact-us-section {
	padding: 80px 0;
	/* background: #f8f9fa; */
}

.contact-us-section h2 {
	color: #333;
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.contact-us-section .lead {
	color: #666;
	font-size: 1.2rem;
}

.contact-us-section .cs-image-block {
	background: white;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.contact-us-section .cs-image-block:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-us-section .contact-form-wrapper {
	background: white;
	border-radius: 20px;
	padding: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-us-section .form-control {
	border: 2px solid #e9ecef;
	border-radius: 10px;
	padding: 15px 20px;
	transition: all 0.3s ease;
}

.contact-us-section .form-control:focus {
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-us-section .btn-primary {
	background: linear-gradient(135deg, #667eea, #764ba2);
	border: none;
	border-radius: 25px;
	padding: 15px 40px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.contact-us-section .btn-primary:hover {
	background: linear-gradient(135deg, #764ba2, #667eea);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
	.page-header h1 {
		font-size: 2.2rem;
	}


	.contact-us-section {
		padding: 60px 0;
	}

	.contact-us-section h2 {
		font-size: 2rem;
	}
}

.site-footer {
	background: #181818;
	padding: 8% 0 0px;
	background-image: url("../images/footer-overlay-image.png");
	background-position: top center;
	background-size: contain;
	background-repeat: no-repeat;
	color: rgba(255, 255, 255, 0.8);
}

.site-footer .footer-logo img {
	width: 140px;
}

.site-footer .footer-menu li {
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.site-footer .footer-menu li a {
	color: rgba(255, 255, 255, 0.8);
}

.site-footer .footer-menu li a:hover {
	color: #fff;
}

.site-footer .copyrights-row {
	border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.social-links a {
	background: #fff;
	color: #000;
	border-radius: 4px;
	padding: 10px;
	font-size: 1.2em;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease-in-out;
}

.social-links a:hover {
	background: var(--bs-primary);
	color: #fff;
}

.page-header {
	background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
	color: white;
	padding: 80px 0;
	position: relative;
	overflow: hidden;
	padding: max(3%, 40px) 0;
	padding-left: calc(50vw - 675px);
}


.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.1);
	z-index: 1;
}

.page-header::after {
	content: '';
	position: absolute;
	top: -80px;
	right: -80px;
	width: 250px;
	height: 250px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	z-index: 1;
}

.page-header .container {
	position: relative;
	z-index: 2;
}

.page-header h1 {
	color: white;
	margin-bottom: 20px;
}

.page-header p {
	color: rgba(255, 255, 255, 0.9);
}


.page-header .container-fluid {
	position: relative;
	z-index: 2;
}

.page-header h1 {
	color: white;
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.3rem;
	line-height: 1.6;
	margin-bottom: 30px;
}

.page-header .btn {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: white;
	padding: 15px 30px;
	border-radius: 10px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.page-header h1 {
	font-size: 52px;
	line-height: 1.2;
	margin-bottom: max(4%, 30px);
}

.page-header .course-search-form {
	border-radius: 8px;
	background: #fff;
	box-shadow: 0px 4px 12px 0px rgba(97, 97, 97, 0.12);
	backdrop-filter: blur(4px);
	padding: 12px;
}

.page-header .course-search-form .input-group,
.page-header .course-search-form .input-group .form-control,
.page-header .course-search-form .input-group .form-select {
	height: 100%;
	background-color: transparent;
}

.page-header .course-search-form .input-group {
	border-radius: 6px;
	border: 1px solid #d4e1f5;
	background: #e9f3ff;
}

.page-header .course-search-form .input-group .form-select {
	max-width: 140px;
}

.page-header .course-countries-carousel {
	position: relative;
	z-index: 0;
}

.page-header .course-countries-carousel .country-card {
	position: relative;
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

.page-header .course-countries-carousel .country-card .image-wrapper {
	overflow: hidden;
}

.page-header .course-countries-carousel .country-card .image-wrapper img {
	width: 100%;
	height: auto;
	transition: all 0.2s ease-in-out;
}

.page-header .course-countries-carousel .country-card:hover .image-wrapper img {
	transform: scale(1.1);
}

.page-header .course-countries-carousel .country-card .content-wrapper {
	position: absolute;
	bottom: 0%;
	left: 0%;
	margin: 0px;
	padding: 6px 12px;
	z-index: 2;
	color: #fff;
	line-height: 1;
}

@media (max-width: 991px) {

	.page-header h1 {
		font-size: 32px;
	}

	.page-header .course-search-form {
		max-width: 100%;
	}

	.page-header .course-search-form .input-group .form-select {
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.page-header h1 {
		font-size: 24px;
	}

	.page-header .course-search-form {
		padding: 10px;
	}

	.page-header .course-search-form .input-group .form-select {
		max-width: 100%;
	}
}

.courses-grid .course-grid-item {
	border-radius: 8px;
	border: 1px solid #e2e2e2;
	background: #fff;
	padding: 10px;
}

.courses-grid .course-grid-item .course-grid-item__image img {
	border-radius: 8px;
	width: 100%;
}

.courses-grid .course-grid-item .course-grid-item__content {
	padding: 10px;
}

.courses-grid .course-grid-item .course-grid-item__content .description {
	border-radius: 6px;
	background: #f7f9fc;
	padding: 10px;
	line-height: 1.2;
	color: #909090;
}

.courses-grid .course-grid-item .course-grid-item__content .course-meta small {
	color: #909090;
}

.page-header .read-more-text p {
	position: relative;
}

.page-header .read-more-text.minimized p {
	overflow: hidden;
	position: relative;
}

.page-header .read-more-text.minimized p::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(255, 255, 255, 0.96), transparent);
	z-index: 1;
	pointer-events: none;
}

.course--detail-section {
	padding: max(4%, 40px) 0;
}


.course-search-form .form-control,
.course-search-form .form-select {
	border: 2px solid #e9ecef;
	color: #333;
	border-radius: 8px;
	padding: 12px 40px;
}


.course-search-form .input-group-text {
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #667eea;
}

.course-search-form .btn-primary {
	background: linear-gradient(45deg, #667eea, #764ba2);
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.course-search-form .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.course-search-form .btn-danger {
	background: linear-gradient(45deg, #ff6b6b, #ee5a24);
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.course-search-form .btn-danger:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(238, 90, 36, 0.4);
}


.courses--section {
	padding: 60px 0;
	background: #f8f9fa;
}

.courses-filters {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	margin-bottom: 40px;
}

.courses-filters label {
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
	display: block;
}

.courses-filters .form-control,
.courses-filters .form-select {
	border: 2px solid #e9ecef;
	border-radius: 8px;
	padding: 12px 16px;
	transition: all 0.3s ease;
}

.courses-filters .form-control:focus,
.courses-filters .form-select:focus {
	border-color: #667eea;
	box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.courses-filters .btn-primary {
	background: linear-gradient(45deg, #667eea, #764ba2);
	border: none;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.courses-filters .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.course-grid-item {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.course-grid-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.course-grid-item__image {
	position: relative;
	height: 200px;
	overflow: hidden;
}

.course-grid-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.course-grid-item:hover .course-grid-item__image img {
	transform: scale(1.05);
}

.course-grid-item__content {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.course-grid-item__content .title {
	font-size: 1.25rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
	line-height: 1.4;
}

.course-grid-item__content .description {
	color: #666;
	margin-bottom: 15px;
	line-height: 1.5;
	flex-grow: 1;
}

.description-content {
	position: relative;
}

.description-short {
	display: block;
}

.description-full {
	display: none;
}

.read-more-btn {
	color: #667eea;
	background: none;
	border: none;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	padding: 0;
	margin-top: 5px;
	transition: color 0.3s ease;
}

.read-more-btn:hover {
	color: #764ba2;
	text-decoration: underline;
}

.read-more-btn:focus {
	outline: none;
	color: #764ba2;
}

.course-meta {
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}

.course-meta:last-of-type {
	border-bottom: none;
	margin-bottom: 20px;
}

.course-meta small {
	font-weight: 600;
	color: #667eea;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.5px;
}

.course-meta p {
	margin: 5px 0 0 0;
	color: #333;
	font-weight: 500;
}

.course-grid-item__button {
	margin-top: auto;
}

.course-grid-item__button .btn {
	width: 100%;
	background: linear-gradient(45deg, #667eea, #764ba2);
	border: none;
	padding: 12px 20px;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.course-grid-item__button .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.pagination .page-link {
	border: 2px solid #e9ecef;
	border-radius: 8px;
	margin: 0 4px;
	padding: 10px 16px;
	color: #667eea;
	font-weight: 600;
	transition: all 0.3s ease;
}

.pagination .page-link:hover {
	background: #667eea;
	border-color: #667eea;
	color: white;
	transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
	background: linear-gradient(45deg, #667eea, #764ba2);
	border-color: #667eea;
	color: white;
}

.no-courses-found {
	text-align: center;
	padding: 60px 20px;
	background: white;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.no-courses-found h4 {
	color: #333;
	margin-bottom: 20px;
	font-size: 1.5rem;
}

.no-courses-found p {
	color: #666;
	font-size: 1.1rem;
}

@media (max-width: 768px) {
	.page-header h2 {
		font-size: 2rem;
	}

	.page-header {
		padding: 40px 0;
	}

	.course-search-form {
		padding: 15px;
	}

	.courses-filters {
		padding: 20px;
	}
}

/* ==========================================
   APPLY NOW PAGE STYLES
   ========================================== */

.apply-now--section {
	padding: max(4%, 40px);
	padding-left: calc(50vw - 675px);
}

.apply-now--section .ticked-list h6 {
	color: #00072e;
}

.apply-now--section .course-application-carousel .owl-item {
	transition: all 0.2s ease-in-out;
}

.apply-now--section .course-application-carousel .owl-item.active+.owl-item.active {
	transform: scale(0.85);
}

.apply-now--section .course-application-carousel .img-wrap img {
	border-radius: 10px;
}

.owl-dots {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.owl-dots .owl-dot span {
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #d4d4d4;
	margin: 0 5px;
}

/* overwrite owl dots css to make owl dots display 1/4 where 4 is the total number of slides */
.apply-now--section .owl-dots {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	counter-reset: dot;
	margin-bottom: 30px;
}

.apply-now--section .owl-dots .owl-dot span {
	position: relative;
	background: none;
	width: auto;
	height: auto;
	margin: 0px;
	letter-spacing: 5px;
}

.apply-now--section .owl-dots .owl-dot span::before {
	content: counter(dot);
	counter-increment: dot;
	color: #000;
	font-size: 16px;
}

.apply-now--section .owl-dots .owl-dot {
	display: none;
}

.apply-now--section .owl-dots .owl-dot:first-child span::before {
	content: counter(dot) "/";
}

.apply-now--section .owl-dots .owl-dot:first-child,
.apply-now--section .owl-dots .owl-dot:last-child {
	display: block;
}

.apply-now--section .custom-owl-nav {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
	position: relative;
	z-index: 10;
}

@media (min-width: 767px) {
	.apply-now--section .owl-dots {
		justify-content: start;
	}

}

.eligibilty-section {
	padding: max(4%, 40px) 0;
}

.eligibilty-section .btn-success:not(:hover) {
	border-color: var(--bs-success);
}

.eligibilty-section .btn-success:hover {
	background: transparent;
	color: var(--bs-success);
}

.course-outline-section {
	padding: max(4%, 40px) 0;
}

.course-outline-section .course-outline-list {
	column-count: 2;
	column-gap: 30px;
}

.course-outline-section .course-outline-list .course-outline-item {
	border-radius: 6px;
	background: #f7f9fc;
	padding: 12px 20px;
	page-break-inside: avoid;
	margin-bottom: 15px;
}

.course-outline-section .course-outline-list .course-outline-item:nth-child(even) {
	background: linear-gradient(91deg, #def4ff 0.55%, #e5f7ff 48.88%, #def4ff 99.26%);
}

.course-outline-section .course-outline-list .course-outline-item .count {
	font-size: 14px;
	border: 1px solid var(--bs-success);
	padding: 3px 10px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	background: #fff;
	color: var(--bs-success);
}

@media (max-width: 767px) {
	.course-outline-section .course-outline-list {
		column-count: 1;
	}
}

.student-finance--section {
	padding: max(4%, 40px) 0;
}

#request-call-modal {
	color: #000;
}

#request-call-modal .modal-header {
	border-bottom: 7px solid #1783cc;
}

#request-call-modal .modal-body .form-group {
	margin-bottom: 30px;
}

#request-call-modal .modal-body .form-group .form-control {
	border: none;
	border-bottom: 1px solid #6c6c6c;
	border-radius: 0px;
	padding: 10px 0;
}

.floating-social-buttons {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 999;
}

.floating-social-buttons a {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: block;
	box-shadow: 0px 0px 20px 2px rgb(40 91 147 / 60%);
	transition: all 0.2s ease-in-out;
}

.floating-social-buttons a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.floating-social-buttons a:hover {
	transform: scale(1.1);
}

@media (max-width: 767px) {
	.floating-social-buttons {
		bottom: 10px;
		right: 10px;
	}

	.floating-social-buttons a {
		width: 40px;
		height: 40px;
	}
}

label.error {
	padding: 5px;
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	border-radius: 5px;
	color: #721c24;
	margin-bottom: 10px;
	margin-top: 5px;
}

/* form-control error */
.form-control.error {
	border-color: #f5c6cb;
}


.page-item.active .page-link {
	background-color: #063b76 !important;
	text-decoration: none;
	border-color: #063b76 !important;
}


.mobile-menu-offcanvas {
	background: linear-gradient(0deg, #042952 0%, #0a5cb8 100%);
	color: #FFF;
	--bs-offcanvas-width: 500px;
}

.mobile-menu-offcanvas .site-menu .menu-item .menu-link {
	color: rgba(255, 255, 255, 0.9);
}

.mobile-menu-offcanvas .site-menu .menu-item .active.menu-link,
.mobile-menu-offcanvas .site-menu .menu-item .menu-link:hover {
	color: #FFF;
}

.mobile-menu-offcanvas .site-menu .menu-item .menu-link i {
	transform: rotate(0deg) !important;
}

.bg-blue {
	background-color: #007bff;
}

.slot {
	border: 1px solid #d2d2d2;
	border-radius: 1px;
	margin: 3px 3px;
	padding: 7px 7px;
	background: #fefefe;
	font-weight: 600;
	color: #666363;
	box-shadow: 1px 1px 3px -2px;
	cursor: pointer;
	min-width: 106px;
	font-size: 15px;
}

.slot input {
	display: none;
}

.slot label {
	cursor: pointer;
}

#time-slots {
	display: flex;
	flex-wrap: wrap;
}

.slot.selected {
	background: #007bff;
	color: #ffffff;
}

.xdsoft_datetimepicker .xdsoft_datepicker {
	width: 321px !important;
}

.xdsoft_datetimepicker {
	font-size: 1rem !important;
}

.xdsoft_calendar td,
.xdsoft_calendar th {
	padding: 0.3rem !important;
}

.xdsoft_timepicker .xdsoft_time_box>div>div {
	padding: 0.3rem !important;
}

.xdsoft_date,
.xdsoft_time {
	font-size: 1rem !important;
}

.slot.disabled {
	background: #e0e0e0;
	color: #a0a0a0;
	cursor: not-allowed;
}

.swal2-container {
	z-index: 100000 !important;
}

.required {
	color: red;
}

/* ==========================================
   INDEX PAGE STYLES
   ========================================== */

/* International Journey Banner */
.international-banner {
	background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
	color: white;
	padding: 60px 0;
	margin-bottom: 0;
	position: relative;
	overflow: hidden;
}

.international-banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url("../images/hero-section-vector-bg.png");
	background-size: 40% auto;
	background-position: center right;
	background-repeat: no-repeat;
	opacity: 0.1;
}

.international-banner .container {
	position: relative;
	z-index: 2;
}

.banner-content {
	text-align: center;
}

.banner-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	color: white;
}

.banner-subtitle {
	font-size: 1.2rem;
	margin-bottom: 30px;
	opacity: 0.95;
	font-weight: 400;
}

.banner-countries {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 30px;
	gap: 20px;
}

.country-group {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 15px 25px;
	border-radius: 30px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.country-label {
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 10px;
}

.journey-hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 60px 0;
	position: relative;
	overflow: hidden;
}

.journey-cta-btn {
	background: var(--bs-success);
	color: white !important;
	border: none;
	padding: 15px 35px;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	margin: 10px;
	font-size: 1rem;
}

.journey-cta-btn:hover {
	background: #6ba428;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(128, 189, 48, 0.3);
	color: white;
	text-decoration: none;
}

.journey-cta-btn.secondary {
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.journey-cta-btn.secondary:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
}

.global-features {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	padding: 60px 40px;
	margin: 0;
	text-align: center;
}

.global-features h2 {
	font-size: 2.2rem;
	margin-bottom: 15px;
}

.global-features .lead {
	color: #495057;
	font-size: 1.1rem;
	margin-bottom: 40px;
}

.global-feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.global-feature-item {
	background: white;
	padding: 35px 25px;
	border-radius: 8px;
	border: 1px solid #e9ecef;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	text-align: center;
}

.global-feature-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(40, 91, 147, 0.15);
	border-color: var(--bs-primary);
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin: 0 auto 20px;
}

.global-feature-item h5 {
	color: var(--bs-primary);
	font-size: 1.3rem;
	margin-bottom: 10px;
}

.global-feature-item p {
	color: #6c757d;
	margin-bottom: 0;
	line-height: 1.6;
}

/* Enhanced Hero Section */
.hero-section {
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: -50px;
	left: -50px;
	width: 150px;
	height: 150px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	z-index: 1;
}

.hero-section::after {
	content: '';
	position: absolute;
	bottom: -30px;
	right: -30px;
	width: 100px;
	height: 100px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	z-index: 1;
}

.hero-section .container {
	position: relative;
	z-index: 2;
}

.hero-section h1 {
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-cta-wrapper .btn {
	font-weight: 600;
	padding: 12px 20px;
	border-radius: 6px;
	transition: all 0.3s ease;
	border: none;
}

.hero-cta-wrapper .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-stats {
	margin-top: 25px;
}

.hero-stats .stat-item {
	text-align: center;
	padding: 15px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 8px;
	border: 1px solid rgba(40, 91, 147, 0.1);
	flex: 1;
	transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
	background: white;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(40, 91, 147, 0.1);
}

.hero-stats .stat-item span {
	font-size: 1.5rem;
	display: block;
}

.hero-cta-wrapper .btn i {
	opacity: 0.8;
}

/* Enhanced How It Works Section */
.how-it-works-section {
	background: #f8f9fa;
	padding: 80px 0;
	border-radius: 0;
}

.how-it-works-section h2 {
	margin-bottom: 20px;
}

.checklist-block li {
	background: white;
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
}

.checklist-block li:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(40, 91, 147, 0.1);
	border-color: var(--bs-primary);
}

.checklist-block li h5 {
	color: var(--bs-primary);
	font-weight: 600;
	margin-bottom: 10px;
}

.checklist-block li p {
	color: #6c757d;
	margin-bottom: 0;
	line-height: 1.6;
}

/* Enhanced Courses Section */
.courses-section {
	padding: 80px 0;
	background: white;
}

.courses-section h2 {
	font-size: 2.2rem;
	margin-bottom: 30px;
}

.courses-list {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 25px;
	border: 1px solid #e9ecef;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.courses-list a {
	padding: 18px 25px;
	background: white;
	border-radius: 8px;
	margin-bottom: 12px;
	text-decoration: none;
	color: var(--bs-primary);
	padding: 10px 24px;
	font-weight: 500;
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: between;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.courses-list a span {
	color: var(--bs-primary);
	transition: color 0.3s ease;
}

.courses-list a i.fa-chevron-right {
	color: var(--bs-primary);
	transition: all 0.3s ease;
}

.courses-list a:hover {
	background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
	color: white;
	transform: translateX(8px) translateY(-2px);
	box-shadow: 0 8px 25px rgba(40, 91, 147, 0.25);
	border-color: var(--bs-primary);
}

.courses-list a:hover span,
.courses-list a:hover i.fa-chevron-right {
	color: white;
}

.courses-list a:hover i.fas {
	color: rgba(255, 255, 255, 0.9);
}

.courses-list a:last-child {
	margin-bottom: 0;
}

.student-finance-section .container {
	position: relative;
	z-index: 2;
}

.student-finance-section h2 {
	margin-bottom: 20px;
	font-size: 2.5rem;
}

.student-finance-section .h5 {
	color: #495057;
	margin-bottom: 40px;
}

.student-finance-section .nav-pills {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(0px);
	padding: 15px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.student-finance-section .nav-pills .nav-link {
	color: var(--bs-primary);
	background: white;
	border: 2px solid #b3c5da;
	margin: 5px;
	font-weight: 500;
	padding: 12px 20px;
	transition: all 0.3s ease;
	border-radius: 8px;
}

.student-finance-section .nav-pills .nav-link:hover,
.student-finance-section .nav-pills .nav-link.active {
	background: var(--bs-primary);
	border-color: var(--bs-primary);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(40, 91, 147, 0.3);
}

.student-finance-section .tab-content {
	margin: 40px auto 0;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0px -1px 1px 0px rgba(255, 255, 255, 0.1) inset,
		0px 1px 1px 0px rgba(255, 255, 255, 0.25) inset,
		0px 8px 25px 0px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(20px);
	max-width: 1000px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.student-finance-section .tab-content-inner h4 {
	color: white;
	margin-bottom: 15px;
	font-size: 1.5rem;
}

.student-finance-section .tab-content-inner p {
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.6;
}

.student-finance-section .tab-content-inner .btn-primary {
	background: var(--bs-success);
	border-color: var(--bs-success);
	font-weight: 600;
	padding: 12px 25px;
}

.student-finance-section .tab-content-inner .btn-primary:hover {
	background: #6ba428;
	border-color: #6ba428;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(128, 189, 48, 0.4);
}

/* Mobile responsiveness for Student Finance section */
@media (max-width: 768px) {
	.student-finance-section .nav-pills {
		padding: 10px;
		margin-bottom: 20px;
	}

	.student-finance-section .nav-pills .nav-link {
		font-size: 0.8rem;
		padding: 8px 12px;
		margin: 2px;
	}

	.student-finance-section .tab-content {
		margin-top: 20px;
	}

	.student-finance-section .tab-content-inner {
		padding: 20px !important;
	}

	.student-finance-section .tab-content-inner h4 {
		font-size: 1.25rem;
		margin-bottom: 12px;
	}

	.student-finance-section .tab-content-inner p {
		font-size: 0.9rem;
		margin-bottom: 20px;
	}

	.student-finance-section .tab-content-inner .btn-primary {
		font-size: 0.9rem;
		padding: 10px 20px;
		width: 100%;
	}
}

/* Enhanced Students Helped Section */
.students-helped-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 80px 0;
}

.students-helped-section h2 {
	font-size: 2.5rem;
	position: relative;
}

.students-helped-section .img-wrap {
	border-radius: 50%;
	overflow: hidden;
	transition: all 0.3s ease;
	background: linear-gradient(135deg, #285b93 0%, #2855cb 100%);
	padding: 2px !important;
}

.students-helped-section .img-wrap img {
	border-radius: 50%;
	transition: transform 0.3s ease;
}

.students-helped-section .img-wrap:hover img {
	transform: scale(1.1);
}

.students-helped-section .img-wrap.active {
	border-color: var(--bs-success);
	transform: scale(1.2);
}

.students-helped-section .tab-content .btn {
	background: white;
	color: var(--bs-primary);
	border: 2px solid var(--bs-primary);
	font-weight: 600;
	transition: all 0.3s ease;
}

.students-helped-section .tab-content .btn:hover {
	background: var(--bs-primary);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(40, 91, 147, 0.3);
}

/* Enhanced Easy Admission Section */
.easy-admission-section {
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}

.easy-admission-section .bg-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}

.easy-admission-section h2 {
	color: white;
	font-size: 2.5rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.easy-admission-section .nav-pills {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	padding: 15px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	margin-bottom: 40px;
}

.easy-admission-section .nav-pills .nav-link {
	color: white;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	margin: 5px;
	font-weight: 500;
	padding: 12px 20px;
	transition: all 0.3s ease;
}

.easy-admission-section .nav-pills .nav-link:hover,
.easy-admission-section .nav-pills .nav-link.active {
	background: var(--bs-success);
	border-color: var(--bs-success);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(128, 189, 48, 0.4);
}

.easy-admission-section .tab-content h3 {
	color: white;
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.easy-admission-section .tab-content p {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}

.easy-admission-section .btn-primary {
	background: var(--bs-success);
	border-color: var(--bs-success);
	padding: 15px 30px;
	font-weight: 600;
	font-size: 1.1rem;
}

.easy-admission-section .btn-primary:hover {
	background: #6ba428;
	border-color: #6ba428;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(128, 189, 48, 0.4);
}

/* Enhanced Services Section */
.services-section {
	padding: 80px 0;
	background: white;
}

.services-section h2 {
	font-size: 2.2rem;
	margin-bottom: 15px;
}

.services-section .info-box {
	background: #f8f9fa;
	padding: 35px 25px;
	border-radius: 12px;
	border: 1px solid #e9ecef;
	height: 100%;
	transition: all 0.3s ease;
	text-align: center;
}

.services-section .info-box:hover {
	background: white;
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(40, 91, 147, 0.15);
	border-color: var(--bs-primary);
}

.services-section .icon-wrap {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	transition: all 0.3s ease;
}

.services-section .info-box:hover .icon-wrap {
	transform: scale(1.1);
	box-shadow: 0 8px 25px rgba(40, 91, 147, 0.3);
}

.services-section .info-box h5 {
	color: var(--bs-primary);
	font-weight: 600;
	margin-bottom: 15px;
}

.services-section .info-box p {
	color: #6c757d;
	line-height: 1.6;
	margin-bottom: 0;
}

/* Enhanced Achievements Section */
.achievements-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.achievements-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23285b93' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
	z-index: 1;
}

.achievements-section .container {
	position: relative;
	z-index: 2;
}

.achievements-section h2 {
	color: var(--bs-primary);
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.achievements-section h3 {
	color: #495057;
	font-size: 1.3rem;
	margin-bottom: 30px;
	line-height: 1.6;
}

.achievements-section .achievements-row-inner {
	padding: 40px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	border: 1px solid #e9ecef;
}

.achievements-section .btn-success {
	background: linear-gradient(135deg, var(--bs-success), #6ba428);
	border: none;
	border-radius: 25px;
	font-weight: 600;
	padding: 10px 20px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.achievements-section .btn-success::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.achievements-section .btn-success:hover::before {
	left: 100%;
}

.achievements-section .btn-success:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(128, 189, 48, 0.3);
}

.achievements-section .img-wrap {
	position: relative;
	overflow: hidden;
	/* border-radius: 12px; */
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.achievements-section .img-wrap::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(40, 91, 147, 0.1), rgba(40, 85, 203, 0.1));
	z-index: 1;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.achievements-section .img-wrap:hover::before {
	opacity: 1;
}

.achievements-section .img-wrap img {
	transition: transform 0.3s ease;
}

.achievements-section .img-wrap:hover img {
	transform: scale(1.05);
}

/* Enhanced Flexible Study Section */
.flexible-section {
	background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-secondary) 100%);
	color: white;
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.flexible-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpolygon points='50 0 60 40 100 50 60 60 50 100 40 60 0 50 40 40'/%3E%3C/g%3E%3C/svg%3E") repeat;
	z-index: 1;
}

.flexible-section .container {
	position: relative;
	z-index: 2;
}

.flexible-section h2 {
	font-size: 2.5rem;
	margin-bottom: 15px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.flexible-section h3 {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.3rem;
	margin-bottom: 30px;
	line-height: 1.6;
}

.flexible-section .flexible-row-inner {
	padding: 40px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.flexible-section .btn-success {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: white;
	border-radius: 25px;
	font-weight: 500;
	padding: 10px 20px;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.flexible-section .btn-success:hover {
	background: var(--bs-success);
	border-color: var(--bs-success);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(128, 189, 48, 0.4);
}

.flexible-section .btn-primary {
	background: var(--bs-success);
	border-color: var(--bs-success);
	font-weight: 600;
	border-radius: 25px;
}

.flexible-section .btn-primary:hover {
	background: #6ba428;
	border-color: #6ba428;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(128, 189, 48, 0.4);
}

/* Enhanced Testimonials Section */
.testimonials-section {
	background: #f8f9fa;
	padding: 80px 0;
	position: relative;
}

.testimonials-section h2 {
	font-size: 2.5rem;
	margin-bottom: 30px;
}

.custom-owl-nav button {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--bs-primary);
	color: white;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.custom-owl-nav button:hover {
	background: var(--bs-secondary);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(40, 91, 147, 0.3);
}

.testimonials-section .testimonial-google-info {
	background: white;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
}

.testimonials-section .testimonial-google-info:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(40, 91, 147, 0.15);
	border-color: var(--bs-primary);
}

.testimonials-section .testimonial-card {
	background: white;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
	height: 100%;
}

.testimonials-section .testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(40, 91, 147, 0.15);
	border-color: var(--bs-primary);
}

.testimonials-section .testimonial-rating {
	color: #fcd503;
	margin-bottom: 15px;
}

.testimonials-section .testimonial-text {
	color: #495057;
	line-height: 1.6;
	margin-bottom: 20px;
	font-style: italic;
}

.testimonials-section .testimonial-author {
	color: var(--bs-primary);
	font-weight: 600;
	margin-bottom: 5px;
}

.testimonials-section .testimonial-course {
	color: #6c757d;
	font-size: 0.9rem;
}

/* TESTIMONIALS PAGE STYLES */
.testimonials-hero {
	background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
	color: white;
	position: relative;
	min-height: 500px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.testimonials-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.1);
	z-index: 1;
}

.testimonials-hero::after {
	content: '';
	position: absolute;
	top: -80px;
	right: -80px;
	width: 250px;
	height: 250px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	z-index: 1;
}

.testimonials-hero .container {
	position: relative;
	z-index: 2;
}

.testimonial-carousel {
	margin: 60px 0;
}

.testimonial-card {
	background: white;
	border-radius: 20px;
	padding: 40px 30px;
	margin: 0 15px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	text-align: center;
	position: relative;
	overflow: hidden;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.testimonial-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #667eea);
}

.testimonial-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.student-photo {
	width: 100px !important;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 20px;
	border: 4px solid #f8f9fa;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.student-name {
	font-size: 1.3rem;
	font-weight: 700;
	color: #2d3436;
	margin-bottom: 5px;
}

.student-info {
	color: #636e72;
	margin-bottom: 20px;
}

.origin-flag, .destination-flag {
	font-size: 1.2rem;
	margin: 0 5px;
}

.testimonial-text {
	font-style: italic;
	color: #2d3436;
	line-height: 1.6;
	flex-grow: 1;
	align-items: center;
}

.course-badge {
	background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
	color: white;
	padding: 6px 15px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 15px;
}

.star-rating {
	color: #ffd700;
	font-size: 1.1rem;
	margin-bottom: 15px;
}

.testimonials-read-more-btn {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	border: none;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 0.85rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.testimonials-read-more-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.testimonial-text.expanded {
	max-height: none;
}

.filter-tabs {
	background: white;
	border-radius: 15px;
	padding: 30px;
	margin: 40px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.filter-btn {
	background: transparent;
	border: 2px solid #e0e7ff;
	color: #636e72;
	padding: 10px 20px;
	border-radius: 25px;
	margin: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
}

.filter-btn.active, .filter-btn:hover {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	border-color: #667eea;
	transform: translateY(-2px);
}

.video-testimonial {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 20px;
	cursor: pointer;
}

.video-thumbnail {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 10px;
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.7);
	color: white;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	transition: all 0.3s ease;
}

.play-button:hover {
	background: rgba(0, 0, 0, 0.9);
	transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(102, 126, 234, 0.9);
	color: white;
	border: none;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	font-size: 1.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.video-play-btn:hover {
	background: rgba(102, 126, 234, 1);
	transform: translate(-50%, -50%) scale(1.1);
}

.testimonials-stats-section {
	background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
	padding: 60px 0;
	margin: 60px 0;
}

.testimonials-stat-item {
	text-align: center;
	margin-bottom: 30px;
}

.testimonials-stat-number {
	font-size: 3rem;
	font-weight: bold;
	background: linear-gradient(45deg, #667eea, #764ba2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.testimonials-stat-label {
	color: #2d3436;
	font-weight: 600;
}

.testimonials-cta-section {
	background: linear-gradient(135deg, #285b93 0%, #2855cb 100%);
	color: white;
	padding: 80px 0;
	text-align: center;
	border-radius: 30px;
	margin: 60px 0;
}

.testimonials-cta-btn {
	background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
	color: white;
	border: none;
	padding: 15px 30px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	margin: 10px;
	transition: all 0.3s ease;
}

.testimonials-cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
	color: white;
	text-decoration: none;
}

/* Owl Carousel Customization for Testimonials */
.testimonials-section .owl-nav button {
	background: linear-gradient(135deg, #667eea, #764ba2) !important;
	color: white !important;
	border-radius: 50% !important;
	width: 50px !important;
	height: 50px !important;
	font-size: 1.2rem !important;
}

.testimonials-section .owl-dots .owl-dot span {
	background: #667eea !important;
}

.testimonials-section .owl-dots .owl-dot.active span {
	background: #ff6b6b !important;
}

/* Modal Styles for Testimonials */
.testimonial-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
}

.testimonial-modal-content {
	background-color: white;
	margin: 5% auto;
	padding: 40px;
	border-radius: 20px;
	width: 90%;
	max-width: 800px;
	max-height: 80vh;
	overflow-y: auto;
	position: relative;
}

.testimonial-modal-close {
	position: absolute;
	top: 15px;
	right: 25px;
	font-size: 2rem;
	font-weight: bold;
	cursor: pointer;
	color: #aaa;
}

.testimonial-modal-close:hover {
	color: #000;
}

.modal-student-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 20px;
	display: block;
	border: 6px solid #f8f9fa;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.journey-timeline {
	background: #f8f9fa;
	border-radius: 15px;
	padding: 30px;
	margin: 30px 0;
}

.timeline-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	padding: 15px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	margin-right: 20px;
	font-size: 1.2rem;
}

.testimonials-search-bar {
	background: white;
	border-radius: 15px;
	padding: 20px;
	margin: 20px 0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonials-search-input {
	border: 2px solid #e0e7ff;
	border-radius: 25px;
	padding: 12px 20px;
	width: 100%;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.testimonials-search-input:focus {
	border-color: #667eea;
	outline: none;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.social-share {
	margin-top: 20px;
	text-align: center;
}

.share-btn {
	background: #3b82f6;
	color: white;
	border: none;
	padding: 8px 15px;
	border-radius: 20px;
	margin: 0 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.share-btn:hover {
	transform: translateY(-2px);
}

.share-btn.facebook {
	background: #1877f2;
}

.share-btn.twitter {
	background: #1da1f2;
}

.share-btn.linkedin {
	background: #0077b5;
}

.share-btn.whatsapp {
	background: #25d366;
}

@media (max-width: 768px) {
	.testimonials-hero {
		padding: 50px 0;
	}

	.testimonial-card {
		margin: 0 10px;
		padding: 30px 20px;
	}

	.filter-btn {
		display: block;
		width: 100%;
		margin: 8px 0;
	}

	.testimonials-stat-number {
		font-size: 2.5rem;
	}

	.testimonial-modal-content {
		width: 95%;
		margin: 10% auto;
		padding: 20px;
	}
}

/* About Section Improvements */
.about-us-section {
	padding: 80px 0;
	background: #f8f9fa;
}

.about-us-section h2 {
	font-size: 2.5rem;
	color: #333;
	margin-bottom: 30px;
}

.about-info-box {
	background: white;
	border-radius: 20px;
	padding: 40px 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	height: 100%;
	border: none;
	position: relative;
	overflow: hidden;
}

.about-info-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(45deg, #667eea, #764ba2, #28a745);
}

.about-info-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-info-box .icon-wrap img {
	transition: transform 0.3s ease;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.about-info-box:hover .icon-wrap img {
	transform: scale(1.1) rotate(5deg);
}

.about-info-box-content h5 {
	color: #333;
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.about-info-box-content p {
	color: #666;
	line-height: 1.6;
}

/* Counter Section Improvements */
.about-counters {
	padding: 80px 0;
	background: linear-gradient(135deg, #285b93 0%, #2855cb 100%);
	position: relative;
	overflow: hidden;
}

.about-counters::before {
	content: '';
	position: absolute;
	top: -100px;
	left: -100px;
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.05);
}

.about-counters::after {
	content: '';
	position: absolute;
	bottom: -150px;
	right: -150px;
	width: 400px;
	height: 400px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
}

.about-counter-box {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	padding: 40px 20px;
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
}

.about-counter-box:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-counter-value {
	font-size: 3rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 10px;
}

.about-counter-text {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

/* Team Section Improvements */
.about-team-section {
	padding: 80px 0;
	background: white;
}

.about-team-section h2 {
	font-size: 2.5rem;
	color: #333;
	margin-bottom: 20px;
}

.about-team-member {
	background: #f8f9fa;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	height: 100%;
	border: none;
	position: relative;
	overflow: hidden;
}

.about-team-member::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(45deg, #667eea, #764ba2);
}

.about-team-member:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	background: white;
}

.about-team-member h4 {
	color: #333;
	font-size: 1.3rem;
	font-weight: 700;
	margin: 20px 0 15px;
}

.about-team-member p {
	color: #666;
	margin: 8px 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.about-team-member .contact-icon {
	width: 16px;
	height: 16px;
	color: #667eea;
}

.about-team-avatar {
	margin-bottom: 20px;
}

.about-team-avatar i {
	color: #667eea;
	background: #f8f9fa;
	padding: 20px;
	border-radius: 50%;
	border: 3px solid #e9ecef;
	transition: all 0.3s ease;
}

.about-team-member:hover .about-team-avatar i {
	background: #667eea;
	color: white;
	transform: scale(1.1);
}

/* Testimonial Section Improvements */
.about-testimonial {
	background: #f8f9fa;
	padding: 80px 0;
}

.about-testimonial img {
	width: 200px;
	height: 200px;
	object-fit: cover;
	border-radius: 50%;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	border: 5px solid white;
}

.about-testimonial blockquote {
	font-size: 1.3rem;
	font-style: italic;
	color: #555;
	border-left: 4px solid #667eea;
	padding-left: 30px;
	margin: 0;
	position: relative;
}

.about-testimonial blockquote::before {
	content: '"';
	font-size: 4rem;
	color: #667eea;
	position: absolute;
	top: -20px;
	left: -10px;
	opacity: 0.3;
}

.about-testimonial blockquote p {
	margin-bottom: 20px;
	line-height: 1.6;
}

.about-testimonial .blockquote-footer {
	font-size: 1.1rem;
	color: #777;
	font-style: normal;
}

.about-testimonial .blockquote-footer cite {
	font-weight: 600;
	color: #667eea;
}

@media (max-width: 768px) {

	.about-us-section, .about-counters, .about-team-section, .about-testimonial {
		padding: 60px 0;
	}

	.about-us-section h2, .about-team-section h2 {
		font-size: 2rem;
	}

	.about-counter-value {
		font-size: 2.5rem;
	}

	.about-info-box, .about-team-member {
		margin-bottom: 30px;
	}
}

/* Team Page Specific Styling */
.team-hero {
	background: linear-gradient(135deg, #0951a2 0%, #764ba2 100%);
	color: white;
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.team-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<?xml version="1.0" encoding="utf-8"?><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><text y="50" font-size="40" opacity="0.1">🇩🇪</text></svg>');
	opacity: 0.1;
}

.team-hero .container {
	position: relative;
	z-index: 2;
}

.team-member-card {
	background: white;
	border-radius: 1rem;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.team-member-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #0951a2, #764ba2, #ff6b6b);
}

.team-member-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.team-member-photo {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 20px;
	border: 4px solid #f8f9fa;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.team-member-card:hover .team-member-photo {
	transform: scale(1.05);
	border-color: #0951a2;
}

.team-member-name {
	font-size: 1.5rem;
	font-weight: 700;
	color: #2d3436;
	margin-bottom: 8px;
}

.team-member-title {
	color: #0951a2;
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 15px;
}

.team-member-bio {
	color: #636e72;
	line-height: 1.6;
	margin-bottom: 20px;
}

.team-member-bio.collapsed {
	max-height: 120px;
	overflow: hidden;
	position: relative;
}

.team-member-bio.collapsed::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 30px;
	background: linear-gradient(to bottom, transparent, white);
}

.team-read-more-btn {
	background: linear-gradient(135deg, #0951a2, #764ba2);
	color: white;
	border: none;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-bottom: 15px;
}

.team-read-more-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.team-social-links {
	display: flex;
	gap: 15px;
	justify-content: center;
}

.team-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0951a2, #764ba2);
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 1.2rem;
}

.team-social-link:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
	color: white;
}

.team-social-link.linkedin {
	background: linear-gradient(135deg, #0077b5, #005885);
}

.team-social-link.email {
	background: linear-gradient(135deg, #ea4335, #d93025);
}

.team-social-link.phone {
	background: linear-gradient(135deg, #25d366, #128c7e);
}

.team-stats {
	background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
	color: white;
	border-radius: 1rem;
	padding: 40px;
	margin: 40px 0;
}

.team-stat-item {
	text-align: center;
	margin-bottom: 30px;
}

.team-stat-number {
	font-size: 3rem;
	font-weight: bold;
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.team-stat-label {
	font-size: 1.1rem;
	font-weight: 600;
	opacity: 0.9;
}

.team-values {
	background: #f8f9fa;
	border-radius: 1rem;
	padding: 40px;
	margin: 40px 0;
}

.team-value-card {
	background: white;
	border-radius: 15px;
	padding: 25px;
	margin-bottom: 20px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	border-left: 4px solid #0951a2;
}

.team-value-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0951a2, #764ba2);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	font-size: 1.5rem;
	color: white;
}

.team-cta-section {
	background: linear-gradient(135deg, #0951a2 0%, #764ba2 100%);
	color: white;
	border-radius: 1rem;
	padding: 60px 40px;
	text-align: center;
}

.team-cta-btn {
	background: white;
	color: #0951a2;
	border: none;
	padding: 15px 30px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	margin: 10px;
}

.team-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
	color: #0951a2;
	text-decoration: none;
}

@media (max-width: 768px) {
	.team-hero {
		padding: 50px 0;
	}

	.team-member-card {
		padding: 20px;
	}

	.team-member-photo {
		width: 120px;
		height: 120px;
	}

	.team-stat-number {
		font-size: 2.5rem;
	}

	.team-stats, .team-values, .team-cta-section {
		margin: 30px 0;
		padding: 30px 20px;
	}
}

.locations {
	background: #f8f9fa;
	padding: 100px 0;
}

.locations-section-title {
	text-align: center;
	margin-bottom: 60px;
}

.locations-section-title h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
}

.locations-section-title p {
	font-size: 1.2rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.locations-location-card {
	background: white;
	border: none;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	height: 100%;
	position: relative;
}

.locations-location-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	transform: scaleX(0);
	transition: transform 0.4s ease;
	z-index: 2;
}

.locations-location-card:hover::before {
	transform: scaleX(1);
}

.locations-location-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
}

.locations-location-card img {
	object-fit: cover;
	height: 250px;
	width: 100%;
	transition: transform 0.4s ease;
}

.locations-location-card:hover img {
	transform: scale(1.05);
}

.locations-card-body {
	padding: 30px;
	text-align: center;
}

.locations-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
	position: relative;
}

.locations-card-text {
	color: #666;
	line-height: 1.6;
	margin-bottom: 20px;
}

.locations-location-features {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.locations-location-features li {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	color: #555;
	font-size: 0.9rem;
}

.locations-location-features i {
	color: #667eea;
	margin-right: 10px;
	width: 16px;
}

.locations-location-btn {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 25px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.locations-location-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
	color: white;
	text-decoration: none;
}

.locations-stats-section {
	background: linear-gradient(135deg, #285b93 0%, #2855cb 100%);
	color: white;
	padding: 80px 0;
	margin: 60px 0 0 0;
	text-align: center;
}

.locations-stat-item {
	margin-bottom: 30px;
}

.locations-stat-number {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 10px;
	display: block;
}

.locations-stat-label {
	font-size: 1.1rem;
	font-weight: 600;
	opacity: 0.9;
}

.locations-map-section {
	background: white;
	padding: 80px 0;
	text-align: center;
}

.locations-map-placeholder {
	background: #f8f9fa;
	border: 2px dashed #dee2e6;
	border-radius: 15px;
	padding: 60px 20px;
	margin: 40px 0;
}

.locations-map-placeholder i {
	font-size: 4rem;
	color: #667eea;
	margin-bottom: 20px;
}

@media (max-width: 768px) {

	.locations {
		padding: 60px 0;
	}

	.locations-section-title h2 {
		font-size: 2rem;
	}

	.locations-card-body {
		padding: 20px;
	}

	.locations-stat-number {
		font-size: 2.5rem;
	}
}

.student-finance-section-page {
	background: #f8f9fa;
	padding: 100px 0;
}

.student-finance-finance-type {
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	margin-bottom: 25px;
	transition: all 0.3s ease;
	border-left: 4px solid #667eea;
}

.student-finance-finance-type:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.student-finance-finance-type h6 {
	font-size: 1.3rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.student-finance-finance-type .icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.1rem;
}

.student-finance-finance-type p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 0;
}

.student-finance-info-block {
	background: linear-gradient(135deg, #285b93 0%, #2855cb 100%);
	color: white;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
	position: relative;
	overflow: hidden;
}

.student-finance-info-block::before {
	content: '';
	position: absolute;
	top: -50px;
	right: -50px;
	width: 150px;
	height: 150px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}

.student-finance-info-block h3 {
	font-weight: 700;
	position: relative;
	z-index: 2;
}

.student-finance-info-block h5 {
	opacity: 0.9;
	position: relative;
	z-index: 2;
}

.student-finance-info-block ul {
	position: relative;
	z-index: 2;
}

.student-finance-info-block ul li {
	margin-bottom: 10px;
	display: flex;
	align-items: start;
	gap: 10px;
}

.student-finance-info-block ul li::before {
	content: "✓";
	color: #28a745;
	font-weight: bold;
	font-size: 1.2rem;
	margin-top: 2px;
}

.student-finance-info-block .btn {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: white;
	position: relative;
	z-index: 2;
}

.student-finance-info-block .btn:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

.student-finance-additional-info {
	background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
	border: none !important;
	color: #2d3436;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	margin-top: 40px;
}

.student-finance-additional-info h6 {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #2d3436;
}

.student-finance-additional-info p {
	margin-bottom: 0;
	line-height: 1.6;
}

.student-finance-additional-info a {
	color: #667eea;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: all 0.3s ease;
}

.student-finance-additional-info a:hover {
	color: #5a67d8;
	border-bottom-color: #5a67d8;
}

.student-finance-finance-calculator {
	background: white;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	margin-top: 40px;
}

.student-finance-calculator-result {
	background: linear-gradient(135deg, #28a745, #20c997);
	color: white;
	padding: 20px;
	border-radius: 15px;
	text-align: center;
	margin-top: 20px;
}

.student-finance-amount-display {
	font-size: 2rem;
	font-weight: 700;
	margin: 10px 0;
}

@media (max-width: 768px) {

	.student-finance-services-section {
		padding: 60px 0;
	}

	.student-finance-info-box {
		padding: 25px;
	}

	.student-finance-video-wrapper {
		padding: 15px;
	}

	.student-finance-section-header h2 {
		font-size: 2rem;
	}

	.student-finance-cta-section {
		padding: 40px 20px;
	}
}

.our-services-services-section {
	background: #f8f9fa;
	padding: 100px 0;
}

.our-services-info-box {
	background: white;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	height: 100%;
}

.our-services-info-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

.our-services-info-box:hover::before {
	transform: scaleX(1);
}

.our-services-info-box:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

.our-services-icon-wrap {
	position: relative;
	display: inline-block;
}

.our-services-icon-wrap::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.1;
	z-index: -1;
}

.our-services-info-box-content h5 {
	font-size: 1.4rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
}

.our-services-info-box-content p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 0;
}

.our-services-video-wrapper {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	background: linear-gradient(135deg, #667eea, #764ba2);
	padding: 20px;
}

.our-services-video-wrapper video {
	width: 100%;
	border-radius: 15px;
}

.our-services-section-header {
	text-align: center;
	margin-bottom: 60px;
}

.our-services-section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 15px;
}

.our-services-section-header p {
	font-size: 1.2rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.our-services-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-bottom: 60px;
}

.our-services-cta-section {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	padding: 60px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.our-services-cta-section h3 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.our-services-cta-section p {
	font-size: 1.1rem;
	opacity: 0.9;
	margin-bottom: 30px;
}

.our-services-cta-section .btn {
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: white;
	padding: 15px 40px;
	font-size: 1.1rem;
	font-weight: 600;
}

.our-services-cta-section .btn:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.our-services-page-header h1 {
		font-size: 2.5rem;
	}

	.our-services-page-header {
		min-height: 400px;
	}

	.student-finance-services-section {
		padding: 60px 0;
	}

	.student-finance-info-box {
		padding: 25px;
	}

	.student-finance-video-wrapper {
		padding: 15px;
	}

	.student-finance-section-header h2 {
		font-size: 2rem;
	}

	.student-finance-cta-section {
		padding: 40px 20px;
	}
}

.our-services-plyr__video-wrapper {
	border-radius: 10px;
	overflow: hidden;
}

.faqs-section {
	padding: 80px 0;
	background: #f8f9fa;
}

.faqs-section h2 {
	font-size: 2.5rem;
	color: #333;
	margin-bottom: 40px;
	text-align: center;
}

.faq-search {
	background: white;
	border-radius: 50px;
	padding: 15px 25px;
	border: 2px solid #e9ecef;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	margin-bottom: 40px;
}

.faq-search:focus {
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
	outline: none;
}

.accordion-item {
	border: none;
	margin-bottom: 15px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	background: white;
}

.accordion-button {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	border: none;
	font-weight: 600;
	padding: 20px 25px;
	border-radius: 15px !important;
	position: relative;
}

.accordion-button:not(.collapsed) {
	background: linear-gradient(135deg, #764ba2, #667eea);
	color: white;
	box-shadow: none;
}

.accordion-button:focus {
	border-color: transparent;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.25);
}

.accordion-button::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
	background: white;
	padding: 25px;
	border-radius: 0 0 15px 15px;
	color: #666;
	line-height: 1.6;
}

.faq-category {
	background: white;
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 40px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-category h3 {
	color: #333;
	font-size: 1.5rem;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #667eea;
	display: flex;
	align-items: center;
	gap: 10px;
}

.category-icon {
	width: 24px;
	height: 24px;
	color: #667eea;
}

@media (max-width: 768px) {

	.faqs-section {
		padding: 60px 0;
	}

	.faqs-section h2 {
		font-size: 2rem;
	}
}


/* Nigeria Page Styles */
.nigeria-hero {
	background: linear-gradient(135deg, #00b074 0%, #ffffff 50%, #00b074 100%);
	position: relative;
	overflow: hidden;
}

.nigeria-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><text y="50" font-size="40" opacity="0.1">🇳🇬</text></svg>');
	animation: float 8s ease-in-out infinite;
}

/* USA Page Styles */
.usa-hero {
	background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%);
	color: white;
	position: relative;
	overflow: hidden;
}

.usa-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><text y="50" font-size="40" opacity="0.1">🇺🇸</text></svg>') repeat;
	opacity: 0.1;
}

.usa-hero .container {
	position: relative;
	z-index: 2;
}

.usa-feature-card {
	background: white;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	height: 100%;
	border: none;
	position: relative;
	overflow: hidden;
}

.usa-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
}

.usa-stats {
	background: linear-gradient(135deg, #285b93 0%, #2855cb 100%);
	color: white;
	border-radius: 20px;
	padding: 40px;
}

.usa-stat-item {
	text-align: center;
	margin-bottom: 30px;
}

.usa-stat-number {
	font-size: 48px;
	font-weight: bold;
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.usa-cities {
	background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
	border-radius: 20px;
	padding: 40px;
	margin: 30px 0;
}

.usa-city-card {
	background: white;
	border-radius: 15px;
	padding: 25px;
	margin-bottom: 20px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.usa-city-card:hover {
	transform: scale(1.02);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.usa-cta {
	background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
	color: white;
	padding: 60px 0;
	margin: 40px 0;
	text-align: center;
}

.usa-btn {
	background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
	border: none;
	color: white;
	padding: 15px 30px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
}

.usa-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	color: white;
	text-decoration: none;
}

.usa-journey-link {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	padding: 15px 30px;
	border-radius: 50px;
	text-decoration: none;
	display: inline-block;
	font-weight: 600;
	transition: all 0.3s ease;
}

.usa-journey-link:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
	color: white;
	text-decoration: none;
}

.floating-usa-icons {
	position: fixed;
	pointer-events: none;
	z-index: 1;
	animation: float 6s ease-in-out infinite;
	opacity: 0.1;
	font-size: 60px;
}

/* Canada Page Styles */
.canada-hero {
	background: linear-gradient(135deg, #ff4757 0%, #c44569 50%, #f8b500 100%);
	color: white;
	position: relative;
	overflow: hidden;
	padding: 80px 0;
}

.canada-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><text y="50" font-size="40" opacity="0.1">🇨🇦</text></svg>') repeat;
	opacity: 0.1;
}

.canada-hero .container {
	position: relative;
	z-index: 2;
}

.canada-feature-card {
	background: white;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	height: 100%;
	border: none;
	position: relative;
	overflow: hidden;
}

.canada-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(45deg, #ff4757, #f8b500);
}

.canada-feature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.canada-feature-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff4757, #c44569);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 32px;
	color: white;
}

.canada-stats {
	background: linear-gradient(135deg, #285b93 0%, #2855cb 100%);
	color: white;
	border-radius: 20px;
	padding: 40px;
}

.canada-stat-item {
	text-align: center;
	margin-bottom: 30px;
}

.canada-stat-number {
	font-size: 48px;
	font-weight: bold;
	background: linear-gradient(45deg, #ffd700, #ffed4e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.canada-cities {
	background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
	border-radius: 20px;
	padding: 40px;
	margin: 30px 0;
}

.canada-city-card {
	background: white;
	border-radius: 15px;
	padding: 25px;
	margin-bottom: 20px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.canada-city-card:hover {
	transform: scale(1.02);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.canada-cta {
	background: linear-gradient(135deg, #ff4757, #c44569);
	color: white;
	padding: 60px 0;
	margin: 40px 0;
	text-align: center;
}

.canada-btn {
	background: linear-gradient(135deg, #ff4757, #c44569);
	border: none;
	color: white;
	padding: 15px 30px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
}

.canada-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	color: white;
	text-decoration: none;
}

.canada-journey-link {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	padding: 15px 30px;
	border-radius: 50px;
	text-decoration: none;
	display: inline-block;
	font-weight: 600;
	transition: all 0.3s ease;
}

.canada-journey-link:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
	color: white;
	text-decoration: none;
}

.floating-canada-icons {
	position: fixed;
	pointer-events: none;
	z-index: 1;
	animation: float 6s ease-in-out infinite;
	opacity: 0.1;
	font-size: 48px;
}

/* Journey Flow Additional Styles */
.step-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2;
	flex: 1;
	max-width: 150px;
}

.step-number {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	margin-bottom: 10px;
	transition: all 0.3s ease;
}

.step-item.completed .step-number {
	background: linear-gradient(135deg, #4caf50, #45a049);
	transform: scale(1.1);
}

.step-item.active .step-number {
	background: linear-gradient(135deg, #ff6b6b, #ee5a52);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}

.step-title {
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	color: #333;
}

.selection-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.destination-card, .origin-card {
	background: white;
	border: 2px solid #e0e7ff;
	border-radius: 15px;
	padding: 25px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.destination-card::before, .origin-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transition: left 0.5s ease;
}

.destination-card:hover::before, .origin-card:hover::before {
	left: 100%;
}

.destination-card:hover, .origin-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	border-color: #667eea;
}

.destination-card.selected, .origin-card.selected {
	background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	border-color: #667eea;
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.country-flag {
	font-size: 48px;
	margin-bottom: 15px;
	display: block;
}

.country-name {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}

.country-description {
	font-size: 14px;
	opacity: 0.8;
	line-height: 1.4;
}

.journey-result {
	display: none;
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	color: white;
	border-radius: 20px;
	padding: 40px;
	text-align: center;
	margin-top: 30px;
	animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.result-title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 15px;
}

.result-subtitle {
	font-size: 18px;
	margin-bottom: 25px;
	opacity: 0.9;
}

.journey-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: white;
	color: #333;
	padding: 15px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	margin: 10px;
}

.journey-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	color: #333;
	text-decoration: none;
}

.destination-info {
	display: none;
	margin-top: 30px;
	padding: 30px;
	background: linear-gradient(135deg, #ffeaa7, #fab1a0);
	border-radius: 15px;
	color: #2d3436;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.info-item {
	background: rgba(255, 255, 255, 0.3);
	padding: 20px;
	border-radius: 10px;
	text-align: center;
}

.info-icon {
	font-size: 32px;
	margin-bottom: 10px;
	display: block;
}

.info-title {
	font-weight: 700;
	margin-bottom: 5px;
}

.floating-elements {
	position: fixed;
	pointer-events: none;
	z-index: 1;
}

.floating-element {
	position: absolute;
	animation: float 6s ease-in-out infinite;
	opacity: 0.1;
}

/* Journey Flow Responsive Styles */
@media (max-width: 768px) {
	.journey-steps {
		flex-direction: column;
		gap: 20px;
	}

	.journey-steps::before {
		display: none;
	}

	.selection-grid {
		grid-template-columns: 1fr;
	}

	.step-selector {
		padding: 25px;
		margin: -30px 15px 40px;
	}

	.usa-hero, .canada-hero, .spain-hero, .germany-hero, .australia-hero, .france-hero {
		padding: 40px 0;
	}

	.usa-stat-number, .germany-stat-number {
		font-size: 36px;
	}

	.usa-cities, .usa-stats, .germany-cities, .germany-stats, .spain-stats {
		margin: 20px 0;
		padding: 25px;
	}
}

/* Germany Page Styles */
.germany-hero {
	background: linear-gradient(135deg, #00aaff 0%, #ffffff 50%, #00aaff 100%);
	position: relative;
	overflow: hidden;
}

.germany-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><text y="50" font-size="40" opacity="0.1">🇩🇪</text></svg>');
	animation: float 8s ease-in-out infinite;
}

.germany-hero .container {
	position: relative;
	z-index: 2;
}

.step-selector {
	background: white;
	border-radius: 20px;
	padding: 40px;
	margin: -40px 0 60px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 3;
}

.journey-steps {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
	position: relative;
}

.journey-steps::before {
	content: '';
	position: absolute;
	top: 20px;
	left: 20%;
	right: 20%;
	height: 2px;
	background: linear-gradient(to right, #667eea, #764ba2);
	z-index: 1;
}


.section-header {
	text-align: center;
	margin-bottom: 4rem;
	position: relative;
}

.enhanced-section-bg .section-title {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	position: relative;
}

.enhanced-section-bg .section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(135deg, #dd0000, #ffcc00);
	border-radius: 2px;
}

.section-subtitle {
	font-size: 1.2rem;
	color: #718096;
	font-weight: 400;
	max-width: 600px;
	margin: 0 auto;
}

.visa-highlight-card {
	background: linear-gradient(135deg, #dd0000 0%, #ffcc00 100%);
	color: white;
	border-radius: 20px;
	padding: 2rem;
	margin-top: 2rem;
	position: relative;
	overflow: hidden;
}

.visa-highlight-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	animation: rotate 20s linear infinite;
}

.visa-highlight-card .alert-content {
	position: relative;
	z-index: 2;
}

@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.enhanced-section-bg {
	background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
	position: relative;
}

.enhanced-section-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		radial-gradient(circle at 20% 80%, rgba(221, 0, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(255, 204, 0, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
}

.course-type-icon {
	width: 70px;
	height: 70px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	color: white;
	margin-bottom: 1.5rem;
	transition: all 0.4s ease;
}

.undergraduate-icon {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.postgraduate-icon {
	background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.research-icon {
	background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.enhanced-card:hover .course-type-icon {
	transform: rotateZ(10deg) scale(1.1);
}

/* How To Apply Additional Styles */
.step h4 {
	color: #333;
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 15px;
}

.step p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 0;
}

.step ul {
	color: #666;
	line-height: 1.6;
	margin-top: 10px;
	padding-left: 20px;
}

.step ul li {
	margin-bottom: 5px;
}

/* Course Detail Additional Styles */
.page-header h1 {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 1rem;
}

.page-header .lead {
	font-size: 1.3rem;
	font-weight: 400;
	opacity: 0.9;
	line-height: 1.6;
}

/* ==========================================
   UK STUDY PAGE STYLES
   ========================================== */

/* UK Study Hero */
.uk-study-hero {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.uk-study-hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 40%;
	height: 100%;
	background: url("../images/hero-section-vector-bg.png");
	background-size: contain;
	background-position: center right;
	background-repeat: no-repeat;
	opacity: 0.05;
}

.hero-image-wrapper img {
	max-width: 100%;
	height: auto;
}

.hero-cta-buttons .btn {
	padding: 12px 25px;
	font-weight: 600;
}

/* UK Benefits Section */
.uk-benefits-section {
	background: #ffffff;
}

.benefit-card {
	background: white;
	padding: 30px;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
}

.benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--bs-primary), #4a69bd);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	color: white;
	font-size: 1.8rem;
}

.benefit-card h5 {
	font-size: 1.2rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 15px;
}

.benefit-card p {
	color: #6c757d;
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

/* UK Process Section */
.uk-process-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
	padding: 80px 0;
}

.process-steps {
	margin-bottom: 40px;
}

.process-step {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
	position: relative;
}

.process-step:not(:last-child)::after {
	content: '';
	position: absolute;
	left: 22px;
	top: 50px;
	width: 2px;
	height: 40px;
	background: linear-gradient(180deg, var(--bs-primary), #4a69bd);
	border-radius: 2px;
}

.step-number {
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, var(--bs-primary), #4a69bd);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 1.1rem;
	margin-right: 20px;
	flex-shrink: 0;
	box-shadow: 0 4px 15px rgba(40, 91, 147, 0.3);
}

.step-content h5 {
	font-size: 1.2rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 10px;
}

.step-content p {
	color: #6c757d;
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

.process-image-wrapper img {
	max-width: 100%;
	height: auto;
}

/* Quick Links Section */
.uk-quick-links-section {
	background: #ffffff;
}

.quick-link-card {
	display: block;
	background: white;
	padding: 30px 20px;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.quick-link-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
	color: inherit;
	text-decoration: none;
}

.quick-link-card i {
	font-size: 2.5rem;
	color: var(--bs-primary);
	margin-bottom: 15px;
	display: block;
}

.quick-link-card h6 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 10px;
}

.quick-link-card p {
	color: #6c757d;
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
	.uk-study-hero {
		padding: 60px 0;
	}

	.uk-study-hero h1 {
		font-size: 2.2rem;
	}

	.hero-cta-buttons .btn {
		display: block;
		width: 100%;
		margin-bottom: 15px;
	}

	.uk-benefits-section,
	.uk-process-section {
		padding: 60px 0;
	}

	.benefit-card,
	.quick-link-card {
		margin-bottom: 30px;
	}

	.process-step {
		margin-bottom: 40px;
	}

	.process-step:not(:last-child)::after {
		height: 60px;
	}
}

/* Additional Mobile Responsive Improvements */
@media (max-width: 768px) {

	/* Course search form improvements */


	.course-search-form .input-group .form-control,
	.course-search-form .input-group .form-select {
		border-radius: 0.375rem !important;
		border: 1px solid #ced4da !important;
		margin-bottom: 10px;
	}

	.course-search-form .input-group-text {
		border-radius: 0.375rem !important;
		border: 1px solid #ced4da !important;
		justify-content: center;
		margin-bottom: 10px;
	}

	/* Hero section button improvements */
	.d-flex.gap-3.flex-wrap .btn {
		flex: 1;
		min-width: 200px;
		text-align: center;
		padding: 12px 20px;
		margin-bottom: 10px;
	}

	/* Hero section text improvements */
	.display-4 {
		font-size: 2rem !important;
	}

	.lead {
		font-size: 1.1rem !important;
	}

	/* Stats cards mobile improvements */
	.stats-card {
		margin-bottom: 20px;
		padding: 30px 20px !important;
	}

	.stats-card h3 {
		font-size: 2.5rem !important;
	}

	/* Course filter improvements */
	.courses-filters .form-group {
		margin-bottom: 15px;
	}

	.courses-filters label {
		font-size: 0.9rem;
		margin-bottom: 8px;
	}
}

@media (max-width: 576px) {

	/* Extra small devices */
	.display-4 {
		font-size: 1.8rem !important;
	}

	.btn-lg {
		padding: 10px 16px;
		font-size: 1rem;
	}

	.d-flex.gap-3.flex-wrap {
		gap: 10px !important;
	}


	/* Course grid improvements */
	.course-grid-item {
		margin-bottom: 20px;
	}

	/* Hero image improvements */
	.position-absolute.top-0.end-0 {
		position: static !important;
		margin: 15px 0 0 0 !important;
		display: inline-block;
		width: auto;
	}
}