﻿/* ===============================
   SCROLL REVEAL ANIMATIONS
================================ */
.sr-item {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}
.sr-item.sr-left  { transform: translateX(-36px); }
.sr-item.sr-scale { transform: scale(0.92) translateY(16px); }
.sr-item.sr-visible {
	opacity: 1 !important;
	transform: none !important;
}
@media (prefers-reduced-motion: reduce) {
	.sr-item { opacity: 1; transform: none; transition: none; }
}

/* ===============================
   NAVBAR
================================ */
.ow-navbar {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 9000;
	background: rgba(255,255,255,0.97);
	border-bottom: 1px solid rgba(0,0,0,0.08);
	box-shadow: 0 2px 20px rgba(0,0,0,0.07);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	transition: box-shadow 0.3s ease;
}
.ow-navbar.scrolled {
	box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}
.ow-navbar-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}
.ow-navbar-logo img { height: 62px; width: auto; }
.ow-nav-links {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	margin: 0; padding: 0;
	flex: 1;
	justify-content: center;
}
.ow-nav-link {
	display: block;
	padding: 8px 12px;
	font-family: 'Poppins', sans-serif;
	font-size: 13.5px;
	font-weight: 500;
	color: var(--openway-dark);
	border-radius: 8px;
	text-decoration: none;
	transition: color 0.2s, background 0.2s;
	white-space: nowrap;
}
.ow-nav-link:hover { color: var(--openway-gold); background: rgba(201,168,106,0.07); text-decoration: none; }
.ow-nav-link.active { color: var(--openway-gold); }
.ow-nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.ow-nav-apply {
	padding: 9px 22px;
	background: var(--openway-gold);
	color: var(--openway-dark);
	font-family: 'Poppins', sans-serif;
	font-size: 13.5px;
	font-weight: 600;
	border-radius: 100px;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.ow-nav-apply:hover {
	background: #d4b478;
	box-shadow: 0 8px 20px rgba(201,168,106,0.25);
	transform: translateY(-1px);
	color: var(--openway-dark);
	text-decoration: none;
}
.ow-menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--openway-dark);
	font-size: 20px;
	cursor: pointer;
	padding: 8px;
	line-height: 1;
	transition: color 0.2s;
}
.ow-menu-toggle:hover { color: var(--openway-gold); }

/* Mobile overlay */
.ow-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 8999;
	background: var(--openway-dark);
	padding-top: 80px;
	overflow-y: auto;
	pointer-events: none;
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.22s ease, transform 0.22s ease;
}
.ow-mobile-menu.open { pointer-events: all; opacity: 1; transform: translateY(0); }
.ow-mobile-inner { padding: 24px 24px 48px; display: flex; flex-direction: column; gap: 4px; }
.ow-mobile-link {
	display: block;
	padding: 14px 16px;
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	font-weight: 500;
	color: rgba(248,246,242,0.8);
	border-radius: 12px;
	text-decoration: none;
	transition: color 0.2s, background 0.2s;
}
.ow-mobile-link:hover, .ow-mobile-link.active { color: var(--openway-gold); background: rgba(255,255,255,0.05); text-decoration: none; }
.ow-mobile-apply {
	display: block;
	text-align: center;
	padding: 15px 24px;
	background: var(--openway-gold);
	color: var(--openway-dark);
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	font-weight: 700;
	border-radius: 16px;
	text-decoration: none;
	margin-top: 20px;
	transition: background 0.2s;
}
.ow-mobile-apply:hover { background: #d4b478; color: var(--openway-dark); text-decoration: none; }

/* Offset main content on solid-navbar pages */
.ow-navbar.ow-navbar-solid ~ * ~ [role="main"],
.ow-navbar.ow-navbar-solid ~ [role="main"] { padding-top: 80px; }

@media (max-width: 991px) {
	.ow-nav-links { display: none; }
	.ow-nav-apply { display: none; }
	.ow-menu-toggle { display: flex; align-items: center; }
	.ow-navbar.ow-navbar-solid ~ * ~ [role="main"],
	.ow-navbar.ow-navbar-solid ~ [role="main"] { padding-top: 80px; }
}

/* ===============================
   ROOT / GLOBAL
================================ */
:root {
	--openway-dark: #161a22;
	--openway-gold: #c9a86a;
	--openway-gold-dark: #b89352;
	--openway-text: #5a5f69;
	--openway-light: #f8f6f2;
	--openway-border: #ebe5da;

	/* Override Porto theme — gold as primary, navy as dark */
	--primary:         #c9a86a;
	--primary-100:     #b89352;
	--primary-200:     #a87e3a;
	--primary-300:     #906c2e;
	--primary--100:    #d4b478;
	--primary--200:    #dfbf87;
	--primary--300:    #eacf9f;
	--primary-rgba-0:  rgba(201,168,106,0);
	--primary-rgba-10: rgba(201,168,106,0.1);
	--primary-rgba-20: rgba(201,168,106,0.2);
	--primary-rgba-30: rgba(201,168,106,0.3);
	--primary-rgba-40: rgba(201,168,106,0.4);
	--primary-rgba-50: rgba(201,168,106,0.5);
	--primary-rgba-60: rgba(201,168,106,0.6);
	--primary-rgba-70: rgba(201,168,106,0.7);
	--primary-rgba-80: rgba(201,168,106,0.8);
	--primary-rgba-90: rgba(201,168,106,0.9);

	--dark:            #161a22;
	--dark-100:        #1d2230;
	--dark--100:       #2a3044;

	--secondary:       #ebe5da;
	--secondary--100:  #f8f6f2;
	--secondary--200:  #ffffff;
	--secondary-rgba-0:  rgba(235,229,218,0);
	--secondary-rgba-10: rgba(235,229,218,0.1);

	--color-primary:   #c9a86a;
	--color-secondary: #f8f6f2;
	--color-dark:      #161a22;
}

body {
	font-family: "Poppins", sans-serif;
	color: var(--openway-text);
	background: #fff;
}

h1, h2, h3, h4, h5, h6 {
	color: #111;
}

/* Porto color overrides — force gold/navy everywhere */
.text-color-primary,
.text-color-hover-primary:hover,
a.text-color-hover-primary:hover { color: var(--openway-gold) !important; }

.bg-primary,
.btn-primary { background-color: var(--openway-gold) !important; border-color: var(--openway-gold) !important; color: var(--openway-dark) !important; }
.btn-primary:hover { background-color: var(--openway-gold-dark) !important; border-color: var(--openway-gold-dark) !important; }

.btn-outline-primary { border-color: var(--openway-gold) !important; color: var(--openway-gold) !important; }
.btn-outline-primary:hover { background-color: var(--openway-gold) !important; color: var(--openway-dark) !important; }

.border-color-primary { border-color: var(--openway-gold) !important; }
.bg-color-primary { background-color: var(--openway-gold) !important; }

.text-color-secondary { color: var(--openway-text) !important; }
.bg-color-secondary,
.page-header-modern.bg-color-secondary { background-color: var(--openway-light) !important; }

a { color: var(--openway-dark); }
a:hover { color: var(--openway-gold); }

.section-title {
	font-family: "Playfair Display", serif;
	font-size: 42px;
	line-height: 1.2;
	margin-bottom: 18px;
	color: #171717;
	text-transform: none !important;
}

.section-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	color: var(--openway-gold-dark);
	margin-bottom: 14px;
}

.section-subtitle {
	max-width: 720px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.8;
	color: #6d7480;
}

.lead-text,
.section-lead {
	font-size: 18px;
	line-height: 1.8;
	color: #3f4650;
}

.py-lg-6 {
	padding-top: 6rem !important;
	padding-bottom: 6rem !important;
}

/* ===============================
   HEADER LOGO
================================ */
.openway-header-logo {
	max-height: 72px;
	width: auto;
	display: block;
	object-fit: contain;
}

#header .header-logo {
	padding: 8px 0;
}

#header .header-container {
	min-height: 92px;
}

#header .header-row {
	align-items: center;
}

/* ===============================
   BUTTONS
================================ */
.btn-gold {
	background: var(--openway-gold);
	border: 1px solid var(--openway-gold);
	color: #111;
	transition: all 0.3s ease;
}

.btn-gold:hover {
	background: #d6b67d;
	border-color: #d6b67d;
	color: #111;
	transform: translateY(-2px);
}

.btn-pill {
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 700;
}

/* ===============================
   ABOUT PAGE HERO
================================ */
.about-hero {
	position: relative;
	min-height: 86vh;
	padding: 120px 0 90px;
	background:
		linear-gradient(135deg, rgba(10, 14, 24, 0.78), rgba(10, 14, 24, 0.58)),
		url('../img/about/hero.jpg') center center / cover no-repeat;
	color: #fff;
	overflow: hidden;
}

.about-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top right, rgba(201,168,106,0.22), transparent 35%);
	pointer-events: none;
}

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

.hero-kicker {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #fff;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.24);
	backdrop-filter: blur(6px);
	margin-bottom: 22px;
}

.about-hero h1 {
	font-family: "Playfair Display", serif;
	font-size: 64px;
	line-height: 1.08;
	margin-bottom: 20px;
	color: #fff;
	text-transform: none !important;
}

.hero-subtitle {
	max-width: 760px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.9;
	color: rgba(255,255,255,0.88);
}

.hero-buttons .btn {
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
}

.hero-trust {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
}

.trust-pill {
	padding: 12px 18px;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.12);
	color: #fff;
	font-size: 14px;
	backdrop-filter: blur(6px);
}

.trust-pill i {
	margin-right: 8px;
	color: var(--openway-gold);
}

/* ===============================
   ABOUT PAGE CONTENT
================================ */
.about-image-wrap,
.about-home-image {
	position: relative;
}

.about-checks,
.about-mini-points {
	display: grid;
	gap: 12px;
}

.about-checks div,
.about-mini-points div {
	font-weight: 500;
	color: #2f3640;
}

.about-checks i,
.about-mini-points i {
	color: var(--openway-gold-dark);
	margin-right: 10px;
}

/* ===============================
   HOMEPAGE HERO
================================ */
.homepage-hero {
	min-height: 100vh;
	padding-top: 80px;
	display: flex;
	align-items: center;
	background:
		linear-gradient(135deg, rgba(9, 12, 20, 0.82), rgba(9, 12, 20, 0.5)),
		url('../img/countries/malaysia-twin-towers.jpg') center center / cover no-repeat;
}

/* Hero entrance animations */
@keyframes heroFadeUp {
	from { opacity: 0; transform: translateY(36px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeRight {
	from { opacity: 0; transform: translateX(48px); }
	to   { opacity: 1; transform: translateX(0); }
}
@keyframes heroCardPop {
	from { opacity: 0; transform: scale(0.85) translateY(16px); }
	to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes heroFloat {
	0%, 100% { transform: translateY(0px); }
	50%       { transform: translateY(-10px); }
}

.hero-anim-1 { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.15s both; }
.hero-anim-2 { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.3s  both; }
.hero-anim-3 { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.45s both; }
.hero-anim-4 { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.6s  both; }
.hero-anim-5 { animation: heroFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.75s both; }


.homepage-hero-title {
	font-family: "Playfair Display", serif;
	font-size: clamp(38px, 5.5vw, 58px);
	line-height: 1.12;
	font-weight: 700;
	color: #fff;
	margin-bottom: 22px;
	text-transform: none !important;
}

.homepage-hero-text {
	max-width: 720px;
	font-size: 18px;
	line-height: 1.9;
	color: rgba(255,255,255,0.88);
	margin-bottom: 30px;
}

.hero-actions .btn {
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.hero-trust-boxes {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 34px;
}

.hero-trust-item {
	min-width: 150px;
	padding: 16px 20px;
	border-radius: 18px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.12);
	backdrop-filter: blur(6px);
	text-align: center;
}

.hero-trust-item strong {
	display: block;
	font-size: 28px;
	line-height: 1;
	color: #fff;
	margin-bottom: 6px;
}

.hero-trust-item span {
	font-size: 14px;
	color: rgba(255,255,255,0.82);
}

/* ===============================
   STATS
================================ */
.stats-section {
	background: var(--openway-dark);
	color: #fff;
	padding: 70px 0;
}

.stat-box {
	padding: 26px 20px;
	border-radius: 16px;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.06);
	height: 100%;
}

.stats-section h2 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--openway-gold);
}

.stats-section p {
	margin: 0;
	font-size: 15px;
	color: rgba(255,255,255,0.82);
}

/* ===============================
   PROCESS
================================ */
.process-card {
	position: relative;
	height: 100%;
	padding: 32px 26px;
	background: #fff;
	border-radius: 18px;
	border: 1px solid var(--openway-border);
	box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
	transition: all 0.3s ease;
}

.process-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
}

.process-number {
	width: 54px;
	height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--openway-gold);
	color: #111;
	font-weight: 700;
	margin-bottom: 18px;
}

.process-card h5 {
	font-size: 20px;
	margin-bottom: 12px;
	color: #171717;
}

.process-card p {
	margin: 0;
	line-height: 1.8;
}

/* ===============================
   MISSION / VISION
================================ */
.mv-box {
	padding: 40px;
	background: #f8f9fa;
	border-radius: 18px;
	border: 1px solid #eceff3;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.mv-box.dark {
	background: var(--openway-dark);
	color: #fff;
	border-color: rgba(255,255,255,0.08);
}

.mv-box h3 {
	margin-bottom: 16px;
	font-family: "Playfair Display", serif;
	font-size: 30px;
}

.mv-box.dark h3,
.mv-box.dark p {
	color: #fff;
}

.mv-icon {
	width: 62px;
	height: 62px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(201,168,106,0.14);
	color: var(--openway-gold);
	font-size: 24px;
	margin-bottom: 20px;
}

/* ===============================
   SERVICES
================================ */
#services .custom-card-services {
	background: #fff;
	border-radius: 18px;
	border: 1px solid #ece8e1;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(0,0,0,0.04);
	overflow: hidden;
}

#services .custom-card-services:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(0,0,0,0.09);
}

#services .custom-card-services .card-body {
	padding: 28px;
	display: block;
}

#services .service-img-wrapper {
	width: 100%;
	height: 210px;
	overflow: hidden;
	border-radius: 14px;
	margin-bottom: 20px;
	background: #fff;
}

#services .service-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

#services .custom-card-services:hover .service-img-wrapper img {
	transform: scale(1.05);
}

.service-icon {
	width: 52px;
	height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(201,168,106,0.12);
	color: var(--openway-gold);
	font-size: 20px;
	margin-bottom: 16px;
}

.service-title {
	font-size: 24px;
	font-weight: 700;
	color: #171717;
	margin-bottom: 16px;
}

.service-list li {
	margin-bottom: 8px;
	font-size: 15px;
	line-height: 1.7;
	color: #4b525c;
}

.service-link {
	display: inline-block;
	margin-top: 10px;
	font-weight: 700;
	font-size: 16px;
	color: #111;
	text-decoration: none;
}

.service-link span {
	margin-left: 6px;
	transition: margin-left 0.25s ease;
}

.service-link:hover span {
	margin-left: 10px;
}

/* ===============================
   FEATURES
================================ */
.feature-card {
	padding: 34px 26px;
	background: #fff;
	border-radius: 18px;
	border: 1px solid var(--openway-border);
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
	text-align: left;
}

.feature-card i {
	font-size: 34px;
	color: var(--openway-gold);
	margin-bottom: 16px;
}

.feature-card h5 {
	font-size: 20px;
	margin-bottom: 12px;
	color: #171717;
}

.feature-card p {
	margin-bottom: 0;
	line-height: 1.8;
	color: #5a6170;
}

.feature-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* ===============================
   HOME PROCESS SECTION
================================ */
.process-home-section {
	background: linear-gradient(135deg, #161a22, #1d2230) !important;
	padding: 90px 20px !important;
	position: relative;
}

.process-home-section .section-eyebrow,
.process-home-section .section-title,
.process-home-section .section-subtitle,
.process-home-section p,
.process-home-section h5 {
	color: #ffffff !important;
}

.process-home-section .section-subtitle {
	color: rgba(255,255,255,0.82) !important;
}

.process-home-card {
	padding: 34px 24px;
	border-radius: 20px;
	background: rgba(255,255,255,0.06) !important;
	border: 1px solid rgba(255,255,255,0.10) !important;
	backdrop-filter: blur(4px);
	transition: all 0.3s ease;
	height: 100%;
}

.process-home-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.process-home-number {
	width: 58px;
	height: 58px;
	margin: 0 auto 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #c9a86a !important;
	color: #111111 !important;
	font-weight: 700;
	font-size: 18px;
}

.process-home-card h5 {
	font-size: 21px;
	color: #ffffff !important;
	margin-bottom: 12px;
}

.process-home-card p {
	margin-bottom: 0;
	color: rgba(255,255,255,0.82) !important;
	line-height: 1.8;
	font-size: 16px;
}

/* ===============================
   CTA
================================ */
.cta-section {
	background: linear-gradient(135deg, #c9a86a, #b89352);
	color: #fff;
	padding: 90px 20px;
}

.cta-section h2 {
	font-family: "Playfair Display", serif;
	font-size: 46px;
	color: #fff;
	margin-bottom: 16px;
}

.cta-section p {
	font-size: 17px;
	max-width: 650px;
	margin: 0 auto 28px;
	color: rgba(255,255,255,0.92);
}

.cta-section .btn {
	background: #fff;
	color: #111;
	border-radius: 999px;
	padding: 14px 28px;
	font-weight: 700;
	border: none;
	transition: all 0.3s ease;
}

.cta-section .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* ===============================
   FINAL CTA
================================ */
.homepage-final-cta {
	padding: 100px 20px !important;
	background: linear-gradient(135deg, #c9a86a, #b89352) !important;
	text-align: center;
	position: relative;
}

.homepage-final-cta .section-eyebrow,
.homepage-final-cta .cta-title,
.homepage-final-cta .cta-text {
	color: #ffffff !important;
}

.homepage-final-cta .section-eyebrow {
	color: rgba(255,255,255,0.82) !important;
}

.homepage-final-cta .cta-title {
	font-family: "Playfair Display", serif;
	font-size: 48px;
	line-height: 1.2;
	margin-bottom: 18px;
}

.homepage-final-cta .cta-text {
	font-size: 18px;
	line-height: 1.8;
	max-width: 760px;
	margin: 0 auto 30px;
	color: rgba(255,255,255,0.94) !important;
}

.homepage-final-cta .btn-light {
	background: #ffffff !important;
	color: #111111 !important;
	border: none !important;
	border-radius: 999px !important;
	padding: 14px 30px !important;
	font-weight: 700 !important;
	box-shadow: 0 10px 24px rgba(0,0,0,0.12);
	transition: all 0.3s ease;
}

.homepage-final-cta .btn-light:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(0,0,0,0.16);
}

/* ===============================
   FOOTER
================================ */
.footer-simple {
	background: #fff;
	border-top: 1px solid #eee;
}

.footer-simple p {
	margin: 0;
	font-size: 14px;
	color: #777;
}

/* ===============================
   PARTNER UNIVERSITY LOGOS
================================ */
.partner-logo-wrap {
	padding: 28px 20px 8px;
	border-radius: 22px;
	background: #faf8f4;
	border: 1px solid #eee7dc;
}

.uni-logo {
	max-height: 65px;
	width: auto;
	object-fit: contain;
	opacity: 0.75;
	transition: all 0.3s ease;
	filter: grayscale(10%);
}

.uni-logo:hover {
	opacity: 1;
	transform: scale(1.05);
	filter: grayscale(0%);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
	.openway-header-logo {
		max-height: 58px;
	}

	#header .header-container {
		min-height: 78px;
	}

	.about-hero {
		min-height: 78vh;
		padding: 110px 0 80px;
	}

	.about-hero h1 {
		font-size: 48px;
		text-transform: none !important;
}

	.homepage-hero-title {
		font-size: 52px;
	}

	.section-title {
		font-size: 36px;
		text-transform: none !important;
}

	#services .service-img-wrapper {
		height: 220px;
	}
}

@media (max-width: 767px) {
	.about-hero {
		min-height: auto;
		padding: 100px 0 70px;
		text-align: center;
	}

	.about-hero h1 {
		font-size: 34px;
		line-height: 1.2;
		text-transform: none !important;
}

	.hero-subtitle {
		font-size: 16px;
		line-height: 1.8;
	}

	.hero-trust {
		gap: 10px;
	}

	.trust-pill {
		font-size: 13px;
		padding: 10px 14px;
	}

	.homepage-hero {
		min-height: auto;
		padding: 110px 0 70px;
	}

	.homepage-hero-title {
		font-size: 36px;
		line-height: 1.18;
	}

	.homepage-hero-text {
		font-size: 16px;
		line-height: 1.8;
	}

	.hero-trust-boxes {
		justify-content: center;
	}

	.hero-trust-item {
		min-width: 130px;
		padding: 14px 16px;
	}

	.section-title {
		font-size: 30px;
		text-transform: none !important;
}

	.cta-section h2,
	.homepage-final-cta .cta-title {
		font-size: 34px;
	}

	.homepage-final-cta .cta-text {
		font-size: 16px !important;
	}

	#services .custom-card-services .card-body {
		padding: 22px;
	}

	#services .service-img-wrapper {
		height: 200px;
		margin-bottom: 18px;
	}

	.process-home-card p {
		font-size: 15px;
	}
}

/* ===============================
   CONTACT PAGE
================================ */
.contact-hero {
	padding: 110px 20px 90px;
	background:
		linear-gradient(135deg, rgba(22,26,34,0.96), rgba(29,34,48,0.92)),
		url('../img/about/hero.jpg') center center / cover no-repeat;
	text-align: center;
	color: #fff;
}

.contact-hero .section-eyebrow {
	color: rgba(255,255,255,0.78) !important;
}

.contact-hero-title {
	font-family: "Playfair Display", serif;
	font-size: 58px;
	line-height: 1.12;
	color: #fff;
	margin-bottom: 20px;
}

.contact-hero-text {
	max-width: 820px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.9;
	color: rgba(255,255,255,0.88);
}

.contact-info-card {
	padding: 34px 24px;
	background: #fff;
	border-radius: 20px;
	border: 1px solid var(--openway-border);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
	transition: all 0.3s ease;
}

.contact-info-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.contact-info-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(201,168,106,0.12);
	color: var(--openway-gold);
	font-size: 24px;
}

.contact-info-card h5 {
	font-size: 22px;
	margin-bottom: 12px;
	color: #171717;
}

.contact-info-card p {
	margin-bottom: 0;
	line-height: 1.8;
	color: #5a6170;
}

.contact-info-card a {
	color: #5a6170;
	text-decoration: none;
}

.contact-info-card a:hover {
	color: var(--openway-gold-dark);
}

.contact-map {
	min-height: 560px;
}

.contact-faq-accordion {
	display: grid;
	gap: 16px;
}

.contact-faq-item {
	border: 1px solid #ebe5da !important;
	border-radius: 18px !important;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.contact-faq-item .accordion-button {
	background: #fff;
	color: #171717;
	font-weight: 600;
	font-size: 18px;
	padding: 22px 24px;
	box-shadow: none !important;
}

.contact-faq-item .accordion-button:not(.collapsed) {
	background: #fff;
	color: #171717;
}

.contact-faq-item .accordion-button:focus {
	box-shadow: none;
	border-color: transparent;
}

.contact-faq-item .accordion-body {
	padding: 0 24px 24px;
	line-height: 1.9;
	color: #5a6170;
	font-size: 16px;
}

.contact-final-cta {
	padding: 90px 20px !important;
	background: linear-gradient(135deg, #c9a86a, #b89352) !important;
	text-align: center;
}

.contact-final-cta .section-eyebrow,
.contact-final-cta .cta-title,
.contact-final-cta .cta-text {
	color: #fff !important;
}

.contact-final-cta .section-eyebrow {
	color: rgba(255,255,255,0.82) !important;
}

@media (max-width: 991px) {
	.contact-hero-title {
		font-size: 46px;
	}
}

@media (max-width: 767px) {
	.contact-hero {
		padding: 90px 20px 70px;
	}

	.contact-hero-title {
		font-size: 34px;
		line-height: 1.18;
	}

	.contact-hero-text {
		font-size: 16px;
		line-height: 1.8;
	}

	.contact-map {
		min-height: 420px;
	}

	.contact-faq-item .accordion-button {
		font-size: 16px;
		padding: 18px 18px;
	}

	.contact-faq-item .accordion-body {
		padding: 0 18px 18px;
		font-size: 15px;
	}
}
/* ===============================
   PREMIUM FOOTER
================================ */
.site-footer {
	background: #11151d;
	color: rgba(255,255,255,0.78);
}

.footer-top-cta {
	padding: 70px 0;
	background: linear-gradient(135deg, rgba(201,168,106,0.10), rgba(201,168,106,0.04));
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-top-cta .section-eyebrow {
	color: rgba(255,255,255,0.68) !important;
}

.footer-cta-title {
	font-family: "Playfair Display", serif;
	font-size: 38px;
	line-height: 1.2;
	color: #fff;
	margin-bottom: 14px;
}

.footer-cta-text {
	font-size: 16px;
	line-height: 1.8;
	color: rgba(255,255,255,0.76);
	max-width: 600px;
}

.footer-newsletter-form {
	width: 100%;
}

.footer-newsletter-wrap {
	display: flex;
	gap: 12px;
	align-items: center;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.10);
	border-radius: 999px;
	padding: 8px;
}

.footer-newsletter-input {
	background: transparent;
	border: none;
	color: #fff;
	padding: 14px 18px;
	box-shadow: none !important;
}

.footer-newsletter-input::placeholder {
	color: rgba(255,255,255,0.50);
}

.footer-newsletter-input:focus {
	background: transparent;
	color: #fff;
}

.footer-newsletter-btn {
	background: var(--openway-gold);
	color: #111;
	border: none;
	border-radius: 999px;
	padding: 14px 24px;
	font-weight: 700;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.footer-newsletter-btn:hover {
	background: #d6b67d;
	color: #111;
	transform: translateY(-1px);
}

.footer-main {
	padding: 70px 0 50px;
}

.footer-logo {
	max-height: 44px;
	width: auto;
	margin-bottom: 20px;
}

.footer-brand-text {
	font-size: 15px;
	line-height: 1.9;
	color: rgba(255,255,255,0.72);
	max-width: 340px;
	margin-bottom: 22px;
}

.footer-title {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
}

.footer-links li,
.footer-hours li {
	margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
	color: rgba(255,255,255,0.72);
	text-decoration: none;
	transition: all 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
	color: var(--openway-gold);
}

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
	color: rgba(255,255,255,0.74);
}

.footer-contact span {
	color: var(--openway-gold);
	font-size: 15px;
	min-width: 18px;
	margin-top: 2px;
}

.footer-hours li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255,255,255,0.06);
	color: rgba(255,255,255,0.68);
	font-size: 14px;
}

.footer-hours li strong {
	color: #fff;
	font-weight: 600;
}

.footer-socials {
	display: flex;
	gap: 12px;
}

.footer-socials a {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.08);
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
}

.footer-socials a:hover {
	background: var(--openway-gold);
	color: #111;
	transform: translateY(-2px);
}

.footer-bottom {
	padding: 22px 0;
	border-top: 1px solid rgba(255,255,255,0.08);
	background: #0c1017;
}

.footer-bottom p {
	font-size: 14px;
	color: rgba(255,255,255,0.60);
}

.footer-bottom-note {
	color: rgba(255,255,255,0.50);
}

@media (max-width: 767px) {
	.footer-top-cta,
	.footer-main {
		padding-top: 50px;
		padding-bottom: 40px;
	}

	.footer-cta-title {
		font-size: 30px;
	}

	.footer-newsletter-wrap {
		flex-direction: column;
		border-radius: 20px;
		padding: 14px;
	}

	.footer-newsletter-input,
	.footer-newsletter-btn {
		width: 100%;
	}

	.footer-hours li {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
}

/* ===============================
   STUDY OPTIONS PAGE
================================ */
.study-options-hero {
	padding: 120px 20px 95px;
	background:
		linear-gradient(135deg, rgba(22,26,34,0.95), rgba(29,34,48,0.88)),
		url('../img/countries/malaysia-twin-towers.jpg') center center / cover no-repeat;
	text-align: center;
	color: #fff;
}

.study-options-hero .section-eyebrow {
	color: rgba(255,255,255,0.78) !important;
}

.study-options-hero-title {
	font-family: "Playfair Display", serif;
	font-size: 60px;
	line-height: 1.12;
	color: #fff;
	margin-bottom: 20px;
	text-transform: none !important;
}

.study-options-hero-text {
	max-width: 830px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.9;
	color: rgba(255,255,255,0.88);
}

.study-field-card {
	padding: 34px 26px;
	background: #fff;
	border-radius: 20px;
	border: 1px solid var(--openway-border);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
	transition: all 0.3s ease;
}

.study-field-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.study-field-icon {
	width: 58px;
	height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(201,168,106,0.12);
	color: var(--openway-gold);
	font-size: 22px;
	margin-bottom: 18px;
}

.study-field-card h5 {
	font-size: 22px;
	margin-bottom: 12px;
	color: #171717;
}

.study-field-card p {
	margin-bottom: 0;
	line-height: 1.8;
	color: #5a6170;
}

.university-option-card {
	padding: 30px 26px;
	background: #fff;
	border-radius: 20px;
	border: 1px solid var(--openway-border);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
	transition: all 0.3s ease;
}

.university-option-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.university-logo-wrap {
	height: 80px;
	display: flex;
	align-items: center;
	margin-bottom: 18px;
}

.university-option-card h5 {
	font-size: 24px;
	margin-bottom: 10px;
	color: #171717;
}

.university-location {
	font-size: 14px;
	color: #7a818d;
	margin-bottom: 14px;
}

.university-location i {
	color: var(--openway-gold-dark);
	margin-right: 6px;
}

.university-option-card p {
	line-height: 1.8;
	color: #5a6170;
}

.program-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 18px 0 20px;
}

.program-tags span {
	padding: 8px 14px;
	border-radius: 999px;
	background: #f6f2ea;
	color: #6b5730;
	font-size: 13px;
	font-weight: 600;
}

.university-link {
	display: inline-block;
	font-weight: 700;
	font-size: 16px;
	color: #111;
	text-decoration: none;
}

.university-link span {
	margin-left: 6px;
	transition: margin-left 0.25s ease;
}

.university-link:hover span {
	margin-left: 10px;
}

.university-help-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
}

@media (max-width: 991px) {
	.study-options-hero-title {
		font-size: 46px;
		text-transform: none !important;
}
}

@media (max-width: 767px) {
	.study-options-hero {
		padding: 100px 20px 75px;
	}

	.study-options-hero-title {
		font-size: 34px;
		line-height: 1.18;
		text-transform: none !important;
}

	.study-options-hero-text {
		font-size: 16px;
		line-height: 1.8;
	}

	.university-option-card h5,
	.study-field-card h5 {
		font-size: 20px;
	}
}

/* ===============================
   VISA PAGE
================================ */
.visa-hero {
	padding: 120px 20px 95px;
	background:
		linear-gradient(135deg, rgba(22,26,34,0.95), rgba(29,34,48,0.88)),
		url('../img/visa-support.jpg') center center / cover no-repeat;
	text-align: center;
	color: #fff;
}

.visa-hero .section-eyebrow {
	color: rgba(255,255,255,0.78) !important;
}

.visa-hero-title {
	font-family: "Playfair Display", serif;
	font-size: 60px;
	line-height: 1.12;
	color: #fff;
	margin-bottom: 20px;
	text-transform: none !important;
}

.visa-hero-text {
	max-width: 830px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.9;
	color: rgba(255,255,255,0.88);
}

.visa-support-card {
	padding: 34px 26px;
	background: #fff;
	border-radius: 20px;
	border: 1px solid var(--openway-border);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
	transition: all 0.3s ease;
}

.visa-support-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.visa-support-icon {
	width: 58px;
	height: 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(201,168,106,0.12);
	color: var(--openway-gold);
	font-size: 22px;
	margin-bottom: 18px;
}

.visa-support-card h5 {
	font-size: 22px;
	margin-bottom: 12px;
	color: #171717;
}

.visa-support-card p {
	margin-bottom: 0;
	line-height: 1.8;
	color: #5a6170;
}

.visa-faq-accordion {
	display: grid;
	gap: 16px;
}

.visa-faq-item {
	border: 1px solid #ebe5da !important;
	border-radius: 18px !important;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.visa-faq-item .accordion-button {
	background: #fff;
	color: #171717;
	font-weight: 600;
	font-size: 18px;
	padding: 22px 24px;
	box-shadow: none !important;
}

.visa-faq-item .accordion-button:not(.collapsed) {
	background: #fff;
	color: #171717;
}

.visa-faq-item .accordion-button:focus {
	box-shadow: none;
	border-color: transparent;
}

.visa-faq-item .accordion-body {
	padding: 0 24px 24px;
	line-height: 1.9;
	color: #5a6170;
	font-size: 16px;
}

@media (max-width: 991px) {
	.visa-hero-title {
		font-size: 46px;
		text-transform: none !important;
}
}

@media (max-width: 767px) {
	.visa-hero {
		padding: 100px 20px 75px;
	}

	.visa-hero-title {
		font-size: 34px;
		line-height: 1.18;
		text-transform: none !important;
}

	.visa-hero-text {
		font-size: 16px;
		line-height: 1.8;
	}

	.visa-support-card h5 {
		font-size: 20px;
	}

	.visa-faq-item .accordion-button {
		font-size: 16px;
		padding: 18px 18px;
	}

	.visa-faq-item .accordion-body {
		padding: 0 18px 18px;
		font-size: 15px;
	}
}

/* ===============================
   CONTACT PAGE
================================ */
.contact-hero {
	padding: 110px 20px 90px;
	background:
		linear-gradient(135deg, rgba(22,26,34,0.96), rgba(29,34,48,0.92)),
		url('../img/about/hero.jpg') center center / cover no-repeat;
	text-align: center;
	color: #fff;
}

.contact-hero .section-eyebrow {
	color: rgba(255,255,255,0.78) !important;
}

.contact-hero-title {
	font-family: "Playfair Display", serif;
	font-size: 58px;
	line-height: 1.12;
	color: #fff;
	margin-bottom: 20px;
}

.contact-hero-text {
	max-width: 820px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.9;
	color: rgba(255,255,255,0.88);
}

.contact-info-card {
	padding: 34px 24px;
	background: #fff;
	border-radius: 20px;
	border: 1px solid var(--openway-border);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
	transition: all 0.3s ease;
}

.contact-info-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.contact-info-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(201,168,106,0.12);
	color: var(--openway-gold);
	font-size: 24px;
}

.contact-info-card h5 {
	font-size: 22px;
	margin-bottom: 12px;
	color: #171717;
}

.contact-info-card p {
	margin-bottom: 0;
	line-height: 1.8;
	color: #5a6170;
}

.contact-info-card a {
	color: #5a6170;
	text-decoration: none;
}

.contact-info-card a:hover {
	color: var(--openway-gold-dark);
}

.contact-map {
	min-height: 560px;
}

.contact-faq-accordion {
	display: grid;
	gap: 16px;
}

.contact-faq-item {
	border: 1px solid #ebe5da !important;
	border-radius: 18px !important;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.contact-faq-item .accordion-button {
	background: #fff;
	color: #171717;
	font-weight: 600;
	font-size: 18px;
	padding: 22px 24px;
	box-shadow: none !important;
}

.contact-faq-item .accordion-button:not(.collapsed) {
	background: #fff;
	color: #171717;
}

.contact-faq-item .accordion-button:focus {
	box-shadow: none;
	border-color: transparent;
}

.contact-faq-item .accordion-body {
	padding: 0 24px 24px;
	line-height: 1.9;
	color: #5a6170;
	font-size: 16px;
}

.contact-final-cta {
	padding: 90px 20px !important;
	background: linear-gradient(135deg, #c9a86a, #b89352) !important;
	text-align: center;
}

.contact-final-cta .section-eyebrow,
.contact-final-cta .cta-title,
.contact-final-cta .cta-text {
	color: #fff !important;
}

.contact-final-cta .section-eyebrow {
	color: rgba(255,255,255,0.82) !important;
}

/* ===============================
   BOOKING FORM
================================ */
.booking-form-card {
	background: #fff;
	border: 1px solid var(--openway-border);
	border-radius: 24px;
	padding: 34px;
	box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.booking-label {
	font-size: 14px;
	font-weight: 600;
	color: #171717;
	margin-bottom: 8px;
}

.booking-input {
	border-radius: 14px;
	border: 1px solid #e8e1d6;
	padding: 14px 16px;
	min-height: 52px;
	box-shadow: none !important;
	background: #fff;
	color: #333;
}

.booking-input:focus {
	border-color: var(--openway-gold);
	box-shadow: 0 0 0 0.15rem rgba(201,168,106,0.18) !important;
}

textarea.booking-input {
	min-height: 140px;
	resize: vertical;
}

.booking-submit-btn {
	padding: 14px 28px;
	font-weight: 700;
}

@media (max-width: 991px) {
	.contact-hero-title {
		font-size: 46px;
	}
}

@media (max-width: 767px) {
	.contact-hero {
		padding: 90px 20px 70px;
	}

	.contact-hero-title {
		font-size: 34px;
		line-height: 1.18;
	}

	.contact-hero-text {
		font-size: 16px;
		line-height: 1.8;
	}

	.contact-map {
		min-height: 420px;
	}

	.contact-faq-item .accordion-button {
		font-size: 16px;
		padding: 18px 18px;
	}

	.contact-faq-item .accordion-body {
		padding: 0 18px 18px;
		font-size: 15px;
	}

	.booking-form-card {
		padding: 22px;
		border-radius: 18px;
	}
}

/* ===============================
   TESTIMONIALS
================================ */
.testimonials-section {
	background: var(--openway-light);
}

.testimonial-card {
	padding: 36px 30px;
	background: #fff;
	border-radius: 22px;
	border: 1px solid var(--openway-border);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
	height: 100%;
	position: relative;
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 44px rgba(15, 23, 42, 0.10);
}

.testimonial-quote {
	font-size: 48px;
	line-height: 1;
	color: var(--openway-gold);
	font-family: "Playfair Display", serif;
	margin-bottom: 16px;
	display: block;
}

.testimonial-text {
	font-size: 16px;
	line-height: 1.9;
	color: #4b525c;
	margin-bottom: 28px;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 14px;
}

.testimonial-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--openway-border);
}

.testimonial-name {
	font-size: 16px;
	font-weight: 700;
	color: #171717;
	margin-bottom: 2px;
}

.testimonial-detail {
	font-size: 13px;
	color: #7a818d;
}

.testimonial-stars {
	color: var(--openway-gold);
	font-size: 13px;
	margin-bottom: 18px;
}

/* ===============================
   TEAM SECTION
================================ */
.team-card {
	background: #fff;
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid var(--openway-border);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
	transition: all 0.3s ease;
}

.team-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 44px rgba(15, 23, 42, 0.10);
}

.team-photo-wrap {
	height: 260px;
	overflow: hidden;
}

.team-photo-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform 0.4s ease;
}

.team-card:hover .team-photo-wrap img {
	transform: scale(1.05);
}

.team-info {
	padding: 22px 24px;
}

.team-name {
	font-size: 20px;
	font-weight: 700;
	color: #171717;
	margin-bottom: 4px;
}

.team-role {
	font-size: 14px;
	color: var(--openway-gold-dark);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 12px;
}

.team-bio {
	font-size: 14px;
	line-height: 1.8;
	color: #5a6170;
	margin-bottom: 0;
}

/* ===============================
   MALAYSIA HIGHLIGHT STRIP
================================ */
.malaysia-strip {
	background: linear-gradient(135deg, rgba(22,26,34,0.97), rgba(29,34,48,0.95)),
		url('../img/countries/malaysia-twin-towers.jpg') center center / cover no-repeat;
	padding: 70px 0;
}

.malaysia-strip-stat h3 {
	font-family: "Playfair Display", serif;
	font-size: 46px;
	font-weight: 700;
	color: var(--openway-gold);
	margin-bottom: 6px;
}

.malaysia-strip-stat p {
	font-size: 15px;
	color: rgba(255,255,255,0.82);
	margin: 0;
}

@media (max-width: 767px) {
	.team-photo-wrap {
		height: 220px;
	}

	.testimonial-card {
		padding: 28px 22px;
	}

	.testimonial-text {
		font-size: 15px;
	}

	.malaysia-strip-stat h3 {
		font-size: 36px;
	}
}

/* ===============================
   UNIVERSITIES PAGE
================================ */
.universities-hero-section {
	padding: 110px 20px 90px;
	background: var(--openway-dark);
}

.universities-hero-title {
	font-family: "Playfair Display", serif;
	font-size: 64px;
	line-height: 1.08;
	color: #fff;
	margin: 12px 0 18px;
	text-transform: none !important;
}

.universities-hero-text {
	max-width: 540px;
	font-size: 17px;
	line-height: 1.9;
	color: rgba(255,255,255,0.60);
	margin: 0;
}

.uni-search-section {
	background: rgba(248,246,242,0.97);
	border-bottom: 1px solid var(--openway-border);
	padding: 18px 0;
	box-shadow: 0 2px 12px rgba(15,23,42,0.04);
}

.uni-search-input-wrap {
	position: relative;
}

.uni-search-input-wrap i {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #9ca3af;
	font-size: 14px;
	pointer-events: none;
}

.uni-search-input {
	width: 100%;
	padding: 11px 16px 11px 42px;
	border-radius: 999px;
	border: 1px solid var(--openway-border);
	background: #fff;
	font-size: 14px;
	color: #333;
	outline: none;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	font-family: "Poppins", sans-serif;
}

.uni-search-input:focus {
	border-color: var(--openway-gold);
	box-shadow: 0 0 0 3px rgba(201,168,106,0.15);
}

.uni-filter-btn {
	padding: 11px 20px;
	border-radius: 999px;
	border: 1px solid var(--openway-border);
	background: transparent;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: all 0.25s ease;
	white-space: nowrap;
	font-family: "Poppins", sans-serif;
}

.uni-filter-btn:hover { border-color: var(--openway-gold); }

.uni-filter-btn.active {
	background: var(--openway-dark);
	border-color: var(--openway-dark);
	color: #fff;
}

.uni-filters-panel { overflow: hidden; }
.uni-filters-panel.hidden { display: none; }

.uni-filter-select {
	width: 100%;
	padding: 9px 14px;
	border-radius: 12px;
	border: 1px solid var(--openway-border);
	background: #fff;
	font-size: 14px;
	color: #333;
	outline: none;
	font-family: "Poppins", sans-serif;
	transition: border-color 0.25s ease;
}

.uni-filter-select:focus { border-color: var(--openway-gold); }

.uni-budget-label {
	font-size: 13px;
	color: #6b7280;
	white-space: nowrap;
}

.uni-budget-range {
	width: 100%;
	accent-color: var(--openway-gold);
	cursor: pointer;
}

.uni-count {
	font-size: 14px;
	color: #6b7280;
	margin-bottom: 20px;
}

.uni-card {
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid var(--openway-border);
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.uni-card:hover {
	border-color: rgba(201,168,106,0.35);
	box-shadow: 0 20px 44px rgba(201,168,106,0.08);
}

.uni-card-img-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.uni-card-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.uni-card:hover .uni-card-img-wrap img { transform: scale(1.05); }

.uni-card-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(22,26,34,0.65), transparent 55%);
}

.uni-card-type-badge {
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	color: #fff;
}

.uni-badge-public  { background: rgba(20,60,20,0.82); }
.uni-badge-private { background: rgba(22,26,34,0.82); }

.uni-card-rank {
	position: absolute;
	bottom: 12px;
	left: 12px;
	color: var(--openway-gold);
	font-size: 12px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 4px;
}

.uni-card-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.uni-card-name {
	font-family: "Playfair Display", serif;
	font-size: 17px;
	font-weight: 700;
	color: var(--openway-dark);
	margin-bottom: 4px;
}

.uni-card-location {
	font-size: 12px;
	color: #9ca3af;
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 10px;
}

.uni-card-desc {
	font-size: 12px;
	line-height: 1.8;
	color: #6b7280;
	margin-bottom: 14px;
	flex: 1;
}

.uni-card-meta {
	display: flex;
	justify-content: space-between;
	margin-bottom: 12px;
}

.uni-card-meta-label {
	font-size: 11px;
	color: #9ca3af;
	margin-bottom: 2px;
}

.uni-card-meta-value {
	font-size: 13px;
	font-weight: 700;
	color: var(--openway-dark);
}

.uni-card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 14px;
}

.uni-card-tag {
	padding: 3px 10px;
	border-radius: 999px;
	background: var(--openway-light);
	font-size: 11px;
	color: #6b7280;
}

.uni-card-cta {
	width: 100%;
	padding: 11px;
	border-radius: 14px;
	border: none;
	background: var(--openway-dark);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-decoration: none;
	transition: background 0.3s ease, color 0.3s ease;
	font-family: "Poppins", sans-serif;
}

.uni-card:hover .uni-card-cta {
	background: var(--openway-gold);
	color: var(--openway-dark);
	text-decoration: none;
}

@media (max-width: 991px) {
	.universities-hero-title { font-size: 48px; 	text-transform: none !important;
}
}

@media (max-width: 767px) {
	.universities-hero-section { padding: 90px 20px 70px; }
	.universities-hero-title { font-size: 36px; line-height: 1.18; 	text-transform: none !important;
}
}

/* ===============================
   SERVICES PAGE (programs.html)
================================ */
.services-hero-section {
	padding: 110px 20px 90px;
	background: var(--openway-dark);
}

.services-hero-title {
	font-family: "Playfair Display", serif;
	font-size: 64px;
	line-height: 1.08;
	color: #fff;
	margin: 12px 0 18px;
}

.services-hero-text {
	max-width: 540px;
	font-size: 17px;
	line-height: 1.9;
	color: rgba(255,255,255,0.60);
	margin: 0;
}

.services-stack {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.svc-card {
	display: grid;
	grid-template-columns: 2fr 3fr;
	gap: 40px;
	padding: 36px;
	border-radius: 28px;
	border: 1px solid var(--openway-border);
	transition: border-color 0.3s ease;
	align-items: start;
}

.svc-card:hover {
	border-color: rgba(201,168,106,0.3);
}

.svc-card-light {
	background: #fff;
}

.svc-card-dark {
	background: var(--openway-dark);
	border-color: rgba(255,255,255,0.08);
}

.svc-card-dark:hover {
	border-color: rgba(201,168,106,0.3);
}

.svc-icon-box {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	margin-bottom: 16px;
}

.svc-icon-dark {
	background: var(--openway-dark);
	color: var(--openway-gold);
}

.svc-icon-gold {
	background: var(--openway-gold);
	color: var(--openway-dark);
}

.svc-title {
	font-family: "Playfair Display", serif;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 8px;
}

.svc-card-light .svc-title { color: var(--openway-dark); }
.svc-card-dark  .svc-title { color: #fff; }

.svc-desc {
	font-size: 14px;
	line-height: 1.8;
	margin: 0;
}

.svc-card-light .svc-desc { color: #6b7280; }
.svc-card-dark  .svc-desc { color: rgba(255,255,255,0.60); }

.svc-card-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 16px;
	align-content: start;
}

.svc-feature {
	display: flex;
	align-items: center;
	gap: 8px;
}

.svc-feature i {
	color: var(--openway-gold);
	font-size: 14px;
	flex-shrink: 0;
}

.svc-card-light .svc-feature span { font-size: 14px; color: #6b7280; }
.svc-card-dark  .svc-feature span { font-size: 14px; color: rgba(255,255,255,0.70); }

.services-cta-section {
	background: var(--openway-dark) !important;
}

.svc-btn-outline {
	background: rgba(255,255,255,0.08) !important;
	border: 1px solid rgba(255,255,255,0.15) !important;
	color: #fff !important;
	transition: background 0.3s ease !important;
}

.svc-btn-outline:hover {
	background: rgba(255,255,255,0.14) !important;
	color: #fff !important;
}

@media (max-width: 991px) {
	.services-hero-title { font-size: 48px; }

	.svc-card {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

@media (max-width: 767px) {
	.services-hero-section { padding: 90px 20px 70px; }
	.services-hero-title { font-size: 36px; line-height: 1.18; }

	.svc-card {
		padding: 24px;
		border-radius: 20px;
	}

	.svc-card-features {
		grid-template-columns: 1fr;
	}
}

/* ===============================
   STUDENT LIFE CARDS
================================ */
.so-cream-section {
	background: var(--openway-light);
}

.student-life-card {
	padding: 24px 20px;
	background: #fff;
	border-radius: 24px;
	border: 1px solid var(--openway-border);
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
}

.student-life-card:hover {
	border-color: rgba(201,168,106,0.3);
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
}

.student-life-icon {
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: var(--openway-dark);
	color: var(--openway-gold);
	font-size: 18px;
	margin: 0 auto 16px;
	transition: background 0.3s ease, color 0.3s ease;
}

.student-life-card:hover .student-life-icon {
	background: var(--openway-gold);
	color: var(--openway-dark);
}

.student-life-card h5 {
	font-size: 16px;
	font-weight: 600;
	color: var(--openway-dark);
	margin-bottom: 8px;
}

.student-life-card p {
	font-size: 13px;
	line-height: 1.8;
	color: #6b7280;
	margin: 0;
}

/* ===============================
   VISA STEPS SECTION
================================ */
.visa-steps-section {
	background: linear-gradient(135deg, #161a22, #1d2230) !important;
}

.visa-steps-track {
	display: grid;
	gap: 16px;
}

.visa-step-item {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 20px;
	padding: 28px;
	transition: all 0.3s ease;
}

.visa-step-item:hover {
	background: rgba(255,255,255,0.08);
	border-color: rgba(201,168,106,0.3);
	transform: translateX(6px);
}

.visa-step-num {
	width: 54px;
	height: 54px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--openway-gold);
	color: #111;
	font-weight: 700;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.visa-step-body h5 {
	color: #fff;
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 8px;
}

.visa-step-body p {
	color: rgba(255,255,255,0.78);
	font-size: 15px;
	line-height: 1.8;
	margin: 0;
}

.visa-step-body strong {
	color: var(--openway-gold);
}

/* ===============================
   COMPARISON TABLE
================================ */
.comparison-table-wrap {
	overflow-x: auto;
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 560px;
}

.comparison-table thead tr {
	border-bottom: 2px solid var(--openway-border);
	background: transparent;
}

.comparison-table th {
	padding: 14px 16px;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	color: #6b7280;
	border: none;
}

.comparison-table th:first-child {
	text-align: left;
}

.comparison-table th.highlight-col {
	background: rgba(201,168,106,0.05);
	color: var(--openway-gold);
	font-weight: 700;
	border-radius: 12px 12px 0 0;
}

.comparison-table tbody tr:nth-child(odd) {
	background: #fff;
}

.comparison-table tbody tr:nth-child(even) {
	background: var(--openway-light);
}

.comparison-table tbody tr {
	border-bottom: 1px solid var(--openway-border);
}

.comparison-table tbody tr:last-child {
	border-bottom: none;
}

.comparison-table td {
	padding: 14px 16px;
	font-size: 14px;
	color: #6b7280;
	text-align: center;
}

.comparison-table td:first-child {
	text-align: left;
	font-weight: 500;
	color: var(--openway-dark);
}

.comparison-table td.highlight-col {
	background: rgba(201,168,106,0.05);
	font-weight: 600;
	color: var(--openway-dark);
}

.badge-good {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	background: #d4edda;
	color: #155724;
	font-size: 13px;
	font-weight: 600;
}

.badge-mid {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	background: #fff3cd;
	color: #856404;
	font-size: 13px;
	font-weight: 600;
}

.badge-hard {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 999px;
	background: #f8d7da;
	color: #721c24;
	font-size: 13px;
	font-weight: 600;
}

@media (max-width: 767px) {
	.visa-step-item {
		flex-direction: column;
		gap: 14px;
		padding: 20px;
	}

	.student-life-card {
		padding: 22px 16px;
	}
}

/* ===============================
   JOURNEY TIMELINE
================================ */
.journey-timeline-section {
	background: var(--openway-light);
	overflow: hidden;
}

.journey-header {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.journey-header.jt-visible {
	opacity: 1;
	transform: translateY(0);
}

.journey-center-line {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 1px;
	background: linear-gradient(to bottom, transparent 0%, rgba(201,168,106,0.35) 20%, rgba(201,168,106,0.35) 80%, transparent 100%);
	transform: translateX(-50%);
	z-index: 0;
}

.journey-step {
	position: relative;
	margin-bottom: 20px;
	opacity: 0;
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.journey-step.from-left  { transform: translateX(-40px); }
.journey-step.from-right { transform: translateX(40px); }
.journey-step.jt-visible { opacity: 1; transform: translateX(0); }

.journey-card {
	background: #fff;
	border-radius: 22px;
	border: 1px solid var(--openway-border);
	padding: 28px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
	position: relative;
	z-index: 1;
}

.journey-card:hover {
	border-color: rgba(201,168,106,0.4);
	box-shadow: 0 20px 44px rgba(201,168,106,0.1);
	transform: translateY(-4px);
}

.journey-card-inner {
	display: flex;
	align-items: flex-start;
	gap: 18px;
}

.journey-icon-box {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: var(--openway-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.journey-icon-box i {
	color: var(--openway-gold);
	font-size: 17px;
}

.journey-step-label {
	color: var(--openway-gold);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.journey-step-title {
	font-family: "Playfair Display", serif;
	color: var(--openway-dark);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
}

.journey-step-desc {
	color: #6b7280;
	font-size: 14px;
	line-height: 1.75;
	margin: 0;
}

.journey-dot {
	display: none;
}

@media (min-width: 992px) {
	.journey-timeline-wrap {
		padding: 10px 0;
	}

	.journey-step {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 48px;
		align-items: center;
		margin-bottom: 0;
		padding: 16px 0;
	}

	.journey-step:nth-child(odd) .journey-card  { grid-column: 1; grid-row: 1; }
	.journey-step:nth-child(even) .journey-card { grid-column: 2; grid-row: 1; }

	.journey-dot {
		display: flex;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		width: 18px;
		height: 18px;
		border-radius: 50%;
		background: var(--openway-gold);
		border: 4px solid var(--openway-light);
		z-index: 10;
	}
}

/* ===============================
   BLOG PAGE
================================ */
.blog-hero-section {
	background: var(--openway-dark);
	padding: 130px 0 80px;
}
.blog-hero-kicker {
	display: block;
	font-family: 'Poppins', sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--openway-gold);
	margin-bottom: 16px;
}
.blog-hero-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(40px, 6vw, 64px);
	color: var(--openway-light);
	line-height: 1.15;
	margin-bottom: 20px;
	text-transform: none !important;
}
.blog-hero-title em { color: var(--openway-gold); font-style: italic; }
.blog-hero-sub {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	color: rgba(248,246,242,0.6);
	max-width: 520px;
	line-height: 1.7;
	margin: 0;
}
.blog-featured-section {
	background: var(--openway-light);
	border-bottom: 1px solid var(--openway-border);
	padding: 60px 0;
}
.blog-featured-label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 28px;
	font-family: 'Poppins', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--openway-dark);
}
.blog-featured-icon { color: var(--openway-gold); font-size: 14px; }
.blog-featured-card {
	display: block;
	border-radius: 24px;
	overflow: hidden;
	aspect-ratio: 16/10;
	position: relative;
	text-decoration: none;
}
.blog-featured-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-featured-card:hover img { transform: scale(1.05); }
.blog-featured-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(22,26,34,0.9) 0%, rgba(22,26,34,0.3) 55%, transparent 100%);
}
.blog-featured-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; }
.blog-featured-title {
	font-family: 'Playfair Display', serif;
	font-size: clamp(16px, 2vw, 22px);
	color: #fff;
	font-weight: 700;
	line-height: 1.35;
	margin: 10px 0 10px;
}
.blog-featured-meta {
	display: flex; align-items: center; gap: 16px;
	font-family: 'Poppins', sans-serif; font-size: 12px; color: rgba(255,255,255,0.6);
}
.blog-filter-bar {
	position: sticky; top: 80px; z-index: 200;
	background: rgba(248,246,242,0.96);
	backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--openway-border);
	padding: 14px 0;
	box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.blog-filter-inner { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 576px) { .blog-filter-inner { flex-direction: row; align-items: center; } }
.blog-search-wrap { position: relative; flex: 1; min-width: 180px; }
.blog-search-wrap i {
	position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
	color: #aaa; font-size: 13px; pointer-events: none;
}
.blog-search-input {
	width: 100%; padding: 10px 16px 10px 38px;
	border-radius: 100px; border: 1px solid var(--openway-border);
	background: #fff; font-family: 'Poppins', sans-serif; font-size: 13px;
	outline: none; transition: border-color 0.2s;
}
.blog-search-input:focus { border-color: var(--openway-gold); }
.blog-cats-wrap { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
.blog-cats-wrap::-webkit-scrollbar { display: none; }
.blog-cat-btn {
	flex-shrink: 0; padding: 7px 16px; border-radius: 100px;
	font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 500;
	border: 1px solid var(--openway-border); background: #fff;
	cursor: pointer; color: var(--openway-text);
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.blog-cat-btn.active { background: var(--openway-dark); color: #f8f6f2; border-color: var(--openway-dark); }
.blog-cat-btn:hover:not(.active) { border-color: var(--openway-gold); }
.blog-grid-section { background: var(--openway-light); padding: 60px 0 80px; }
.blog-card {
	background: #fff; border-radius: 22px; overflow: hidden;
	border: 1px solid var(--openway-border); height: 100%;
	transition: border-color 0.3s, box-shadow 0.3s; text-decoration: none; display: block;
}
.blog-card:hover { border-color: rgba(201,168,106,0.3); box-shadow: 0 20px 44px rgba(201,168,106,0.08); text-decoration: none; }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 18px 20px 20px; }
.blog-cat-tag {
	display: inline-block; padding: 3px 10px; background: var(--openway-light);
	border-radius: 100px; font-family: 'Poppins', sans-serif; font-size: 11px; color: var(--openway-text);
}
.blog-cat-tag-gold {
	display: inline-block; padding: 3px 10px; background: rgba(201,168,106,0.9);
	color: var(--openway-dark); border-radius: 100px;
	font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 600;
}
.blog-read-time { font-family: 'Poppins', sans-serif; font-size: 11px; color: var(--openway-text); }
.blog-card-title {
	font-family: 'Playfair Display', serif; color: var(--openway-dark);
	font-size: 16px; font-weight: 600; line-height: 1.4; margin-bottom: 8px; transition: color 0.2s;
}
.blog-card:hover .blog-card-title { color: var(--openway-gold); }
.blog-card-excerpt {
	font-family: 'Poppins', sans-serif; font-size: 12.5px; color: var(--openway-text);
	line-height: 1.65; margin-bottom: 12px;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-tag { font-family: 'Poppins', sans-serif; font-size: 11.5px; color: rgba(201,168,106,0.75); }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; }
.blog-card-author { font-family: 'Poppins', sans-serif; font-size: 11.5px; color: var(--openway-text); }
.blog-read-link {
	display: flex; align-items: center; gap: 4px;
	font-family: 'Poppins', sans-serif; font-size: 11.5px; font-weight: 500;
	color: var(--openway-gold); text-decoration: none; transition: gap 0.2s;
}
.blog-card:hover .blog-read-link { gap: 8px; }
}