@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
	--eu-dark:        #0f1623;
	--eu-dark-2:      #1a2540;
	--eu-dark-3:      #243356;
	--eu-gold:        #dfbc56;
	--eu-gold-lt:     #e0be6a;
	--eu-white:       #ffffff;
	--eu-light:       #f4f6fb;
	--eu-muted:       #f0f3f9;
	--eu-text:        #2d3748;
	--eu-text-sm:     #64748b;
	--eu-border:      #e2e8f0;
	--eu-radius:      12px;
	--eu-radius-lg:   20px;
	--eu-transition:  all 0.28s ease;
	--eu-shadow:      0 4px 24px rgba(15, 22, 35, 0.09);
	--eu-shadow-lg:   0 12px 48px rgba(15, 22, 35, 0.14);
}

*, *::before, *::after { box-sizing: border-box }
html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
	font-size: 0.9rem;
	color: var(--eu-text);
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
	background: var(--eu-white);
}
h1, .h1 {
	font-size: 1.9rem;
}
h2, .h2 {
	font-size: 1.7rem;
}
h3, .h3 {
	font-size: 1.5rem;
}
h4, .h4 {
	font-size: 1.35rem;
}
h5, .h5 {
	font-size: 1.1rem;
}
.article-header {
	margin-top: 4.2rem;
}
p {
	line-height: 1.5rem;
}
a {
	color:#1b4aa0
}
label {
  margin-bottom: 0.1rem;
}
.article-content ol {
	padding-left: 1rem !important;
}
span.text-danger {
	font-size: 1.1rem;
}
select, option, select option {
	font-size: 0.9rem !important;
}
.form-check-input {
  margin-top: .55rem;
}
.alert-warning {
  color: #644d07;
  background-color: #fff9e7;
  border-color: #ffeeba;
}
/* =============== NAVBAR ================ */
.eu-navbar {
	background: var(--eu-dark);
	padding: 1.0rem 0;
	transition: var(--eu-transition);
	z-index: 1050;
}

.eu-navbar.eu-navbar--scrolled,
.eu-navbar.is-sticky {
	background: rgba(10, 14, 25, 0.96);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	padding: 0.65rem 0;
	box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}

.eu-brand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
}
.eu-brand-logo {
	height: 50px;
	width: auto;
}
.eu-brand-text {
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: 3px;
	color: var(--eu-gold);
	line-height: 1;
}

/* Nav links */
.eu-navbar .nav-link {
	color: rgba(255, 255, 255, 0.95) !important;
	font-size: 0.875rem;
	font-weight: 500;
	padding: 0.45rem 0.85rem !important;
	letter-spacing: 0.2px;
	position: relative;
	transition: color 0.22s;
}

.eu-navbar .nav-link::after {
	content: '';
	position: absolute;
	inset: auto 0.85rem 0;
	height: 2px;
	background: var(--eu-gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.22s ease;
}

.eu-navbar .nav-link:hover {
	color: var(--eu-gold) !important;
}

.eu-navbar .nav-link:hover::after,
.eu-navbar .nav-link.active::after {
	transform: scaleX(1);
}

/* Contact button */
.eu-nav-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-left: 0.5rem;
}

/* Language switcher */
.eu-lang-switcher {
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.eu-lang-flag {
	width: 26px;
	height: auto;
	border-radius: 3px;
	cursor: pointer;
	opacity: 0.7;
	transition: opacity 0.2s, transform 0.2s;
	border: 1px solid rgba(255, 255, 255, 0.15);
}
.eu-lang-flag-active {
	opacity: 0.95;
}

.eu-lang-flag:hover {
	opacity: 1;
	transform: scale(1.1);
}

/* Hamburger toggler */
.eu-toggler {
	border: none;
	background: transparent;
	padding: 10px 15px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.eu-toggler span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--eu-white);
	border-radius: 2px;
	transition: var(--eu-transition);
	position: relative;
	top: -2px;
	left: -12px
}

/* ============================================================
   DROPDOWN MENU (level 2)
   ============================================================ */
.eu-dropdown {
	position: relative;
}

.eu-dropdown-toggle {
	display: flex !important;
	align-items: center;
	gap: 0.3rem;
	cursor: pointer;
}

.eu-dropdown-chevron {
	flex-shrink: 0;
	transition: transform 0.22s ease;
	opacity: 0.6;
}

.eu-dropdown:hover .eu-dropdown-chevron,
.eu-dropdown.is-open .eu-dropdown-chevron {
	transform: rotate(180deg);
	opacity: 1;
}

.eu-dropdown-menu {
	list-style: none;
	margin: 0;
	padding: 0.5rem 0;
	position: absolute;
	top: calc(100% + 1px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	min-width: 280px;
	background: rgba(10, 14, 25, 0.97);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(200, 168, 75, 0.15);
	border-radius: var(--eu-radius);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
	z-index: 2000;
}

.eu-dropdown:hover .eu-dropdown-menu,
.eu-dropdown.is-open .eu-dropdown-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.eu-dropdown-item {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.65rem 1.25rem;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.85rem;
	border-left: 2px solid transparent;
}

.eu-dropdown-item:hover {
	background: rgba(233, 194, 76, 0.078);
	color: var(--eu-gold);
	text-decoration: none;
	border-left-color: var(--eu-gold);
}

/* Mobile: show as stacked list under parent */
@media (max-width: 991.98px) {
	.eu-dropdown-menu {
		position: static;
		transform: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		background: rgba(255, 255, 255, 0.04);
		border: none;
		border-left: 2px solid rgba(200, 168, 75, 0.3);
		border-radius: 0;
		box-shadow: none;
		padding: 0;
		margin: 0.25rem 0 0.5rem 1rem;
		backdrop-filter: none;
		display: none;
	}

	.eu-dropdown-menu::before {
		display: none;
	}

	.eu-dropdown.is-open .eu-dropdown-menu {
		display: block;
	}

	.eu-dropdown-item {
		padding: 0.5rem 1rem;
		font-size: 0.82rem;
	}
}

/* ============================================================
   HERO
   ============================================================ */
.eu-hero {
	position: relative;
	background: var(--eu-dark);
	display: flex;
	align-items: stretch;
	overflow: hidden;
}

/* Subtle radial glow */
.eu-hero-glow {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 70% at 15% 55%, rgba(200, 168, 75, 0.07) 0%, transparent 70%),
		radial-gradient(ellipse 50% 60% at 85% 10%, rgba(26, 37, 64, 0.7) 0%, transparent 70%);
	pointer-events: none;
}

.eu-hero-container {
	padding-top: 120px;
	padding-bottom: 0;
	position: relative;
	z-index: 2;
}

.eu-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(200, 168, 75, 0.12);
	border: 1px solid rgba(200, 168, 75, 0.3);
	color: var(--eu-gold);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 0.35rem 1rem;
	border-radius: 50px;
	margin-bottom: 1.5rem;
}

.eu-hero-content {
	padding-bottom: 3.5rem;
}

.eu-hero-title {
	font-size: clamp(2rem, 4.2vw, 3.25rem);
	font-weight: 800;
	color: var(--eu-white);
	line-height: 1.15;
	margin-bottom: 1.5rem;
}

.eu-hero-subtitle {
	color: rgba(255, 255, 255, 0.65);
	font-size: 1rem;
	max-width: 500px;
	line-height: 1.85;
	margin-bottom: 2.5rem;
}

/* Primary CTA */
.eu-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: var(--eu-gold);
	color: var(--eu-dark);
	border: none;
	border-radius: 50px;
	padding: 0.85rem 2.2rem;
	font-weight: 500;
	font-size: 1.1rem;
	text-decoration: none;
	transition: var(--eu-transition);
	box-shadow: 0 6px 24px rgba(200, 168, 75, 0.35);
}
.eu-btn-primary:hover {
	background: var(--eu-gold-lt);
	color: var(--eu-dark);
	text-decoration: none;
	transform: translateY(-3px);
}
.eu-arrow-right {
	position: relative;
	top: 2px;
	left: 1px
}

/* Hero visual column */
.eu-hero-visual {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.eu-hero-person {
	position: relative;
	z-index: 2;
	max-height: 75vh;
	width: auto;
	max-width: 90%;
	object-fit: contain;
	object-position: bottom center;
}

.eu-section {
	padding: 4rem 0;
}

.eu-section-white {
	background: var(--eu-white);
}

.eu-section-muted {
	background: var(--eu-muted);
}

/* Tag / eyebrow label */
.eu-tag {
	display: inline-block;
	background: rgba(245, 206, 91, 0.15);
	border: 1px solid rgba(200, 168, 75, 0.25);
	color: #bb8d05;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 0.3rem 0.9rem;
	border-radius: 50px;
	margin-bottom: 1rem;
}

.eu-heading {
	font-size: clamp(1.4rem, 3vw, 2.0rem);
	font-weight: 700;
	color: var(--eu-dark);
	line-height: 1.25;
	margin-bottom: 1.1rem;
}

.eu-heading-h1 {
	font-size: clamp(1.5rem, 3.4vw, 2.3rem);
	font-weight: 700;
	color: var(--eu-dark);
	line-height: 1.3;
	margin-bottom: 2.0rem;
	padding-bottom: 10px;
	background-image: linear-gradient(var(--eu-gold), var(--eu-gold));
	background-size: 0% 3px;
	background-position: center bottom;
	background-repeat: no-repeat;
	animation: eu-underline-in 0.7s ease forwards 0.25s;
}

@keyframes eu-underline-in {
	to { background-size: 50% 3px; }
}

/* Dark CTA button */
.eu-btn-dark {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	background: var(--eu-dark);
	color: var(--eu-white);
	border: 2px solid var(--eu-dark);
	border-radius: 50px;
	padding: 0.75rem 2rem;
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	transition: var(--eu-transition);
}

.eu-btn-dark:hover {
	background: var(--eu-dark);
	color: var(--eu-gold);
	text-decoration: none;
	transform: translateY(-2px);
}

/* ============================================================
   BENEFITS IMAGE FRAME
   ============================================================ */
.eu-img-frame {
	border-radius: var(--eu-radius-lg);
	overflow: hidden;
	box-shadow: var(--eu-shadow-lg);
	aspect-ratio: 4 / 3;
	background: var(--eu-muted);
}

.eu-img-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.eu-img-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--eu-text-sm);
	font-size: 0.85rem;
}

/* Checklist */
.eu-checklist {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.eu-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	padding: 0.8rem 1rem;
	background: var(--eu-white);
	border: 1px solid var(--eu-border);
	border-radius: var(--eu-radius);
	font-size: 0.88rem;
	font-weight: 500;
	transition: var(--eu-transition);
}

.eu-section-muted .eu-checklist li {
	background: var(--eu-white);
}

.eu-checklist li::before {
	content: '';
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	margin-top: 1px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23c8a84b'%3E%3Ccircle cx='10' cy='10' r='10' fill='rgba(200,168,75,0.12)'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='%23c8a84b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
	background-size: contain;
}

.eu-checklist li:hover {
	border-color: var(--eu-gold);
	transform: translateX(5px);
	box-shadow: var(--eu-shadow);
}

/* ============================================================
   PROGRAM CARDS GRID
   ============================================================ */
.eu-programs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.eu-program-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: var(--eu-dark);
	color: var(--eu-white);
	padding: 1.75rem 1.5rem;
	border-radius: var(--eu-radius);
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.05);
	position: relative;
	overflow: hidden;
	transition: var(--eu-transition);
}

.eu-program-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--eu-gold) 0%, transparent 100%);
	opacity: 0;
	transition: opacity 0.25s;
}

.eu-program-card:hover {
	background: var(--eu-dark-2);
	transform: translateY(-5px);
	box-shadow: var(--eu-shadow-lg);
	border-color: rgba(200, 168, 75, 0.2);
	color: var(--eu-white);
	text-decoration: none !important;
}

.eu-program-card:hover::after {
	opacity: 1;
}

.eu-program-abbr {
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--eu-gold);
	letter-spacing: 0.5px;
	margin-bottom: 0.3rem;
	line-height: 1;
}

.eu-program-name {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.eu-stats {
	position: relative;
	background: var(--eu-dark);
	padding: 6.5rem 0;
	overflow: hidden;
}

.eu-stats-glow {
	position: absolute;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	pointer-events: none;
}

.eu-stats-glow--left {
	top: -120px;
	left: -120px;
	background: radial-gradient(circle, rgba(200, 168, 75, 0.07) 0%, transparent 70%);
}

.eu-stats-glow--right {
	bottom: -120px;
	right: -120px;
	background: radial-gradient(circle, rgba(200, 168, 75, 0.07) 0%, transparent 70%);
}

.eu-stats-eyebrow {
	color: var(--eu-gold);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.eu-stats-title {
	font-size: clamp(1.8rem, 4vw, 2.75rem);
	font-weight: 800;
	color: var(--eu-white);
	line-height: 1.2;
	margin-bottom: 0;
}

.eu-stat-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: var(--eu-radius-lg);
	padding: 2.75rem 2rem;
	transition: var(--eu-transition);
}

.eu-stat-card:hover {
	background: rgba(200, 168, 75, 0.09);
	border-color: rgba(200, 168, 75, 0.28);
	transform: translateY(-5px);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}
.eu-stat-number {
	font-size: clamp(2.8rem, 5vw, 3.75rem);
	font-weight: 800;
	color: var(--eu-gold);
	line-height: 1;
	margin-bottom: 0.6rem;
}
.eu-stat-label {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.eu-footer {
	background: #080c14;
	padding: 5.5rem 0 0;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.9rem;
}
.eu-footer-tagline {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.6;
	max-width: 200px;
}

.eu-footer-heading {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 1.2rem;
}
.eu-footer-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.eu-footer-list li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}
.eu-footer-icon {
	color: #ccc;
	flex-shrink: 0;
	color: #ccc;
}

.eu-footer-list a {
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	transition: color 0.2s;
}

.eu-footer-list a:hover {
	color: var(--eu-gold);
}

.eu-footer-address {
	font-style: normal;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.85;
	font-size: 0.88rem;
}

.eu-footer-socials {
	display: flex;
	gap: 0.5rem;
}

.eu-social-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background: #0866ff;
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.85rem;
	text-decoration: none;
	transition: var(--eu-transition);
}

.eu-social-btn:hover {
	background: var(--eu-gold);
	color: var(--eu-dark);
	transform: translateY(-3px);
}

.eu-footer-bottom {
	margin-top: 4rem;
	padding: 1.5rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	text-align: center;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.4);
}
.mobile-show {display: none}
.study-image {
	max-width: 400px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 990px) {
  	.mobile-show {display: block}
  	.mobile-hidden {display: none}	
	.eu-hero {
		min-height: auto;
	}
	.eu-hero-container {
		padding-top: 90px;
	}

	.eu-hero-content {
		text-align: center;
		padding-bottom: 2.5rem;
	}

	.eu-hero-subtitle {
		margin-left: auto;
		margin-right: auto;
	}

	.eu-hero-visual {
		justify-content: center;
		min-height: 320px;
	}
	.eu-brand-logo {
		height: 52px;
		width: auto;
		position: relative;
		top: 0px;
		left: 18px
	}
	.eu-hero-person {
		max-height: 360px;
	}
	.eu-section {
		padding: 3rem 1rem;
	}
	.eu-navbar .navbar-collapse {
		background: rgba(10, 14, 25, 0.97);
		padding: 1rem 1.25rem;
		border-radius: var(--eu-radius);
		margin-top: 0.5rem;
	}

	.eu-nav-actions {
		margin-left: 0;
		padding-top: 0.75rem;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
	}
	.eu-social-btn {
		margin-bottom: 1rem
	}
	.mobile-correction-1 {
		margin-top: 1.3rem
	}
	.eu-footer {
  		padding: 2.5rem 0 0;
  	}
	.eu-dropdown:hover .eu-dropdown-menu, .eu-dropdown.is-open .eu-dropdown-menu {
  		transform: translateX(0) translateY(0);
	}
}

@media (max-width: 575px) {
	h2, .h2 {
		font-size: 1.4rem;
	}
	h3, .h3 {
		font-size: 1.2rem;
	}		
	h4, .h4 {
		font-size: 1.05rem;
	}	
	.lead {
		font-size: 1.05rem;
	}	
	.eu-programs {
		grid-template-columns: 1fr;
	}
	.eu-navbar {
		padding: 0.8rem 0;
	}	
	.eu-program-card--wide {
		grid-column: auto;
	}
	.eu-stats {
		padding: 4.5rem 0;
	}
	.eu-stat-card {
		padding: 2rem 1.5rem;
	}
	.study-image {
		max-width: 98%;
	}
	.col-lg-8 {
		padding-left: 0;
		padding-right: 0;
	}
	.eu-tag {
		font-size: 0.7rem;
		padding: 0.3rem 0.8rem;
		border-radius: 20px;
	}	
	.eu-img-frame {
		margin-bottom: 1.6rem;
	}	
	.eu-hero-badge {
		margin-top: 1.3rem;
	}	
	.eu-hero-subtitle {
  		font-size: 1rem;
  		line-height: 1.7;
  		margin-bottom: 1.8rem;
	}
}
