:root {
	--navy: #122A4E;
	--cyan: #40B3CE;
	--white: #ffffff;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	background: var(--navy);
}

/* =====================================================
HERO SECTION
===================================================== */

.travel-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	background: linear-gradient(
	90deg,
	rgba(18,42,78,.88) 0%,
	rgba(18,42,78,.45) 45%,
	rgba(18,42,78,.15) 100%
	),
	url('../../assets/img/beautiful-girl-standing.jpg');
	background-size: cover;
	background-position: center;
	color: #fff;
}

.hero-carousel-wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	flex-grow: 1;
	display: flex;
	align-items: center;
}

/* Dark bottom gradient overlay */
.travel-hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 260px;
	background: linear-gradient(
	to top,
	rgba(18,42,78,.95),
	transparent
	);
	pointer-events: none;
	z-index: 1;
}

/* =====================================================
NAVBAR
===================================================== */

.hero-navbar {
	position: fixed;
	top: 22px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 60px);
	max-width: 1450px;
	z-index: 1000;
	padding: 10px 18px;
	border: 1px solid rgba(255,255,255,.35);
	border-radius: 50px;
	background: rgba(18,42,78,.35);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow: 0 15px 40px rgba(0,0,0,.15);
	transition: transform .45s ease, opacity .35s ease, border-radius .3s ease;
}

.hero-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff !important;
	text-decoration: none;
	font-size: 22px;
	font-weight: 800;
	white-space: nowrap;
}

.hero-logo img {
	width: 210px; 
}
 

.hero-navbar .nav-link {
	position: relative;
	color: rgba(255,255,255,.9) !important;
	font-size: 14px;
	font-weight: 500;
	padding: 12px 16px !important;
	transition: .3s ease;
}

.hero-navbar .nav-link:hover {
	color: var(--cyan) !important;
}

.hero-navbar .nav-link.active {
	color: #fff !important;
}

.hero-navbar .nav-link.active::after {
	content: "";
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 3px;
	height: 3px;
	background: var(--cyan);
	border-radius: 20px;
}

.nav-circle {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border: 1px solid rgba(255,255,255,.45);
	border-radius: 50%;
	text-decoration: none;
	transition: .3s ease;
}

.nav-circle:hover {
	color: #fff;
	background: var(--cyan);
	border-color: var(--cyan);
	transform: translateY(-2px);
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 10px 17px;
	color: #fff;
	border: 1px solid rgba(255,255,255,.45);
	border-radius: 50px;
	text-decoration: none;
	font-size: 14px;

	text-transform: uppercase;
	transition: .3s ease;
}

.nav-menu:hover {
	color: #fff;
	border-color: var(--cyan);
	background: rgba(64,179,206,.15);
}

.menu-dots {
	display: grid;
	grid-template-columns: repeat(3, 4px);
	gap: 3px;
}

.menu-dots span {
	width: 4px;
	height: 4px;
	background: #fff;
	border-radius: 50%;
}

.hero-toggler {
	border: 1px solid rgba(255,255,255,.4);
	border-radius: 50%;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: transparent;
}

/* =====================================================
HERO CONTENT & ANIMATIONS
===================================================== */

.hero-content {
	position: relative;
	z-index: 10;
	padding-top: 130px;
	padding-bottom: 100px;
}

.hero-small-title {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--cyan);
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.hero-small-title::before {
	content: "";
	width: 35px;
	height: 2px;
	background: var(--cyan);
}

.hero-title {
	margin-top: 18px;
	max-width: 650px;
	font-size: clamp(60px, 8vw, 115px);
	line-height: .88;
	font-weight: 900;
	letter-spacing: -5px;
	color: #fff;
}

.hero-title span {
	color: var(--cyan);
}

.hero-description {
	max-width: 520px;
	margin-top: 30px;
	color: rgba(255,255,255,.82);
	font-size: 18px;
	line-height: 1.7;
}

.hero-actions {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-top: 32px;
}

.btn-explore {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	padding: 15px 23px;
	color: #fff;
	background: var(--cyan);
	border: 1px solid var(--cyan);
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 12px 30px rgba(64,179,206,.3);
	transition: .3s ease;
}

.btn-explore:hover {
	color: #fff;
	background: #319eb8;
	transform: translateY(-3px);
}

.btn-video {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}

.btn-video-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255,255,255,.5);
	border-radius: 50%;
	transition: .3s ease;
}

.btn-video:hover .btn-video-icon {
	background: var(--cyan);
	border-color: var(--cyan);
}

/* Slide text transitions */
.carousel-item .hero-small-title,
.carousel-item .hero-title,
.carousel-item .hero-description,
.carousel-item .hero-actions {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-item.active .hero-small-title {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.15s;
}

.carousel-item.active .hero-title {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.3s;
}

.carousel-item.active .hero-description {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.45s;
}

.carousel-item.active .hero-actions {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.6s;
}

/* =====================================================
VERTICAL TIMELINE CAROUSEL INDICATORS
===================================================== */

.hero-timeline.carousel-indicators {
	position: absolute;
	left: 20px;
	right: auto;
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
	z-index: 100;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 17px;
	margin: 0;
	padding: 0;
	width: auto;
	background: none;
}

.hero-timeline.carousel-indicators button {
	box-sizing: content-box;
	flex: 0 1 auto;
	width: auto;
	height: auto;
	padding: 0;
	margin: 0;
	text-indent: 0;
	background-color: transparent;
	background-clip: padding-box;
	border: 0;
	opacity: 1;
	transition: all 0.3s ease;
	cursor: pointer;
}

.timeline-line {
	width: 1px;
	height: 30px;
	background: rgba(255,255,255,.65);
}

.timeline-dot {
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 50%;
	display: block;
	transition: all 0.3s ease;
}

.hero-timeline.carousel-indicators button.active .timeline-dot {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 7px solid rgba(64,179,206,.35);
	background: var(--cyan);
	box-shadow: 0 0 0 1px rgba(255,255,255,.4);
}

.hero-timeline.carousel-indicators button.active .timeline-dot::after {
	content: "";
	width: 6px;
	height: 6px;
	background: #fff;
	border-radius: 50%;
}

/* =====================================================
DESTINATION CARDS
===================================================== */

.destination-wrapper {
	position: absolute;
	right: 2%;
	bottom: 150px;
	z-index: 10;
	width: 50%;
}

.destination-card {
	position: relative;
	height: 250px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.55);
	border-radius: 20px;
	background: rgba(18,42,78,.2);
	backdrop-filter: blur(8px);
	box-shadow: 0 20px 40px rgba(0,0,0,.3);
	transition: transform .35s ease;
}

.destination-card:hover {
	transform: translateY(-8px);
}

.destination-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
@supports(object-fit: cover){

	.destination-card img {
		width: 100%;
		height: 100%;
		object-fit: cover; 
		object-position: center;
	}
}
.destination-card:hover img {
	transform: scale(1.08);
}

.destination-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
	to top,
	rgba(18,42,78,.85),
	transparent 60%
	);
}

.destination-content {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 2;
}

.destination-content h5 {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
}

.destination-content p {
	margin: 4px 0 0;
	color: rgba(255,255,255,.75);
	font-size: 13px;
}

.destination-arrow {
	position: absolute;
	right: 15px;
	bottom: 15px;
	z-index: 3;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255,255,255,.5);
	border-radius: 50%;
	color: #fff;
	background: rgba(18,42,78,.45);
}

/* =====================================================
HERO BOTTOM BAR
===================================================== */

.hero-bottom-bar {
	position: relative;
	z-index: 20;
	width: 100%;
	padding: 22px 0;
	background: rgba(18, 42, 78, 0.45);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.bottom-stat-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.bottom-stat-icon {
	width: 46px;
	height: 46px;
	min-width: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(64, 179, 206, 0.15);
	border: 1px solid rgba(64, 179, 206, 0.4);
	border-radius: 50%;
	color: var(--cyan);
	font-size: 20px;
}

.bottom-stat-text h6 {
	margin: 0;
	font-size: 16px;
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
}

.bottom-stat-text p {
	margin: 2px 0 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}

/* =====================================================
RESPONSIVE
===================================================== */

@media (max-width: 1199px) {
	.destination-wrapper {
		width: 52%;
		right: 2%;
	}

	.destination-card {
		height: 220px;
	}

	.hero-title {
		font-size: 80px;
	}
}

@media (max-width: 991px) {
	.hero-navbar {
		width: calc(100% - 30px);
		top: 12px;
		border-radius: 20px;
	}

	.hero-navbar .navbar-collapse {
		margin-top: 15px;
		padding: 15px;
		background: rgba(18, 42, 78, 0.95);
		border-radius: 15px;
	}

	.hero-content {
		padding-top: 130px;
		padding-bottom: 380px;
	}

	.hero-title {
		font-size: 70px;
		letter-spacing: -3px;
	}

	.destination-wrapper {
		left: 8%;
		right: 8%;
		bottom: 120px;
		width: auto;
	}

	.destination-card {
		height: 200px;
	}

	.hero-timeline {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.travel-hero {
		min-height: 1000px;
		background-position: 62% center;
	}

	.hero-content {
		text-align: center;
		padding-top: 120px;
		padding-bottom: 360px;
	}

	.hero-small-title {
		justify-content: center;
	}

	.hero-title {
		font-size: 58px;
		letter-spacing: -3px;
	}

	.hero-description {
		margin-left: auto;
		margin-right: auto;
		font-size: 15px;
	}

	.hero-actions {
		justify-content: center;
		flex-wrap: wrap;
	}

	.destination-wrapper {
		left: 5%;
		right: 5%;
		bottom: 160px;
	}

	.destination-card {
		height: 160px;
		border-radius: 15px;
	}

	.destination-content {
		left: 12px;
		bottom: 12px;
	}

	.destination-content h5 {
		font-size: 14px;
	}

	.destination-content p {
		font-size: 11px;
	}

	.destination-arrow {
		width: 32px;
		height: 32px;
		right: 10px;
		bottom: 10px;
	}
}

@media (max-width: 575px) {
	.hero-logo {
		font-size: 18px;
	}

	.hero-logo-icon {
		width: 36px;
		height: 36px;
	}

	.hero-title {
		font-size: 42px;
		letter-spacing: -2px;
	}

	.hero-description {
		font-size: 14px;
	}

	.btn-explore {
		padding: 13px 19px;
	}

	.destination-wrapper {
		bottom: 210px;
	}

	.destination-card {
		height: 130px;
	}

	.bottom-stat-item {
		gap: 10px;
	}

	.bottom-stat-icon {
		width: 38px;
		height: 38px;
		min-width: 38px;
		font-size: 16px;
	}

	.bottom-stat-text h6 {
		font-size: 14px;
	}

	.bottom-stat-text p {
		font-size: 11px;
	}
}


/* =====================================================
SERVICES / ACTION SECTION STYLES
===================================================== */

.services-section {
	padding: 100px 0;
	background: #0e162c;
	position: relative;
	z-index: 5;
}

.section-subtitle {
	display: inline-block;
	color: var(--cyan);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.section-title {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 800;
	color: #fff;
	letter-spacing: -1px;
	margin-bottom: 15px;
}

.section-title span {
	color: var(--cyan);
}

.section-description {
	color: rgba(255, 255, 255, 0.75);
	font-size: 16px;
	line-height: 1.6;
}

/* Card Component */
.action-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	padding: 35px 30px;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: all 0.4s ease;
	position: relative;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.action-card:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.06);
	border-color: var(--cyan);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.card-icon {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: rgba(64, 179, 206, 0.12);
	border: 1px solid rgba(64, 179, 206, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--cyan);
	font-size: 26px;
	margin-bottom: 25px;
	transition: all 0.3s ease;
}

.action-card:hover .card-icon {
	background: var(--cyan);
	color: #fff;
	transform: scale(1.05);
	box-shadow: 0 10px 20px rgba(64, 179, 206, 0.3);
}

.action-card .card-title {
	font-size: 20px;
	font-weight: 700;
	color: #fff !important;
	margin-bottom: 12px;
}

.card-text {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 25px;
	flex-grow: 1;
}

.card-link {
	color: var(--cyan);
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: gap 0.3s ease, color 0.3s ease;
}

.card-link i {
	transition: transform 0.3s ease;
}

.action-card:hover .card-link {
	color: #fff;
}

.action-card:hover .card-link i {
	transform: translateX(5px);
}

/* Optional Highlight Card for Partner section */
.highlight-card {
	background: linear-gradient(135deg, rgba(64, 179, 206, 0.15), rgba(18, 42, 78, 0.3));
	border-color: rgba(64, 179, 206, 0.3);
}

/* Responsive Tweaks */
@media (max-width: 991px) {
	.services-section {
		padding: 70px 0;
	}

	.action-card {
		padding: 28px 22px;
	}

	.offset-lg-2 {
		margin-left: 0;
	}
}

.spacer {
	height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #40b3ce;
}

/* Base Slide Element Styling */
.slide-element {
	max-width: 600px;
	margin: 40px auto;
	padding: 30px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	opacity: 0;
	transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
	opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	will-change: transform, opacity;
}

/* Initial Off-Screen Positions */
.slide-element[data-direction="left"] {
	transform: translateX(-100px);
}

.slide-element[data-direction="right"] {
	transform: translateX(100px);
}

.slide-element[data-direction="up"] {
	transform: translateY(80px);
}

/* Visible State (Triggered on Scroll Down) */
.slide-element.is-visible {
	opacity: 1;
	transform: translate(0, 0);
}

/* =====================================================
SWIPER STRUCTURAL FIXES
===================================================== */

/* Ensure the section clips overflow properly */
.divisions-slider-section {
	padding: 100px 0;
	background: var(--navy);
	position: relative;
	width: 100%;
	overflow: hidden;
}

/* Force container layout rules for Swiper */
.divisions-swiper {
	width: 100%;
	padding: 15px 10px 60px 10px;
	overflow: hidden; /* Prevents slides from overlapping outside container */
	position: relative;
}

/* Fix wrapper layout (prevents float left stacking/overlapping) */
.divisions-swiper .swiper-wrapper {
	display: flex !important;
	flex-direction: row !important;
	float: none !important;
	box-sizing: content-box;
	transform: translate3d(0px, 0px, 0px);
}

/* Fix individual slides so Swiper can calculate width */
.divisions-swiper .swiper-slide {
	height: auto !important; /* Equal height cards */
	flex-shrink: 0 !important;
	float: none !important; /* Neutralize any legacy floats */
	box-sizing: border-box;
}

/* Card Styling */
.division-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.division-card:hover {
	transform: translateY(-8px);
	border-color: var(--cyan);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
	background: rgba(255, 255, 255, 0.06);
}

.division-img-wrapper {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.division-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.division-card:hover .division-img-wrapper img {
	transform: scale(1.08);
}

.division-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 2;
	background: rgba(18, 42, 78, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--cyan);
	font-size: 14px;
	font-weight: 800;
	padding: 6px 14px;
	border-radius: 50px;
	backdrop-filter: blur(8px);
}

.division-content {
	padding: 30px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.division-icon {
	width: 50px;
	height: 50px;
	border-radius: 14px;
	background: rgba(64, 179, 206, 0.15);
	border: 1px solid rgba(64, 179, 206, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--cyan);
	font-size: 22px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.division-card:hover .division-icon {
	background: var(--cyan);
	color: #fff;
	transform: scale(1.05);
}

.division-title {
	font-size: 22px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 12px;
}

.division-text {
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 25px;
	flex-grow: 1;
}

.division-link {
	color: var(--cyan);
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: gap 0.3s ease, color 0.3s ease;
}

.division-card:hover .division-link {
	color: #fff;
}

.division-card:hover .division-link i {
	transform: translateX(6px);
}

/* Slider Controls */
.slider-controls-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 25px;
	position: relative;
}

.swiper-button-prev.division-prev,
.swiper-button-next.division-next {
	position: relative;
	static: true;
	inset: auto;
	margin: 0;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	transition: all 0.3s ease;
}

.swiper-button-prev.division-prev::after,
.swiper-button-next.division-next::after {
	font-size: 15px;
	font-weight: bold;
}

.swiper-button-prev.division-prev:hover,
.swiper-button-next.division-next:hover {
	background: var(--cyan);
	border-color: var(--cyan);
}

.swiper-pagination.division-pagination {
	position: relative;
	bottom: 0 !important;
	width: auto !important;
}

.swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.4);
	opacity: 1;
	width: 10px;
	height: 10px;
	transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
	background: var(--cyan);
	width: 26px;
	border-radius: 10px;
}



/* Ensure the button containers are positioned properly */
.swiper-button-prev.division-prev,
.swiper-button-next.division-next {
	position: relative;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	cursor: pointer;
	transition: all 0.3s ease;
}

/* Render Bootstrap Icons inside pseudo-elements */
.swiper-button-prev.division-prev::after {
	content: "\F12C" !important; /* Bootstrap Icon: chevron-left */
	font-family: "bootstrap-icons" !important;
	font-size: 16px;
	font-weight: bold;
}

.swiper-button-next.division-next::after {
	content: "\F135" !important; /* Bootstrap Icon: chevron-right */
	font-family: "bootstrap-icons" !important;
	font-size: 16px;
	font-weight: bold;
}

/* Hover State */
.swiper-button-prev.division-prev:hover,
.swiper-button-next.division-next:hover {
	background: var(--cyan);
	border-color: var(--cyan);
	color: #ffffff;
}


/* =====================================================
WHY CHOOSE AGA SECTION STYLES (LIGHT BACKGROUND)
===================================================== */

.why-choose-section {
	padding: 100px 0;
	/* Soft light slate tint that complements --navy and --cyan */
	background: #f4f7fb;
	position: relative;
	z-index: 5;
}

.section-subtitle-light {
	display: inline-block;
	color: var(--cyan);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.section-title-light {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 800;
	color: #fff;
	letter-spacing: -1px;
	margin-bottom: 15px;
}

.section-title-light span {
	color: var(--cyan);
}

.section-description-light {
	color: #fff;
	font-size: 16px;
	line-height: 1.6;
}

/* Card Component */
.why-card {
	background: #ffffff;
	border: 1px solid rgba(18, 42, 78, 0.08);
	border-radius: 20px;
	padding: 35px 30px;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
	box-shadow: 0 10px 30px rgba(18, 42, 78, 0.03);
}

.why-card:hover {
	transform: translateY(-8px);
	border-color: var(--cyan);
	box-shadow: 0 20px 40px rgba(18, 42, 78, 0.08);
}

.why-icon {
	width: 58px;
	height: 58px;
	border-radius: 16px;
	background: rgba(64, 179, 206, 0.1);
	border: 1px solid rgba(64, 179, 206, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--cyan);
	font-size: 26px;
	margin-bottom: 22px;
	transition: all 0.3s ease;
}

.why-card:hover .why-icon {
	background: var(--navy);
	border-color: var(--navy);
	color: #ffffff;
	transform: scale(1.05);
}

.why-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 12px;
}

.why-text {
	color: #63738e;
	font-size: 14px;
	line-height: 1.65;
	margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
	.why-choose-section {
		padding: 70px 0;
	}

	.why-card {
		padding: 28px 22px;
	}
}








































/* =====================================================
BACK TO TOP BUTTON STYLES
===================================================== */

.back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--cyan);
	color: #ffffff;
	border: none;
	outline: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	z-index: 999;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Shown state when scrolling down */
.back-to-top.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Hover Effect */
.back-to-top:hover {
	background: var(--navy);
	color: var(--cyan);
	transform: translateY(-4px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

/* Responsive adjustment for mobile screens */
@media (max-width: 768px) {
	.back-to-top {
		bottom: 20px;
		right: 20px;
		width: 42px;
		height: 42px;
		font-size: 18px;
	}
}


/* =====================================================
HIGHLIGHTS SECTION STYLES (DESTINATIONS & HUB)
===================================================== */

.highlights-section {
	padding: 100px 0;
	background: var(--navy);
	position: relative;
	z-index: 5;
}

/* Row Spacing */
.highlight-row {
	margin-bottom: 80px;
}

.highlight-row:last-child {
	margin-bottom: 0;
}

/* Content Area */
.highlight-content {
	padding: 10px 0;
}

.section-subtitle {
	display: inline-block;
	color: var(--cyan);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.highlight-title {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 800;
	color: #ffffff;
	letter-spacing: -0.5px;
	margin-bottom: 18px;
}

.highlight-title span {
	color: var(--cyan);
}

.highlight-description {
	color: rgba(255, 255, 255, 0.75);
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 30px;
}

/* Button Styling */
.btn-highlight {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--cyan);
	color: #ffffff;
	padding: 14px 28px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 10px 20px rgba(64, 179, 206, 0.25);
}

.btn-highlight i {
	transition: transform 0.3s ease;
}

.btn-highlight:hover {
	background: #ffffff;
	color: var(--navy);
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.btn-highlight:hover i {
	transform: translateX(5px);
}

/* Image Container & Hover Zoom */
.highlight-img-wrapper {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	height: 380px;
}

.highlight-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.highlight-img-wrapper:hover img {
	transform: scale(1.06);
}

/* Overlay gradient on image */
.highlight-img-wrapper::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(18, 42, 78, 0.6), transparent 60%);
}

/* Badge on Image */
.highlight-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 2;
	background: rgba(18, 42, 78, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--cyan);
	font-size: 13px;
	font-weight: 700;
	padding: 8px 18px;
	border-radius: 50px;
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
	.highlights-section {
		padding: 70px 0;
	}

	.highlight-row {
		margin-bottom: 60px;
	}

	.highlight-img-wrapper {
		height: 300px;
	}
}

/* =====================================================
STUDENTS & SERVICES SECTION STYLES
===================================================== */

.students-services-section {
	padding: 100px 0;
	background: #132341;
	position: relative;
	z-index: 5;
}

/* Hero Content Area */
.hero-card-title {
	font-size: clamp(32px, 4vw, 44px);
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 20px;
}

.hero-card-text {
	color: rgba(255, 255, 255, 0.75);
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 30px;
}

/* Cyan Button */
.btn-cyan {
	display: inline-block;
	background: var(--cyan);
	color: #ffffff;
	padding: 12px 32px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(64, 179, 206, 0.25);
}

.btn-cyan:hover {
	background: #ffffff;
	color: var(--navy);
	transform: translateY(-2px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Image Container with Cyan Border Graphic */
.hero-img-container {
	position: relative;
	padding-bottom: 18px;
	padding-right: 18px;
}

.hero-img-container::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 85%;
	height: 85%;
	background: var(--cyan);
	border-radius: 24px;
	z-index: 1;
}

.hero-img-wrapper {
	position: relative;
	z-index: 2;
	border-radius: 24px;
	overflow: hidden;
	height: 380px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.hero-img-container:hover .hero-img-wrapper img {
	transform: scale(1.04);
}

/* Bottom Grid Service Cards */
.service-feature-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	padding: 35px 25px;
	height: 100%;
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-feature-card:hover {
	transform: translateY(-8px);
	border-color: var(--cyan);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.service-card-icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	background: rgba(64, 179, 206, 0.12);
	border: 1px solid rgba(64, 179, 206, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--cyan);
	font-size: 28px;
	margin-bottom: 22px;
	transition: all 0.3s ease;
}

.service-feature-card:hover .service-card-icon {
	background: var(--cyan);
	color: #ffffff;
	transform: scale(1.08);
}

.service-card-title {
	font-size: 20px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 12px;
}

.service-card-text {
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

/* Responsive Rules */
@media (max-width: 991px) {
	.students-services-section {
		padding: 70px 0;
	}

	.hero-img-wrapper {
		height: 300px;
	}

	.hero-img-container {
		padding-bottom: 12px;
		padding-right: 12px;
	}
}
 
/* Navigation Links */
.navbar-nav .nav-link { 
	text-transform: uppercase !important;
}

/* Navigation Links */
.main-navbar .nav-link {
	color: rgba(255, 255, 255, 0.85);
	font-size: 15px;
	font-weight: 600;
	padding: 8px 16px !important;
	transition: all 0.3s ease;
	position: relative;
	text-transform: uppercase !important;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
	color: var(--cyan);
}

/* Dropdown Menu Styling */
.main-navbar .dropdown-menu {
	background: var(--navy);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	padding: 10px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
	margin-top: 15px;
	backdrop-filter: blur(10px);
}

.main-navbar .dropdown-item {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	font-weight: 600;
	padding: 10px 16px;
	border-radius: 10px;
	transition: all 0.25s ease;
}

.main-navbar .dropdown-item:hover {
	background: rgba(64, 179, 206, 0.12);
	color: var(--cyan);
}

/* Call To Action Button */
.btn-header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--cyan);
	color: #ffffff;
	padding: 10px 22px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 6px 16px rgba(64, 179, 206, 0.25);
}

.btn-header-cta:hover {
	background: #ffffff;
	color: var(--navy);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile Toggle Icon */
.navbar-toggler {
	border: none;
	color: #ffffff;
	font-size: 28px;
	padding: 0;
}

.navbar-toggler:focus {
	box-shadow: none;
}

/* Mobile Offcanvas Drawer */
.mobile-offcanvas {
	background: var(--navy);
	color: #ffffff;
	width: 300px;
}

.mobile-offcanvas .nav-link {
	color: rgba(255, 255, 255, 0.85);
	font-size: 16px;
	font-weight: 600;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-offcanvas .nav-link.active,
.mobile-offcanvas .nav-link:hover {
	color: var(--cyan);
}


/* =====================================================
CONTACT PAGE SECTION STYLES
===================================================== */

.contact-section {
	padding: 100px 0;
	background: var(--navy);
	position: relative;
	z-index: 5;
}

.section-subtitle {
	display: inline-block;
	color: var(--cyan);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.section-title {
	font-size: clamp(32px, 4vw, 44px);
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 15px;
}

.section-title span {
	color: var(--cyan);
}

.section-description {
	color: rgba(255, 255, 255, 0.75);
	font-size: 16px;
	line-height: 1.6;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	padding: 40px 30px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.form-title {
	font-size: 24px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 8px;
}

.form-subtitle {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	margin-bottom: 25px;
}

.form-label {
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
}

.contact-form .form-control {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	color: #ffffff;
	padding: 12px 16px;
	font-size: 14px;
	transition: all 0.3s ease;
}

.contact-form .form-control:focus {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--cyan);
	box-shadow: 0 0 0 4px rgba(64, 179, 206, 0.2);
	outline: none;
	color: #ffffff;
}

.contact-form .form-control::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.btn-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--cyan);
	color: #ffffff;
	padding: 14px 28px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(64, 179, 206, 0.25);
}

.btn-submit:hover {
	background: #ffffff;
	color: var(--navy);
	transform: translateY(-2px);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Direct Contact Info */
.direct-contact-info .contact-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
}

.direct-contact-info i {
	font-size: 20px;
	color: var(--cyan);
	margin-top: 2px;
}

.direct-contact-info a {
	color: var(--cyan);
	text-decoration: none;
	transition: color 0.3s ease;
}

.direct-contact-info a:hover {
	color: #ffffff;
}

/* Office Cards */
.office-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	padding: 25px 20px;
	height: 100%;
	transition: all 0.35s ease;
	backdrop-filter: blur(10px);
}

.office-card:hover {
	transform: translateY(-5px);
	border-color: var(--cyan);
	background: rgba(255, 255, 255, 0.06);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.office-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
}

.office-header i {
	color: var(--cyan);
	font-size: 20px;
}

.office-header h4 {
	font-size: 18px;
	font-weight: 800;
	color: #ffffff;
	margin: 0;
}

.office-label {
	display: block;
	color: var(--cyan);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1px;
	margin-bottom: 12px;
	opacity: 0.85;
}

.office-address {
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
}

/* Responsive Rules */
@media (max-width: 991px) {
	.contact-section {
		padding: 70px 0;
	}

	.contact-form-wrapper {
		padding: 30px 20px;
	}
}

/* =====================================================
REUSABLE SECTION HEADER STYLES
===================================================== */

.section-header-wrapper {
	position: relative;
	z-index: 2;
	background: #000 url('../img/beautiful-girl-standing.jpg') no-repeat center 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
	padding: 20px;
	padding-top: 170px;
	width: 100%;
	min-height: 360px;
}

/* Container Menu Styling */
.header_pg_menu {
	display: flex;
	justify-content: center; /* Centers the li elements horizontally */
	align-items: center;     /* Centers items vertically */
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 20px;     
	margin-top:40px;          /* Space between menu items */
}

/* List Item Styling */
.header_pg_menu li {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Link Styling */
.header_pg_menu li a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	padding: 8px 20px;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.header_pg_menu li span {
	display: block;
	width: 4px;
	height: 40px;
	background: #40B3CE;
}

/* Hover & Active States */
.header_pg_menu li a:hover,
.header_pg_menu li a.active {
	color: var(--cyan);
	background: rgba(64, 179, 206, 0.1);
}
.overlay-shadow{
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	z-index: -1;
	position: absolute;
	background: rgba(0,0,0,0.6);
}
/* Subtitle / Eyebrow Text */
.section-header-wrapper .section-subtitle {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	z-index: 3;
	color: var(--cyan);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 12px;
	background: rgba(64, 179, 206, 0.1);
	border: 1px solid rgba(64, 179, 206, 0.25);
	padding: 6px 16px;
	border-radius: 50px;
}

/* Main Heading (Dark Theme / Default) */
.section-header-wrapper .section-title {
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.2;
	letter-spacing: -0.5px;
	margin-bottom: 16px;
}

.section-header-wrapper .section-title span {
	color: var(--cyan);
}

/* Description Text (Dark Theme / Default) */
.section-header-wrapper .section-description {
	color: rgba(255, 255, 255, 0.75);
	font-size: 16px;
	line-height: 1.7;
	margin: 0 auto;
	max-width: 680px;
}

/* =====================================================
LIGHT THEME VARIANT (For Light Background Sections)
===================================================== */

.section-header-wrapper.light-theme .section-title {
	color: var(--navy);
}

.section-header-wrapper.light-theme .section-description {
	color: #5a6a85;
}

.section-header-wrapper.light-theme .section-subtitle {
	background: rgba(18, 42, 78, 0.06);
	border-color: rgba(18, 42, 78, 0.12);
}

/* Responsive Scaling */
@media (max-width: 768px) {
	.section-header-wrapper .section-subtitle {
		font-size: 12px;
		padding: 5px 12px;
	}

	.section-header-wrapper .section-description {
		font-size: 15px;
	}
}


/* =====================================================
ABOUT US PAGE STYLES
===================================================== */
 
/* Page Header */
.page-header-section {
	padding: 140px 0 80px 0;
	background: var(--navy);
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-subtitle {
	display: inline-flex;
	align-items: center;
	color: var(--cyan);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 14px;
	background: rgba(64, 179, 206, 0.1);
	border: 1px solid rgba(64, 179, 206, 0.25);
	padding: 6px 18px;
	border-radius: 50px;
}

.section-title {
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.25;
	margin-bottom: 16px;
}

.section-title span {
	color: var(--cyan);
}

.section-description {
	color: rgba(255, 255, 255, 0.75);
	font-size: 16px;
	line-height: 1.7;
	margin: 0 auto;
	max-width: 720px;
}

/* Header Menu / Breadcrumb */
.header_pg_menu {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 15px;
}

.header_pg_menu li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: color 0.3s ease;
}

.header_pg_menu li a:hover,
.header_pg_menu li a.active {
	color: var(--cyan);
}

.menu-divider {
	color: rgba(255, 255, 255, 0.3);
	font-size: 14px;
}

/* Our Story Section */
.about-story-section {
	padding: 100px 0;
	background: var(--navy);
}

.story-title {
	font-size: clamp(28px, 3.5vw, 40px);
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 20px;
}

.story-title span {
	color: var(--cyan);
}

.story-text {
	color: rgba(255, 255, 255, 0.75);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 16px;
}

.story-img-wrapper {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.story-img-wrapper img {
	width: 100%;
	height: 420px;
	object-fit: cover;
}

.story-badge {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: rgba(18, 42, 78, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--cyan);
	padding: 8px 20px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 700;
	backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Ecosystem Section */
.about-ecosystem-section {
	padding: 100px 0;
	background: rgba(0, 0, 0, 0.15);
}

.ecosystem-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	padding: 40px 30px;
	height: 100%;
	transition: all 0.3s ease;
}

.ecosystem-card:hover {
	border-color: var(--cyan);
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.05);
}

.ecosystem-icon {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: rgba(64, 179, 206, 0.12);
	border: 1px solid rgba(64, 179, 206, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--cyan);
	font-size: 28px;
	margin-bottom: 20px;
}

.ecosystem-card-title {
	font-size: 22px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 14px;
}

.ecosystem-card-text {
	color: rgba(255, 255, 255, 0.72);
	font-size: 15px;
	line-height: 1.65;
	margin: 0;
}

/* Mission, Vision & Values */
.mvv-section {
	padding: 100px 0;
	background: var(--navy);
}

.mvv-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	padding: 35px 25px;
	height: 100%;
	transition: all 0.3s ease;
}

.mvv-card:hover {
	border-color: var(--cyan);
	transform: translateY(-5px);
}

.mvv-icon {
	font-size: 32px;
	color: var(--cyan);
	margin-bottom: 16px;
}

.mvv-title {
	font-size: 20px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 12px;
}

.mvv-text {
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 1.65;
	margin: 0;
}

.mvv-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mvv-list li {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	margin-bottom: 12px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.mvv-list i {
	color: var(--cyan);
	margin-top: 3px;
}

/* Our Commitment */
.about-commitment-section {
	padding: 60px 0 100px 0;
	background: var(--navy);
}

.commitment-wrapper {
	background: #f4f7fb;
	border-radius: 24px;
	padding: 50px 40px;
}

.section-subtitle-light {
	color: var(--cyan);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	display: block;
	margin-bottom: 8px;
}

.commitment-title {
	font-size: 28px;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 12px;
}

.commitment-text {
	color: #5a6a85;
	font-size: 15px;
	line-height: 1.65;
	margin: 0;
}

.btn-cyan {
	display: inline-block;
	background: var(--cyan);
	color: #ffffff;
	padding: 14px 32px;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-cyan:hover {
	background: var(--navy);
	color: #ffffff;
}

/* Explore Services CTA */
.services-cta-section {
	padding: 80px 0;
	background: rgba(0, 0, 0, 0.2);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-title {
	font-size: 28px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 10px;
}

.cta-text {
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
	margin-bottom: 25px;
}

.btn-cta-outline {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: 2px solid var(--cyan);
	color: var(--cyan);
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-cta-outline:hover {
	background: var(--cyan);
	color: #ffffff;
}

@media (max-width: 991px) {
	.page-header-section {
		padding: 100px 0 60px 0;
	}

	.story-img-wrapper img {
		height: 300px;
	}

	.commitment-wrapper {
		padding: 35px 25px;
	}
}

/* =====================================================
CITIZENSHIP & RESIDENCY PATHWAYS STYLES
===================================================== */

:root {
	--navy2: #122a4e;
	--cyan2: #40b3ce;
	--bg-light-table: #f4f7fb;
}

/* Header Section */
.page-header-section {
	padding: 140px 0 60px 0;
	background: var(--navy);
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-subtitle {
	display: inline-flex;
	align-items: center;
	color: var(--cyan2);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 14px;
	background: rgba(64, 179, 206, 0.1);
	border: 1px solid rgba(64, 179, 206, 0.25);
	padding: 6px 18px;
	border-radius: 50px;
}

.section-title {
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.25;
	margin-bottom: 16px;
}

.section-title span {
	color: var(--cyan2);
}

.section-description {
	color: rgba(255, 255, 255, 0.75);
	font-size: 16px;
	line-height: 1.7;
	margin: 0 auto;
	max-width: 720px;
}

/* Header Menu / Breadcrumb */
.header_pg_menu {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 12px;
	margin-top: 40px;
}

.header_pg_menu li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: color 0.3s ease;
}

.header_pg_menu li a:hover,
.header_pg_menu li a.active {
	color: var(--cyan2);
}

.menu-divider {
	color: rgba(255, 255, 255, 0.3);
	font-size: 14px;
}

/* Program Tabs */
.program-tabs-section {
	padding: 40px 0 20px 0;
	background: var(--navy2);
}

.custom-pills {
	background: rgba(255, 255, 255, 0.05);
	padding: 8px;
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	gap: 10px;
}

.custom-pills .nav-link {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 700;
	font-size: 15px;
	padding: 12px 28px;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.custom-pills .nav-link.active,
.custom-pills .nav-link:hover {
	background: var(--cyan2);
	color: #ffffff;
	box-shadow: 0 6px 20px rgba(64, 179, 206, 0.3);
}

/* Tables Section */
.program-tables-section {
	padding: 30px 0 80px 0;
	background: var(--navy2);
}

.table-card-wrapper {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	padding: 35px 30px;
	backdrop-filter: blur(10px);
}

.table-header-info {
	margin-bottom: 25px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 18px;
}

.table-header-info h3 {
	font-size: 22px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 8px;
}

.table-header-info p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	margin: 0;
}

.text-cyan {
	color: var(--cyan2);
}

/* Custom Table Styling */
.custom-pathway-table {
	width: 100%;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	vertical-align: middle;
}

.custom-pathway-table thead th {
	background: rgba(64, 179, 206, 0.12);
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 16px 20px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.12);
}

.custom-pathway-table tbody td {
	padding: 18px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 14px;
	line-height: 1.6;
	background: transparent;
	color: rgba(255, 255, 255, 0.85);
}

.custom-pathway-table tbody tr:last-child td {
	border-bottom: none;
}

.custom-pathway-table tbody tr:hover td {
	background: rgba(255, 255, 255, 0.04);
}

.country-cell {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 180px;
}

.country-flag {
	font-size: 22px;
}

/* Badges */
.badge-cbi {
	background: rgba(64, 179, 206, 0.15);
	border: 1px solid rgba(64, 179, 206, 0.3);
	color: var(--cyan2);
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 6px;
	font-weight: 700;
}

.badge-rbi {
	background: rgba(255, 193, 7, 0.15);
	border: 1px solid rgba(255, 193, 7, 0.3);
	color: #ffc107;
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 6px;
	font-weight: 700;
}

.text-highlight-green {
	color: #4cd964;
	font-weight: 600;
}

/* CTA Section */
.advisory-cta-section {
	padding: 60px 0 100px 0;
	background: var(--navy2);
}

.cta-inner-card {
	background: #f4f7fb;
	border-radius: 24px;
	padding: 60px 40px;
	max-width: 920px;
	margin: 0 auto;
}

.section-subtitle-light {
	color: var(--cyan);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	display: block;
	margin-bottom: 8px;
}

.cta-title {
	font-size: clamp(26px, 3.5vw, 36px);
	font-weight: 800;
	color:  #40B3CE;
	margin-bottom: 14px;
}

.cta-text {
	color: #fff;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 28px;
}

.btn-cyan-lg {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--cyan);
	color: #ffffff;
	padding: 14px 36px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 10px 20px rgba(64, 179, 206, 0.25);
}

.btn-cyan-lg:hover {
	background: var(--navy);
	color: #ffffff;
	transform: translateY(-2px);
}

/* Responsive Rules */
@media (max-width: 991px) {
	.table-card-wrapper {
		padding: 25px 18px;
	}

	.custom-pills {
		flex-direction: column;
		border-radius: 16px;
		width: 100%;
	}

	.custom-pills .nav-link {
		text-align: center;
		width: 100%;
	}

	.cta-inner-card {
		padding: 40px 20px;
	}
}

/* Page Header & Hero */
.page-header-section {
	padding: 120px 0 60px 0;
	background: var(--navy);
	position: relative;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-subtitle {
	display: inline-flex;
	align-items: center;
	color: var(--cyan);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 14px;
	background: rgba(64, 179, 206, 0.1);
	border: 1px solid rgba(64, 179, 206, 0.25);
	padding: 6px 18px;
	border-radius: 50px;
}

.section-title {
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.25;
	margin-bottom: 16px;
}

.section-title span {
	color: var(--cyan);
}

.section-description {
	color: rgba(255, 255, 255, 0.75);
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 0;
}

/* Buttons */
.btn-cyan {
	display: inline-block;
	background: var(--cyan);
	color: #ffffff;
	padding: 14px 32px;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(64, 179, 206, 0.25);
}

.btn-cyan:hover {
	background: #ffffff;
	color: var(--navy);
}

.btn-outline-light-custom {
	display: inline-block;
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-outline-light-custom:hover {
	border-color: var(--cyan);
	color: var(--cyan);
}

/* Hero Stats Card */
.hero-stats-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	backdrop-filter: blur(10px);
}

.stat-item h3 {
	font-size: 38px;
	font-weight: 800;
	color: var(--cyan);
	margin: 0;
}

.stat-item p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	margin: 0;
}

.stat-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.1);
}

/* Breadcrumb Menu */
.header_pg_menu {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 12px;
}

.header_pg_menu li a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
}

.header_pg_menu li a.active {
	color: var(--cyan);
}

.menu-divider {
	color: rgba(255, 255, 255, 0.3);
}

/* Why Choose AGA */
.why-choose-section {
	padding: 90px 0;
	background: var(--navy);
}

.feature-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 35px 25px;
	height: 100%;
	transition: all 0.3s ease;
}

.feature-card:hover {
	border-color: var(--cyan);
	transform: translateY(-5px);
}

.feature-icon {
	font-size: 32px;
	color: var(--cyan);
	margin-bottom: 15px;
}

.feature-card h3 {
	font-size: 20px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 12px;
}

.feature-card p {
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

/* Destinations Section */
.destinations-section {
	padding: 90px 0;
	background: rgba(0, 0, 0, 0.15);
}

.destination-card2 {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	padding: 30px 22px;
	height: 100%;
	position: relative;
	transition: all 0.3s ease;
}

.destination-card2:hover {
	border-color: var(--cyan);
	transform: translateY(-5px);
}

.dest-badge {
	display: inline-block;
	background: rgba(64, 179, 206, 0.15);
	color: var(--cyan);
	font-size: 11px;
	font-weight: 800;
	padding: 4px 12px;
	border-radius: 50px;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.destination-card2 h4 {
	font-size: 22px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 12px;
}

.destination-card2 p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.dest-link {
	color: var(--cyan);
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	transition: color 0.3s ease;
}

.dest-link:hover {
	color: #ffffff;
}

/* Workflow Section */
.workflow-section {
	padding: 90px 0;
	background: var(--navy);
}

.step-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 25px 15px;
	text-align: center;
	height: 100%;
}

.step-num {
	font-size: 24px;
	font-weight: 800;
	color: var(--cyan);
	margin-bottom: 10px;
}

.step-card h5 {
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 8px;
}

.step-card p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 12px;
	margin: 0;
	line-height: 1.5;
}

/* Student Services Section */
.student-services-section {
	padding: 90px 0;
	background: rgba(0, 0, 0, 0.15);
}

.service-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 30px 20px;
	height: 100%;
	transition: all 0.3s ease;
}

.service-card:hover {
	border-color: var(--cyan);
	transform: translateY(-5px);
}

.service-card i {
	font-size: 30px;
	color: var(--cyan);
	margin-bottom: 15px;
	display: inline-block;
}

.service-card h4 {
	font-size: 18px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 10px;
}

.service-card p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
}

/* Call to Action */
.students-cta-section {
	padding: 60px 0 100px 0;
	background: var(--navy);
}

.cta-box {
	background: #f4f7fb;
	border-radius: 24px;
	padding: 50px 30px;
	max-width: 850px;
	margin: 0 auto;
}

.cta-title {
	font-size: 28px;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 10px;
}

.cta-text {
	color: #5a6a85;
	font-size: 16px;
	margin-bottom: 25px;
}

/* Responsive Rules */
@media (max-width: 991px) {
	.page-header-section {
		padding: 90px 0 50px 0;
	}

	.hero-stats-card {
		flex-direction: row;
		justify-content: space-around;
		margin-top: 30px;
	}

	.stat-divider {
		width: 1px;
		height: auto;
	}
}


.study-benefits-section {
	padding: 100px 0;
	background: var(--navy);
	position: relative;
}

.section-subtitle {
	display: inline-block;
	color: var(--cyan);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 12px;
	background: rgba(64, 179, 206, 0.1);
	border: 1px solid rgba(64, 179, 206, 0.25);
	padding: 6px 16px;
	border-radius: 50px;
}

.section-title {
	font-size: clamp(28px, 3.5vw, 38px);
	font-weight: 800;
	color: #ffffff;
	line-height: 1.25;
	margin-bottom: 16px;
}

.section-title span {
	color: var(--cyan);
}

.section-description {
	color: rgba(255, 255, 255, 0.75);
	font-size: 15px;
	line-height: 1.65;
}

/* Accordion Customization */
.custom-accordion .accordion-item {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px !important;
	margin-bottom: 14px;
	overflow: hidden;
}

.custom-accordion .accordion-button {
	background: transparent;
	color: #ffffff;
	font-weight: 700;
	font-size: 15px;
	padding: 18px 20px;
	box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
	color: var(--cyan);
	background: rgba(64, 179, 206, 0.08);
}

.custom-accordion .accordion-button::after {
	filter: invert(1);
}

.custom-accordion .accordion-body {
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	line-height: 1.65;
	padding: 15px 20px 20px 20px;
}

/* Inquiry Form Card */
.inquiry-card-wrapper {
	background: #ffffff;
	border-radius: 24px;
	padding: 40px 32px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.form-title {
	font-size: 24px;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 6px;
}

.form-subtitle {
	color: #6a7c95;
	font-size: 14px;
	margin: 0;
}

.aga-inquiry-form .form-label {
	color: var(--navy);
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 6px;
}

.aga-inquiry-form .form-control,
.aga-inquiry-form .form-select {
	border: 1px solid #dce3ed;
	border-radius: 10px;
	padding: 10px 14px;
	font-size: 14px;
	color: var(--navy);
	background-color: #f8fafc;
	transition: all 0.25s ease;
}

.aga-inquiry-form .form-control:focus,
.aga-inquiry-form .form-select:focus {
	border-color: var(--cyan);
	background-color: #ffffff;
	box-shadow: 0 0 0 3px rgba(64, 179, 206, 0.18);
	outline: none;
}

.custom-checkbox-group .form-check-label {
	color: #4a5a70;
	font-size: 13px;
	font-weight: 600;
}

.text-light-muted {
	color: #8a9bb0;
	font-size: 11px;
	margin-top: 4px;
}

.custom-consent .form-check-label {
	font-size: 12px;
	color: #6a7c95;
	line-height: 1.5;
}

/* Submit Button */
.btn-submit-cyan {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--cyan);
	color: #ffffff;
	padding: 14px 28px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(64, 179, 206, 0.3);
}

.btn-submit-cyan:hover {
	background: var(--navy);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 12px 25px rgba(18, 42, 78, 0.35);
}

@media (max-width: 991px) {
	.inquiry-card-wrapper {
		padding: 30px 20px;
	}
}

 

/* =====================================================
FEATURED STUDY DESTINATIONS STYLES (AGA)
===================================================== */

:root {
	--navy: #122a4e;
	--cyan: #40b3ce;
	--light-bg: #f8fafc;
}

.featured-destinations-section {
	padding: 90px 0;
	background-color: #ffffff;
}

.destination-row {
	margin-bottom: 90px;
}

.destination-row:last-child {
	margin-bottom: 0;
}

/* Image Collage Grid */
.dest-gallery-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: repeat(12, 1fr);
	height: 420px;
	position: relative;
}

.dest-gallery-grid .grid-item {
	position: relative;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(18, 42, 78, 0.1);
	border-radius: 16px;
}

.dest-gallery-grid img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.dest-gallery-grid .grid-item:hover img {
	transform: scale(1.06);
}

.item-main {
	grid-column: 1 / span 8;
	grid-row: 1 / span 12;
	z-index: 1;
}

.item-sub-1 {
	grid-column: 8 / span 5;
	grid-row: 1 / span 6;
	z-index: 2;
	margin-left: -15px;
	margin-bottom: -15px;
}

.item-sub-2 {
	grid-column: 8 / span 5;
	grid-row: 7 / span 6;
	z-index: 2;
	margin-left: -15px;
	margin-top: 15px;
}

/* Content Styling */
.dest-content-card {
	padding: 10px 0;
}

.dest-tag {
	display: inline-block;
	color: var(--cyan);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	background: rgba(64, 179, 206, 0.1);
	padding: 6px 14px;
	border-radius: 50px;
	margin-bottom: 14px;
}

.dest-title {
	font-size: clamp(28px, 3.5vw, 38px);
	font-weight: 800;
	color: var(--navy);
	line-height: 1.25;
	margin-bottom: 18px;
}

.dest-title span {
	color: var(--cyan);
}

.dest-description {
	color: #5a6a85;
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 24px;
}

/* Key Highlights Cards */
.dest-highlights-grid {
	display: flex;
	gap: 20px;
	margin-bottom: 28px;
}

.highlight-item {
	background: var(--light-bg);
	border: 1px solid #e2e8f0;
	padding: 14px 20px;
	border-radius: 12px;
	flex: 1;
}

.highlight-number {
	display: block;
	font-size: 22px;
	font-weight: 800;
	color: var(--navy);
	line-height: 1.2;
}

.highlight-label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #64748b;
	margin-top: 2px;
}

/* Action Button */
.btn-cyan-outline {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border: 2px solid var(--cyan);
	color: var(--cyan);
	background: transparent;
	padding: 12px 28px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-cyan-outline:hover {
	background: var(--cyan);
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(64, 179, 206, 0.3);
	transform: translateY(-2px);
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 991px) {
	.dest-gallery-grid {
		height: 320px;
	}

	.destination-row {
		margin-bottom: 60px;
	}
}

@media (max-width: 576px) {
	.dest-highlights-grid {
		flex-direction: column;
		gap: 10px;
	}

	.dest-gallery-grid {
		height: 260px;
	}
}

/* =====================================================
ADULLAM GLOBAL ACCESS - LOGIN PAGE STYLES
===================================================== */

:root {
	--navy: #122a4e;
	--cyan: #40b3ce;
	--light-bg: #f8fafc;
	--border-color: #e2e8f0;
}

.aga-login-wrapper {
	background-color: #ffffff;
}

/* --- Left Brand Showcase --- */
.login-brand-side {
	background: linear-gradient(135deg, var(--navy) 0%, #0a1931 100%);
	padding: 60px;
	position: relative;
	align-items: center;
	justify-content: center;
}

.brand-content-box {
	max-width: 520px;
}

.logo-text {
	font-size: 26px;
	font-weight: 800;
	color: #ffffff;
	text-decoration: none;
	letter-spacing: -0.5px;
}

.logo-text span {
	color: var(--cyan);
}

.login-brand-side .section-subtitle {
	display: inline-block;
	color: var(--cyan);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	background: rgba(64, 179, 206, 0.1);
	border: 1px solid rgba(64, 179, 206, 0.2);
	padding: 6px 14px;
	border-radius: 50px;
	margin-bottom: 16px;
}

.brand-title {
	font-size: 38px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.2;
	margin-bottom: 16px;
}

.brand-title span {
	color: var(--cyan);
}

.brand-description {
	color: rgba(255, 255, 255, 0.72);
	font-size: 15px;
	line-height: 1.65;
	margin-bottom: 35px;
}

.brand-stats-grid {
	display: flex;
	gap: 15px;
}

.stat-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	padding: 16px;
	flex: 1;
	backdrop-filter: blur(8px);
}

.stat-card h3 {
	color: var(--cyan);
	font-size: 22px;
	font-weight: 800;
	margin: 0;
}

.stat-card p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	margin: 4px 0 0 0;
}

/* --- Right Form Showcase --- */
.login-form-side {
	padding: 40px 20px;
}

.login-card {
	width: 100%;
	max-width: 440px;
}

.auth-title {
	font-size: 28px;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 6px;
}

.auth-subtitle {
	color: #64748b;
	font-size: 14px;
	margin: 0;
}

/* Social Buttons */
.social-login-grid {
	display: flex;
	gap: 12px;
}

.btn-social {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #ffffff;
	border: 1px solid var(--border-color);
	padding: 10px 16px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--navy);
	cursor: pointer;
	transition: all 0.25s ease;
}

.btn-social:hover {
	background: var(--light-bg);
	border-color: #cbd5e1;
}

/* Divider */
.divider-line {
	position: relative;
}

.divider-line::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--border-color);
}

.divider-line span {
	position: relative;
	background: #ffffff;
	padding: 0 12px;
	color: #94a3b8;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}

/* Inputs & Icons */
.aga-auth-form .form-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--navy);
}

.input-icon-wrapper {
	position: relative;
	display: flex;
	align-items: center;
}

.input-icon-wrapper .icon-left {
	position: absolute;
	left: 14px;
	color: #94a3b8;
	font-size: 16px;
}

.input-icon-wrapper .form-control {
	padding-left: 42px;
	padding-right: 42px;
	height: 48px;
	border: 1px solid var(--border-color);
	border-radius: 10px;
	font-size: 14px;
	background-color: var(--light-bg);
	transition: all 0.25s ease;
}

.input-icon-wrapper .form-control:focus {
	background-color: #ffffff;
	border-color: var(--cyan);
	box-shadow: 0 0 0 3px rgba(64, 179, 206, 0.15);
}

.btn-toggle-password {
	position: absolute;
	right: 12px;
	background: none;
	border: none;
	color: #94a3b8;
	cursor: pointer;
	font-size: 16px;
}

.forgot-link {
	color: var(--cyan);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}

.forgot-link:hover {
	text-decoration: underline;
}

.custom-check .form-check-label {
	font-size: 13px;
	color: #64748b;
}

/* Submit Button */
.btn-submit-cyan {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--cyan);
	color: #ffffff;
	height: 48px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(64, 179, 206, 0.25);
}

.btn-submit-cyan:hover {
	background: var(--navy);
	box-shadow: 0 10px 25px rgba(18, 42, 78, 0.3);
}

.auth-footer p {
	font-size: 14px;
	color: #64748b;
}

.register-link {
	color: var(--cyan);
	font-weight: 700;
	text-decoration: none;
}

.register-link:hover {
	text-decoration: underline;
}


/* Modal Styling & Animations */
#applicationSuccessModal .modal-content {
	border-radius: 16px;
	background: #ffffff;
}

.success-icon-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.success-icon-bg {
	width: 80px;
	height: 80px;
	background-color: #e8f5e9;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: pulseCheck 1.2s infinite ease-in-out;
}

@keyframes pulseCheck {
	0% {
		box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
	}
	70% {
		box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
	}
}

/* Color Palette Variables */
:root {
	--navy-blue: #0b2545;
	--accent-blue: #134074;
	--soft-bg: #f8f9fa;
}

.text-navy {
	color: var(--navy-blue);
}

.service-list li {
	margin-bottom: 0.75rem;
	color: #4a5568;
	font-size: 0.95rem;
}

/* Study Journey Step Cards */
.journey-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 1rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--navy-blue);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
	height: 100%;
}

.journey-card span {
	background-color: var(--navy-blue);
	color: #ffffff;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: 700;
	flex-shrink: 0;
}


/* Floating WhatsApp Button */
.whatsapp-float {
	position: fixed;
	bottom: 25px;
	right: 25px;
	width: 56px;
	height: 56px;
	background-color: #25d366; /* WhatsApp Green */
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	z-index: 1000;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
	background-color: #20ba5a;
	color: #ffffff;
	transform: scale(1.1);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* Tooltip Badge on Hover */
.whatsapp-tooltip {
	position: absolute;
	right: 68px;
	background-color: #121820;
	color: #ffffff;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, transform 0.3s ease;
	transform: translateX(10px);
	pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/* Subtle Pulse Ring */
.whatsapp-float::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 2px solid #25d366;
	animation: whatsapp-ping 1.8s infinite ease-in-out;
	z-index: -1;
}

@keyframes whatsapp-ping {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}












































































/* =====================================================
FOOTER STYLES
===================================================== */

.site-footer {
	background: var(--navy);
	color: #fff;
	position: relative;
	z-index: 10;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
	padding: 80px 0 50px;
}

.footer-description {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	line-height: 1.7;
	margin-top: 15px;
	margin-bottom: 20px;
}

.footer-heading {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}

.footer-heading::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30px;
	height: 2px;
	background: var(--cyan);
	border-radius: 2px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-size: 14px;
	transition: all 0.3s ease;
	display: inline-block;
}

.footer-links a:hover {
	color: var(--cyan);
	transform: translateX(4px);
}

.footer-socials {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-socials a {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-socials a:hover {
	background: var(--cyan);
	border-color: var(--cyan);
	color: #fff;
	transform: translateY(-3px);
}

/* Newsletter Input */
.newsletter-input-group {
	position: relative;
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	padding: 5px 5px 5px 18px;
	transition: border-color 0.3s ease;
}

.newsletter-input-group:focus-within {
	border-color: var(--cyan);
}

.newsletter-input-group input {
	background: transparent;
	border: none;
	outline: none;
	color: #fff;
	font-size: 14px;
	width: 100%;
}

.newsletter-input-group input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.btn-newsletter {
	background: var(--cyan);
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	transition: background 0.3s ease;
	white-space: nowrap;
}

.btn-newsletter:hover {
	background: #319eb8;
}

/* Footer Bottom Bar */
.footer-bottom {
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 0, 0, 0.15);
}

.copyright-text {
	margin: 0;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
}

.copyright-text span {
	color: var(--cyan);
}

.bottom-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	gap: 20px;
}

@media (min-width: 768px) {
	.bottom-links {
		justify-content: flex-end;
	}
}

.bottom-links a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 13px;
	transition: color 0.3s ease;
}

.bottom-links a:hover {
	color: var(--cyan);
}