/* ============================================================
   AL-YAFUR - Premium Theme Layer
   Loaded after style.css. Refines typography, elevation, and
   motion on top of the existing red/orange brand identity
   without changing the underlying theme structure.
   ============================================================ */

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

:root {
	--brand-red: #0f7b5d;
	--brand-orange: #78a83b;
	--ink: #1a1a1a;
	--ink-soft: #4a4a4a;
	--surface: #ffffff;
	--surface-muted: #f7f5f3;
	--border-soft: rgba(0,0,0,0.08);
	--shadow-sm: 0 2px 10px rgba(20,20,20,0.06);
	--shadow-md: 0 10px 30px rgba(20,20,20,0.10);
	--shadow-lg: 0 18px 46px rgba(20,20,20,0.16);
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.preloader {
	animation: premiumPreloaderRelease 0.45s ease 1.8s forwards;
}

@keyframes premiumPreloaderRelease {
	to {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
}

/* ---------- Typography ---------- */
body, p, li, .text, .default-form input, .default-form textarea, .default-form select {
	font-family: 'Open Sans', 'Hind Siliguri', sans-serif;
}
h1, h2, h3, h4, h5, h6, .sec-title .title, .theme-btn {
	font-family: 'Poppins', sans-serif;
}
.text {
	line-height: 1.75;
	color: var(--ink-soft);
}

/* ---------- Section titles ---------- */
.sec-title .title {
	position: relative;
	display: inline-block;
	padding-bottom: 10px;
	letter-spacing: 0;
}
.sec-title .title:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 52px;
	height: 3px;
	border-radius: 3px;
	background-image: linear-gradient(to right, var(--brand-red), var(--brand-orange));
}
.sec-title.centered .title:after {
	left: 50%;
	transform: translateX(-50%);
}
.sec-title.light .title:after {
	background-image: linear-gradient(to right, #ffffff, var(--brand-orange));
}
.sec-title h2 {
	letter-spacing: 0;
}

/* ---------- Cursor + focus accessibility ---------- */
a, button, .theme-btn, .filter, [onclick], .btn, input[type="submit"] {
	cursor: pointer;
}
a:focus-visible, button:focus-visible, .theme-btn:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
	outline: 3px solid var(--brand-orange);
	outline-offset: 2px;
}

/* ---------- Buttons ---------- */
.theme-btn {
	transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.theme-btn.btn-style-one:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 28px rgba(15, 123, 93, 0.32);
}

/* ---------- Card elevation system (service / team / testimonial / gallery) ---------- */
.service-block .inner-box,
.service-block-two .inner-box,
.team-block .inner-box,
.testimonial-block .inner-box,
.project-block .inner-box,
.country-flag-card .flag-frame {
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.service-block:hover .inner-box,
.service-block-two:hover .inner-box,
.team-block:hover .inner-box,
.testimonial-block:hover .inner-box {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}
.project-block:hover .inner-box {
	box-shadow: var(--shadow-lg);
}

/* ---------- Image zoom on hover (gallery / team) ---------- */
.project-block .image,
.team-block .image,
.accom-item {
	overflow: hidden;
}
.project-block .image img,
.team-block .image img,
.accom-item img {
	transition: transform 0.6s var(--ease);
}
.project-block:hover .image img,
.team-block:hover .image img {
	transform: scale(1.08);
}

/* ---------- Scroll reveal (framer-motion-style fade/slide-in without React) ---------- */
.reveal-init {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
	will-change: opacity, transform;
}
.reveal-in {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.reveal-init {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ---------- Floating WhatsApp: subtle label on hover ---------- */
.floating-whatsapp-btn {
	position: fixed;
}
.floating-whatsapp-btn:before {
	content: 'Chat with us';
	position: absolute;
	right: calc(100% + 12px);
	top: 50%;
	transform: translateY(-50%) translateX(6px);
	background: var(--ink);
	color: #fff;
	font-size: 13px;
	font-family: 'Open Sans', sans-serif;
	padding: 6px 12px;
	border-radius: 6px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.floating-whatsapp-btn:hover:before {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}
@media (max-width: 767px) {
	.floating-whatsapp-btn:before { display: none; }
}

/* ---------- Job / Success Story / Interview cards polish ---------- */
.services-section-three .service-block-two .inner-box .lower-content h4 a {
	transition: color 0.2s var(--ease);
}

/* ---------- Hero (split layout: text + CTA over image, floating stat card) ---------- */
.hero-section {
	margin-bottom: 70px;
}
.hero-scrim {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(100deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.55) 42%, rgba(10,10,10,0.15) 75%);
	pointer-events: none;
	z-index: 0;
}
.main-slider .auto-container {
	z-index: 1;
}
.hero-eyebrow {
	position: relative;
	display: inline-block;
	color: #ffffff;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0;
	text-transform: uppercase;
	padding: 6px 16px;
	margin-bottom: 22px;
	border: 1px solid rgba(255,255,255,0.4);
	border-radius: 8px;
	backdrop-filter: blur(2px);
}
.main-slider .content-boxed {
	max-width: 640px;
}

.hero-stat-card {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
	transform: translateY(-45px);
	background: var(--surface);
	border-radius: 8px;
	box-shadow: var(--shadow-lg);
	padding: 28px 20px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 16px;
}
.hero-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	min-width: 120px;
}
.hero-stat-num {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 34px;
	line-height: 1.1;
	background-image: linear-gradient(to right, var(--brand-red), var(--brand-orange));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hero-stat-label {
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	color: var(--ink-soft);
	font-weight: 600;
	letter-spacing: 0;
	margin-top: 4px;
}
.hero-stat-divider {
	width: 1px;
	height: 46px;
	background: var(--border-soft);
}
@media (max-width: 767px) {
	.hero-section { margin-bottom: 40px; }
	.hero-stat-card {
		transform: translateY(-28px);
		padding: 20px 12px;
		border-radius: 8px;
	}
	.hero-stat-divider { display: none; }
	.hero-stat { min-width: 45%; }
	.hero-eyebrow { font-size: 12px; padding: 5px 12px; }
}

/* ============================================================
   Premium Homepage Redesign
   ============================================================ */

:root {
	--premium-ink: #171717;
	--premium-ink-soft: #555f66;
	--premium-charcoal: #111416;
	--premium-paper: #fbfbf8;
	--premium-surface: #ffffff;
	--premium-ruby: #0f7b5d;
	--premium-copper: #89b83f;
	--premium-teal: #1f8f72;
	--premium-line: rgba(23, 23, 23, 0.1);
	--premium-line-light: rgba(255, 255, 255, 0.16);
	--premium-shadow: 0 22px 60px rgba(17, 20, 22, 0.14);
	--premium-shadow-soft: 0 12px 30px rgba(17, 20, 22, 0.08);
}

body {
	background: var(--premium-paper);
	color: var(--premium-ink);
}

.page-wrapper {
	overflow: hidden;
}

.sec-title .title,
.sec-title h2,
.hero-eyebrow,
.hero-stat-label,
.country-name,
.job-label {
	letter-spacing: 0 !important;
}

.sec-title .title {
	color: var(--premium-teal) !important;
}

.sec-title.light .title {
	color: var(--premium-copper) !important;
}

.premium-section-title {
	margin-bottom: 44px !important;
}

.premium-section-title .text,
.premium-proof-section .sec-title .text,
.premium-interview-section .sec-title .text,
.premium-testimonial-section .sec-title .text,
.premium-contact-section .sec-title .text {
	max-width: 720px;
	margin: 16px auto 0;
	font-size: 16px;
	line-height: 1.75;
}

.theme-btn.btn-style-one,
.theme-btn.btn-style-three {
	border-radius: 8px;
	box-shadow: 0 12px 28px rgba(15, 123, 93, 0.24);
}

.theme-btn.btn-style-two {
	border-radius: 8px;
}

.btn-style-one,
.btn-style-three {
	background-image: linear-gradient(to bottom, #0f7b5d 0%, #78a83b 100%) !important;
}

.btn-style-one:before,
.btn-style-three:before {
	background-image: linear-gradient(to bottom, #1f8f72 0%, #0b6049 100%) !important;
}

.btn-style-two:hover {
	border-color: var(--premium-teal);
}

.btn-style-two:before {
	background-color: var(--premium-teal) !important;
}

a:hover,
.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a,
.main-header .header-top .top-right .login-info li a:hover,
.introduction-section .content-column .contact a:hover {
	color: var(--premium-copper);
}

.list-style-three li:before {
	color: var(--premium-teal);
}

/* Header */
.premium-header-top {
	padding: 0 !important;
	background: var(--premium-charcoal) !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 50px;
}

.premium-topbar:before,
.premium-topbar:after {
	display: none;
}

.main-header .header-top .premium-license,
.main-header .header-top .premium-top-actions {
	float: none !important;
}

.premium-license {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 14px;
	color: #ffffff;
}

.license-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 10px;
	color: #ffffff;
	font-weight: 700;
	font-size: 13px;
	border-radius: 8px;
	background: rgba(47, 127, 122, 0.32);
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.license-pill .fa {
	color: #6fd3bd;
}

.license-text,
.license-number {
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	line-height: 1.4;
}

.license-number {
	color: #f3d08a;
	font-weight: 700;
}

.premium-top-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.main-header .header-top .premium-top-actions .login-info {
	margin: 0;
}

.main-header .header-top .premium-top-actions .login-info li {
	border-right-color: rgba(255, 255, 255, 0.24);
}

.main-header .header-top .premium-top-actions .social-nav li a {
	width: 34px;
	height: 34px;
	line-height: 34px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header .header-top .premium-top-actions .social-nav li a:hover {
	background: var(--premium-ruby);
}

.main-header.header-style-one .header-lower .premium-nav-outer:before {
	left: 0;
	right: 0;
	width: 100%;
	background: rgba(11, 24, 20, 0.86);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-top: 0;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.premium-nav-outer {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 92px;
	padding: 0 22px;
}

.premium-nav-outer > * {
	position: relative;
	z-index: 1;
}

.premium-mobile-logo {
	display: none;
}

.premium-mobile-logo img {
	width: 154px;
	max-height: 58px;
	height: auto;
	object-fit: contain;
}

.premium-nav-outer:after {
	display: none;
}

.premium-nav-outer .main-menu {
	float: none;
	flex: 1 1 auto;
	min-width: 0;
}

.premium-nav-outer .navbar-collapse {
	display: block !important;
}

.premium-nav-outer .navigation {
	display: flex;
	align-items: center;
	gap: 0;
}

.premium-nav-outer .options-box {
	float: none;
	display: flex;
	align-items: center;
	gap: 18px;
	margin-left: auto;
	white-space: nowrap;
}

.premium-nav-outer .options-box:before,
.premium-nav-outer .options-box:after {
	display: none;
}

.main-menu .navigation > li.nav-logo-item {
	display: flex;
	align-items: center;
	margin-right: 28px;
}

.main-menu .navigation > li.nav-logo-item:before,
.main-menu .navigation > li.nav-logo-item:after {
	display: none;
}

.main-menu .navigation > li.nav-logo-item > a {
	display: flex;
	align-items: center;
	padding: 8px 0 !important;
}

.nav-logo-link img {
	width: 182px;
	max-height: 72px;
	height: auto;
	object-fit: contain;
}

.main-menu .navigation > li > a {
	font-weight: 600;
	text-transform: none;
	padding-left: 18px;
	padding-right: 18px;
}

.premium-sidebar-toggle {
	float: none !important;
	width: 48px;
	height: 48px !important;
	line-height: 48px !important;
	padding: 0;
	margin: 0;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	text-align: center;
}

#jobs .theme-btn {
	padding: 12px 24px;
}

#jobs {
	float: none;
	height: auto;
}

/* Hero */
.premium-home-hero {
	margin-bottom: 0;
	background: var(--premium-charcoal);
}

.premium-home-hero .hero-slide {
	min-height: 760px;
	height: auto !important;
	padding: 190px 0 150px;
	display: flex;
	align-items: center;
	background-position: center center;
	background-size: cover;
}

.premium-home-hero .hero-slide-fallback {
	background-image: url(../images/background/8.jpg);
}

.premium-home-hero .hero-scrim {
	background-image: linear-gradient(100deg, rgba(8, 10, 12, 0.92) 0%, rgba(8, 10, 12, 0.72) 43%, rgba(8, 10, 12, 0.3) 100%);
}

.premium-home-hero .auto-container {
	z-index: 2;
}

.hero-canvas {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	opacity: 0.48;
	pointer-events: none;
	mix-blend-mode: screen;
}

.hero-content-shell {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	align-items: center;
	gap: 42px;
}

.premium-home-hero .content-boxed {
	max-width: 720px;
}

.premium-home-hero .hero-eyebrow {
	margin-bottom: 18px;
	padding: 7px 12px;
	border-radius: 8px;
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.premium-home-hero h1,
.premium-home-hero .title,
.premium-home-hero .link-box {
	opacity: 1 !important;
	transform: none !important;
}

.premium-home-hero h1 {
	max-width: 760px;
	margin-bottom: 24px;
	color: #ffffff !important;
	font-family: 'Poppins', sans-serif !important;
	font-weight: 700;
	font-size: 64px;
	line-height: 1.08;
	text-wrap: balance;
}

.premium-home-hero .hero-tagline {
	width: auto !important;
	max-width: 690px;
	margin-bottom: 26px !important;
	color: rgba(255, 255, 255, 0.84) !important;
	font-family: 'Open Sans', 'Hind Siliguri', sans-serif !important;
	font-size: 20px !important;
	line-height: 1.65;
}

.hero-proof-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 34px;
}

.hero-proof-row span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 8px 12px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.11);
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof-row .fa {
	color: #7bd7c6;
}

.premium-home-hero .link-box {
	display: flex !important;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
}

.premium-home-hero .link-box .theme-btn {
	float: none;
	margin-right: 0;
	min-width: 154px;
	text-align: center;
}

.hero-assurance-panel {
	padding: 28px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
	backdrop-filter: blur(14px);
}

.assurance-label {
	color: #f4d493;
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 18px;
}

.hero-assurance-panel ul {
	margin: 0 0 22px;
}

.hero-assurance-panel li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 15px;
	line-height: 1.65;
	margin-bottom: 12px;
}

.hero-assurance-panel li .fa {
	width: 22px;
	height: 22px;
	min-width: 22px;
	line-height: 22px;
	text-align: center;
	border-radius: 50%;
	color: #ffffff;
	background: var(--premium-teal);
	font-size: 11px;
	margin-top: 1px;
}

.hero-assurance-panel a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #ffffff;
	font-weight: 700;
}

.hero-stat-card {
	position: relative;
	z-index: 3;
	max-width: 1120px;
	margin: -70px auto -32px;
	transform: none;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	padding: 18px;
	border-radius: 8px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 249, 242, 0.98));
	border: 1px solid rgba(15, 123, 93, 0.14);
	box-shadow: 0 26px 70px rgba(11, 24, 20, 0.18);
	animation: premiumDeckIn 0.9s var(--ease) both;
}

.hero-stat-card:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 4px;
	background-image: linear-gradient(to right, var(--premium-teal), var(--premium-copper), var(--premium-teal));
	background-size: 220% 100%;
	animation: premiumLineTravel 4s linear infinite;
}

.hero-stat-card:after {
	content: '';
	position: absolute;
	inset: 4px 0 0;
	background-image:
		linear-gradient(115deg, transparent 0%, transparent 45%, rgba(31, 143, 114, 0.08) 49%, transparent 53%, transparent 100%),
		linear-gradient(to right, rgba(15, 123, 93, 0.04) 1px, transparent 1px);
	background-size: 320px 100%, 160px 100%;
	background-position: -320px 0, 0 0;
	animation: premiumDeckSheen 7s ease-in-out infinite;
	pointer-events: none;
}

.hero-stat {
	position: relative;
	min-width: 0;
	align-items: flex-start;
	padding: 18px 24px 18px 76px;
	text-align: left;
	isolation: isolate;
}

.hero-stat:not(:last-child):after {
	content: '';
	position: absolute;
	right: 0;
	top: 20%;
	bottom: 20%;
	width: 1px;
	background: linear-gradient(to bottom, transparent, rgba(15, 123, 93, 0.22), transparent);
}

.hero-stat-icon {
	position: absolute;
	left: 24px;
	top: 50%;
	width: 38px;
	height: 38px;
	line-height: 38px;
	text-align: center;
	transform: translateY(-50%);
	border-radius: 8px;
	color: #ffffff;
	background: linear-gradient(135deg, var(--premium-teal), var(--premium-copper));
	box-shadow: 0 12px 24px rgba(15, 123, 93, 0.2);
	animation: premiumIconBreath 3.8s ease-in-out infinite;
}

.hero-stat-num {
	font-size: 36px;
	background-image: none;
	-webkit-text-fill-color: initial;
	color: var(--premium-ruby);
}

.hero-stat-label {
	color: var(--premium-ink-soft);
	font-size: 13px;
	font-weight: 800;
}

.hero-stat-divider {
	display: none;
}

/* Country trust band */
.premium-country-section {
	position: relative;
	padding: 78px 0 80px;
	background:
		linear-gradient(to bottom, #f7fbf5 0%, #ffffff 55%, #f8fbf5 100%);
	overflow: hidden;
}

.premium-country-section .auto-container {
	position: relative;
	z-index: 2;
}

.premium-country-section:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 1px;
	background-image: linear-gradient(to right, transparent, rgba(15, 123, 93, 0.34), transparent);
}

.country-route-canvas {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	opacity: 0.42;
	pointer-events: none;
}

.premium-country-section .sponsors-outer {
	padding: 22px 18px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(15, 123, 93, 0.12);
	box-shadow: 0 18px 46px rgba(11, 24, 20, 0.08);
	backdrop-filter: blur(8px);
}

.country-flag-card {
	text-align: center;
	margin: 10px auto;
}

.country-flag-card .flag-frame {
	width: 70px;
	height: 70px;
	margin: 0 auto 10px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid #ffffff;
	box-shadow: 0 10px 22px rgba(17, 20, 22, 0.16);
	background: #eef2f0;
	animation: premiumFlagFloat 5.5s ease-in-out infinite;
}

.country-flag-card .flag-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.country-flag-card .country-name {
	text-align: center !important;
	color: var(--premium-ink) !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	text-transform: uppercase;
}

/* Jobs */
.premium-opportunity-section {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	scroll-margin-top: 96px;
	padding: 104px 0 108px !important;
	background:
		linear-gradient(180deg, #ffffff 0%, #f4fbf0 54%, #ffffff 100%);
}

.premium-opportunity-section:before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		linear-gradient(120deg, rgba(15, 123, 93, 0.045) 1px, transparent 1px),
		linear-gradient(30deg, rgba(137, 184, 63, 0.04) 1px, transparent 1px);
	background-size: 124px 124px, 182px 182px;
	animation: premiumGeometryDrift 28s linear infinite;
}

.jobs-board-canvas {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.premium-opportunity-section .auto-container {
	position: relative;
	z-index: 2;
}

.premium-opportunity-section .premium-section-title {
	margin-bottom: 26px !important;
}

.premium-opportunity-section .premium-section-title h2 {
	color: var(--premium-ink);
	font-size: 44px;
	text-transform: none;
}

.opportunity-trust-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0 auto 44px;
}

.opportunity-trust-row span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 8px;
	color: var(--premium-ink);
	font-size: 13px;
	font-weight: 800;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(15, 123, 93, 0.13);
	box-shadow: 0 12px 28px rgba(15, 123, 93, 0.08);
}

.opportunity-trust-row .fa,
.opportunity-trust-row i {
	color: var(--premium-teal);
}

.opportunity-stats-row {
	margin-bottom: 48px;
}

.premium-vacancies-page {
	padding-top: 102px !important;
}

.service-block-two .inner-box.premium-job-card {
	position: relative;
	height: 100%;
	border-radius: 8px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 253, 241, 0.94));
	border: 1px solid rgba(15, 123, 93, 0.13);
	box-shadow: 0 18px 44px rgba(15, 123, 93, 0.1);
	overflow: hidden;
}

.service-block-two .inner-box.premium-job-card:before {
	display: block;
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 5px;
	background-image: linear-gradient(90deg, var(--premium-teal), var(--premium-copper), var(--premium-ruby), var(--premium-teal));
	background-size: 220% 100%;
	animation: premiumLineTravel 4.8s linear infinite;
}

.service-block-two .inner-box.premium-job-card:after {
	content: '';
	position: absolute;
	right: -44px;
	bottom: -50px;
	width: 140px;
	height: 140px;
	border: 1px solid rgba(15, 123, 93, 0.12);
	transform: rotate(18deg);
	animation: premiumSoftTilt 8s ease-in-out infinite;
}

.job-card-glow {
	position: absolute;
	left: 22px;
	right: 22px;
	top: 28px;
	height: 100px;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(90deg, rgba(15, 123, 93, 0.1), rgba(137, 184, 63, 0.1), transparent);
	clip-path: polygon(0 0, 100% 18%, 74% 100%, 0 72%);
	opacity: 0.72;
}

.service-block-two .inner-box.premium-job-card .lower-content {
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	flex-direction: column;
	text-align: left;
	padding: 32px;
	border: 0;
}

.service-block-two .inner-box.premium-job-card .lower-content:before {
	display: none;
}

.job-card-top {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 24px;
}

.job-icon {
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	border-radius: 8px;
	color: #ffffff;
	background-image: linear-gradient(135deg, var(--premium-teal), var(--premium-copper));
	box-shadow: 0 14px 28px rgba(15, 123, 93, 0.2);
	animation: premiumIconFloat 5.6s ease-in-out infinite;
}

.job-label {
	padding: 8px 12px;
	border-radius: 8px;
	color: var(--premium-ruby);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	background: rgba(15, 123, 93, 0.08);
}

.job-card-index {
	margin-left: auto;
	color: rgba(15, 123, 93, 0.16);
	font-family: 'Poppins', sans-serif;
	font-size: 38px;
	font-weight: 800;
	line-height: 1;
}

.premium-job-card h4 {
	min-height: 64px;
	margin-bottom: 16px;
	line-height: 1.32;
}

.premium-job-card h4 a {
	color: var(--premium-ink) !important;
}

.premium-job-card h4 a:hover {
	color: var(--premium-ruby) !important;
}

.premium-job-card .text {
	flex: 1;
	color: var(--premium-ink-soft);
	margin-bottom: 18px;
	font-size: 16px;
	line-height: 1.8;
}

.job-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 22px;
}

.job-card-meta span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 10px;
	border-radius: 8px;
	color: var(--premium-ink-soft);
	font-size: 12px;
	font-weight: 800;
	background: rgba(15, 123, 93, 0.06);
}

.job-card-meta .fa,
.job-card-meta i {
	color: var(--premium-teal);
}

.job-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 18px;
	border-top: 1px solid var(--premium-line);
}

.job-vacancy {
	color: var(--premium-ink);
	font-size: 14px;
	font-weight: 700;
}

.job-vacancy .fa {
	color: var(--premium-ruby);
	margin-right: 6px;
}

.job-apply-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	border-radius: 8px;
	color: #ffffff;
	font-weight: 800;
	background-image: linear-gradient(135deg, var(--premium-teal), var(--premium-copper));
	box-shadow: 0 12px 24px rgba(15, 123, 93, 0.16);
}

.job-apply-link:hover {
	color: #ffffff;
	transform: translateY(-2px);
}

.premium-section-action {
	margin-top: 32px;
}

.premium-section-action .theme-btn .fa {
	margin-left: 8px;
}

.premium-empty-state {
	max-width: 760px;
	margin: 0 auto;
	padding: 24px;
	text-align: center;
	border-radius: 8px;
	background: #ffffff;
	border: 1px solid var(--premium-line);
	box-shadow: var(--premium-shadow-soft);
}

.premium-empty-state p {
	margin: 0;
}

.premium-empty-state-dark {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--premium-line-light);
}

/* Director */
.premium-director-section {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	padding: 122px 0 112px;
	background:
		linear-gradient(115deg, #061a14 0%, #09291f 42%, #f8fbf3 42%, #ffffff 100%);
}

.premium-director-section:before,
.premium-director-section:after {
	content: '';
	position: absolute;
	z-index: 0;
	pointer-events: none;
}

.premium-director-section:before {
	inset: 0;
	background:
		linear-gradient(120deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
		linear-gradient(30deg, rgba(137, 184, 63, 0.09) 1px, transparent 1px);
	background-size: 126px 126px, 184px 184px;
	animation: premiumGeometryDrift 28s linear infinite;
}

.premium-director-section:after {
	right: -12%;
	top: 12%;
	width: 54%;
	height: 78%;
	border: 1px solid rgba(15, 123, 93, 0.12);
	background: linear-gradient(135deg, rgba(15, 123, 93, 0.09), rgba(137, 184, 63, 0.07));
	clip-path: polygon(18% 0, 100% 8%, 82% 100%, 0 86%);
	animation: premiumLuxuryFloat 10s ease-in-out infinite;
}

.premium-director-section .auto-container {
	position: relative;
	z-index: 2;
}

.premium-director-section .row {
	display: flex;
	align-items: center;
}

.premium-director-section .image-column .inner-column {
	position: relative;
	padding: 22px 22px 58px;
	border-radius: 8px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: 0 28px 74px rgba(0, 0, 0, 0.28);
}

.premium-director-section .image-column .inner-column:before {
	content: '';
	position: absolute;
	left: 44px;
	right: -18px;
	top: -24px;
	bottom: 84px;
	z-index: -1;
	width: auto;
	height: auto;
	border-radius: 8px;
	background: rgba(137, 184, 63, 0.15);
	border: 1px solid rgba(238, 222, 164, 0.24);
	transform: rotate(1.8deg);
	animation: premiumSoftTilt 9s ease-in-out infinite;
}

.premium-director-section .image-column .image {
	position: relative;
	overflow: visible;
	border-radius: 8px;
}

.premium-director-section .image-column .image img {
	display: block;
	width: 100%;
	border-radius: 8px;
	box-shadow: 0 24px 62px rgba(0, 0, 0, 0.34);
}

.leadership-seal {
	position: absolute;
	right: 22px;
	top: 22px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 104px;
	height: 104px;
	border-radius: 50%;
	color: #ffffff;
	text-align: center;
	background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.22), rgba(15, 123, 93, 0.95) 68%);
	border: 1px solid rgba(238, 222, 164, 0.7);
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
	animation: premiumSealPulse 4.8s ease-in-out infinite;
}

.leadership-seal .fa {
	margin-bottom: 4px;
	color: #eedea4;
	font-size: 22px;
}

.leadership-seal strong {
	font-size: 18px;
	letter-spacing: 0;
	line-height: 1;
}

.leadership-seal small {
	margin-top: 2px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.premium-director-section .image-column .image .projects {
	left: 28px;
	right: 28px;
	bottom: -34px;
	display: block;
	padding: 22px 26px;
	overflow: hidden;
	border-radius: 8px;
	color: #ffffff;
	font-size: 23px;
	background-image: linear-gradient(135deg, rgba(6, 26, 20, 0.96), rgba(15, 123, 93, 0.95));
	border: 1px solid rgba(238, 222, 164, 0.22);
	box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.premium-director-section .image-column .image .projects:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 3px;
	background-image: linear-gradient(90deg, #eedea4, var(--premium-copper), var(--premium-teal), #eedea4);
	background-size: 220% 100%;
	animation: premiumLineTravel 4.8s linear infinite;
}

.premium-director-section .image-column .image .projects span {
	display: block;
	margin-top: 5px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 800;
}

.premium-director-section .content-column .inner-column {
	position: relative;
	margin-left: 28px;
	padding: 46px 48px 42px;
	overflow: hidden;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(15, 123, 93, 0.13);
	box-shadow: 0 26px 70px rgba(15, 123, 93, 0.13);
}

.premium-director-section .content-column .inner-column:before {
	content: "\f10d";
	position: absolute;
	right: 28px;
	top: 18px;
	color: rgba(15, 123, 93, 0.06);
	font-family: FontAwesome;
	font-size: 92px;
	line-height: 1;
	pointer-events: none;
}

.premium-director-section .content-column .inner-column > * {
	position: relative;
	z-index: 1;
}

.premium-director-section .sec-title {
	margin-bottom: 22px;
}

.premium-director-section .sec-title h2 {
	max-width: 620px;
	color: var(--premium-ink);
	font-size: 44px;
	line-height: 1.18;
}

.leadership-proof-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 26px;
}

.leadership-proof-strip span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 12px;
	border-radius: 8px;
	color: var(--premium-ink);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	background: rgba(15, 123, 93, 0.06);
	border: 1px solid rgba(15, 123, 93, 0.12);
}

.leadership-proof-strip .fa {
	color: var(--premium-teal);
}

.premium-director-section .content-column .text p {
	color: var(--premium-ink-soft);
	font-size: 16px;
	line-height: 1.85;
}

.director-quote {
	text-align: left;
}

.director-signoff {
	margin-top: 18px;
	line-height: 1.55 !important;
	color: var(--premium-ink) !important;
}

.leadership-capabilities {
	margin-top: 20px;
}

.premium-director-section .list-style-three {
	margin-bottom: 0;
}

.premium-director-section .list-style-three li {
	margin-bottom: 12px;
	padding: 12px 14px 12px 38px;
	border-radius: 8px;
	color: var(--premium-ink);
	font-size: 14px;
	font-weight: 800;
	background: linear-gradient(135deg, rgba(15, 123, 93, 0.07), rgba(137, 184, 63, 0.06));
	border: 1px solid rgba(15, 123, 93, 0.1);
}

.premium-director-section .list-style-three li:before {
	left: 14px;
	color: var(--premium-teal);
}

.premium-director-section .content-column .contact {
	margin-top: 22px;
	padding: 22px 24px;
	border: 0;
	border-radius: 8px;
	color: var(--premium-ink);
	font-size: 24px;
	font-weight: 800;
	background: linear-gradient(135deg, rgba(15, 123, 93, 0.09), rgba(137, 184, 63, 0.12));
	box-shadow: inset 0 0 0 1px rgba(15, 123, 93, 0.08);
}

.premium-director-section .content-column .contact .question {
	display: block;
	margin-bottom: 10px;
	color: var(--premium-teal);
	font-size: 16px;
	font-weight: 800;
}

.premium-director-section .content-column .contact a {
	color: var(--premium-ruby);
}

/* Proof counters, interviews, and feedback */
.premium-proof-section,
.premium-interview-section,
.premium-testimonial-section {
	overflow: hidden;
	isolation: isolate;
	scroll-margin-top: 96px;
}

.premium-proof-section,
.premium-interview-section {
	background-attachment: scroll;
	background-color: #f7fbf3;
}

.premium-proof-section {
	padding: 104px 0 82px;
}

.premium-interview-section {
	padding: 98px 0 80px !important;
}

.premium-proof-section:before,
.premium-interview-section:before {
	z-index: 0;
	background:
		linear-gradient(135deg, rgba(250, 254, 247, 0.98), rgba(255, 255, 255, 0.96) 54%, rgba(238, 249, 234, 0.98));
}

.premium-proof-section:after,
.premium-interview-section:after,
.premium-testimonial-section:before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		linear-gradient(120deg, rgba(15, 123, 93, 0.06) 1px, transparent 1px),
		linear-gradient(30deg, rgba(137, 184, 63, 0.05) 1px, transparent 1px);
	background-size: 118px 118px, 172px 172px;
	animation: premiumGeometryDrift 24s linear infinite;
}

.premium-testimonial-section:before {
	background-image:
		linear-gradient(120deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
		linear-gradient(30deg, rgba(238, 222, 164, 0.06) 1px, transparent 1px);
	opacity: 0.8;
}

.section-geometry-canvas,
.feedback-canvas,
.leadership-canvas {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.premium-proof-section .auto-container,
.premium-interview-section .auto-container,
.premium-testimonial-section .auto-container,
.premium-testimonial-section .patern-layer {
	position: relative;
	z-index: 2;
}

.premium-proof-section .sec-title h2,
.premium-interview-section .sec-title h2 {
	color: var(--premium-ink);
}

.premium-proof-section .sec-title .text,
.premium-interview-section .sec-title .text {
	color: var(--premium-ink-soft);
}

.premium-proof-section .fact-counter .row {
	display: flex;
	align-items: stretch;
}

.premium-proof-section .fact-counter .column {
	display: flex;
}

.premium-proof-section .fact-counter .column .inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 212px;
	padding: 34px 28px 30px;
	text-align: left;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 253, 240, 0.92));
	border: 1px solid rgba(15, 123, 93, 0.14);
	box-shadow: 0 18px 44px rgba(15, 123, 93, 0.1);
}

.premium-proof-section .fact-counter .column .inner:before {
	z-index: 1;
	width: 100%;
	height: 4px;
	background-image: linear-gradient(90deg, var(--premium-teal), var(--premium-copper), var(--premium-ruby), var(--premium-teal));
	background-size: 220% 100%;
	animation: premiumLineTravel 4s linear infinite;
}

.premium-proof-section .fact-counter .column .inner:after {
	content: '';
	position: absolute;
	right: -36px;
	bottom: -42px;
	width: 128px;
	height: 128px;
	border: 1px solid rgba(15, 123, 93, 0.14);
	transform: rotate(18deg);
	animation: premiumSoftTilt 8s ease-in-out infinite;
}

.premium-proof-section .fact-counter .column .inner > * {
	position: relative;
	z-index: 2;
}

.premium-proof-section .fact-counter .column .inner:hover {
	transform: translateY(-7px);
	border-color: rgba(15, 123, 93, 0.28);
	box-shadow: 0 24px 54px rgba(15, 123, 93, 0.16);
}

.proof-stat-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
	border-radius: 8px;
	color: #ffffff;
	font-size: 21px;
	background-image: linear-gradient(135deg, var(--premium-teal), var(--premium-copper));
	box-shadow: 0 14px 28px rgba(15, 123, 93, 0.2);
	animation: premiumIconFloat 5.5s ease-in-out infinite;
}

.premium-proof-section .fact-counter .column:nth-child(2) .proof-stat-icon {
	animation-delay: 0.45s;
}

.premium-proof-section .fact-counter .column:nth-child(3) .proof-stat-icon {
	animation-delay: 0.9s;
}

.premium-proof-section .fact-counter .column:nth-child(4) .proof-stat-icon {
	animation-delay: 1.35s;
}

.premium-proof-section .fact-counter .count-outer {
	color: var(--premium-ink);
	font-size: 44px;
	line-height: 1.1;
}

.premium-proof-section .fact-counter .count-outer .count-text {
	color: var(--premium-ink);
}

.premium-proof-section .fact-counter .column .counter-title {
	margin-top: 12px;
	color: var(--premium-ink-soft);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.45;
	text-transform: uppercase;
}

.premium-interview-section .column {
	margin-bottom: 24px;
}

.premium-interview-card {
	position: relative;
	height: 100%;
	padding: 30px 30px 28px;
	overflow: hidden;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(15, 123, 93, 0.13);
	box-shadow: 0 18px 44px rgba(15, 123, 93, 0.1);
}

.premium-interview-card:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 4px;
	background-image: linear-gradient(90deg, var(--premium-teal), var(--premium-copper), var(--premium-teal));
	background-size: 220% 100%;
	animation: premiumLineTravel 4.8s linear infinite;
}

.premium-interview-card:after {
	content: '';
	position: absolute;
	right: -34px;
	top: 24px;
	width: 94px;
	height: 94px;
	border: 1px solid rgba(137, 184, 63, 0.2);
	transform: rotate(45deg);
	animation: premiumSoftTilt 7s ease-in-out infinite reverse;
}

.interview-title,
.interview-country,
.interview-meta {
	position: relative;
	z-index: 1;
}

.interview-title {
	color: var(--premium-ink);
	font-family: 'Poppins', sans-serif;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 13px;
}

.interview-country {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 12px;
	border-radius: 8px;
	color: var(--premium-ruby);
	background: rgba(15, 123, 93, 0.08);
	font-weight: 800;
	margin-bottom: 16px;
}

.interview-meta {
	display: flex;
	gap: 10px;
	color: var(--premium-ink-soft);
	line-height: 1.55;
	margin-bottom: 8px;
}

.interview-meta .fa {
	width: 18px;
	color: var(--premium-teal);
	margin-top: 4px;
}

.premium-empty-state {
	position: relative;
	z-index: 2;
	border-color: rgba(15, 123, 93, 0.14);
	box-shadow: 0 16px 38px rgba(15, 123, 93, 0.09);
}

/* Testimonials and accommodation */
.premium-testimonial-section {
	position: relative;
	padding: 108px 0 104px !important;
	background:
		linear-gradient(180deg, #061a14 0%, #0b2c22 54%, #f7fbf2 54%, #ffffff 100%);
}

.premium-testimonial-section .patern-layer {
	opacity: 0.08;
	filter: invert(0);
	mix-blend-mode: screen;
	pointer-events: none;
}

.premium-testimonial-section > .auto-container > .sec-title .title {
	color: #b9df77 !important;
}

.premium-testimonial-section > .auto-container > .sec-title h2 {
	color: #ffffff;
	text-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.premium-testimonial-section > .auto-container > .sec-title .text {
	color: rgba(255, 255, 255, 0.78);
}

.premium-testimonial-section .testimonial-outer {
	position: relative;
	z-index: 2;
	max-width: 1120px;
	margin: 0 auto;
	padding: 34px 36px 38px;
	overflow: hidden;
	border-radius: 8px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
	border: 1px solid rgba(238, 222, 164, 0.2);
	box-shadow: 0 32px 88px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(12px);
}

.testimonial-luxury-head {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 24px;
}

.testimonial-luxury-head span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 13px;
	border-radius: 8px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	background: rgba(6, 26, 20, 0.55);
	border: 1px solid rgba(238, 222, 164, 0.18);
}

.testimonial-luxury-head .fa {
	color: #eedea4;
}

.thumb-item .avatar-frame,
.testimonial-block .avatar-frame {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 14px;
	border: 2px solid rgba(238, 222, 164, 0.68);
	background: #ffffff;
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
	transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.thumb-item .avatar-frame img,
.testimonial-block .avatar-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.thumb-item .avatar-frame .fa-user,
.testimonial-block .avatar-frame .fa-user {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 31px;
	color: rgba(15, 123, 93, 0.62);
	line-height: 1;
}

.premium-thumb-item {
	position: relative;
	margin-top: 0;
	display: flex;
	align-items: center;
	min-height: 96px;
	padding: 14px 18px;
	border-radius: 8px;
	text-align: left;
	background: rgba(6, 26, 20, 0.62);
	border: 1px solid rgba(238, 222, 164, 0.16);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
	cursor: pointer;
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.premium-thumb-item:before {
	content: '';
	position: absolute;
	left: 16px;
	right: 16px;
	top: 0;
	height: 3px;
	border-radius: 0 0 3px 3px;
	background-image: linear-gradient(90deg, #eedea4, var(--premium-copper), var(--premium-teal));
	opacity: 0;
	transform: scaleX(0.35);
	transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.premium-testimonial-section .client-thumb-outer {
	max-width: 460px;
	margin: 0 auto 18px;
	overflow: hidden;
	padding-top: 0;
}

.premium-testimonial-section .client-thumb-outer .client-thumbs-carousel {
	max-width: 380px;
	margin: 0 auto;
}

.premium-testimonial-section .client-thumbs-carousel,
.premium-testimonial-section .client-testimonial-carousel {
	display: block;
}

.premium-testimonial-section .client-thumbs-carousel:not(.owl-loaded) {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 16px;
	max-width: 720px;
}

.premium-testimonial-section .client-testimonial-carousel:not(.owl-loaded) .testimonial-block:not(:first-child) {
	display: none;
}

.premium-testimonial-section .client-thumb-outer .owl-stage-outer {
	overflow: hidden !important;
}

.premium-thumb-item .avatar-frame {
	flex: 0 0 58px;
	width: 58px;
	height: 58px;
	margin: 0 14px 0 0;
}

.testimonial-section .client-thumb-outer .thumb-item .author-info {
	min-width: 0;
	margin-left: 0;
	margin-right: 0;
	padding-top: 0;
}

.testimonial-section .client-thumb-outer .thumb-item .author-info .author-name {
	color: #ffffff;
	font-size: 16px;
	letter-spacing: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.testimonial-section .client-thumb-outer .thumb-item .author-info .designation {
	color: rgba(238, 222, 164, 0.82);
	font-size: 12px;
	text-transform: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.premium-testimonial-section .client-thumb-outer .owl-item.center .premium-thumb-item,
.premium-testimonial-section .client-thumb-outer .owl-item:hover .premium-thumb-item {
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(238, 222, 164, 0.38);
	box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.premium-testimonial-section .client-thumb-outer .owl-item.center .premium-thumb-item:before,
.premium-testimonial-section .client-thumb-outer .owl-item:hover .premium-thumb-item:before {
	opacity: 1;
	transform: scaleX(1);
}

.premium-testimonial-section .client-thumb-outer .owl-item.center .avatar-frame,
.premium-testimonial-section .client-thumb-outer .owl-item:hover .avatar-frame {
	transform: translateY(-2px) scale(1.05);
	border-color: #eedea4;
	box-shadow: 0 18px 34px rgba(238, 222, 164, 0.18);
}

.premium-testimonial-section .client-testimonial-carousel .owl-stage-outer {
	overflow: hidden !important;
	padding: 4px 0 6px;
}

.premium-testimonial-section .client-testimonial-carousel .owl-item {
	opacity: 1;
	pointer-events: auto;
	transition: transform 0.35s var(--ease);
}

.premium-testimonial-section .client-testimonial-carousel .owl-item.active {
	transform: translateY(-2px);
}

.testimonial-block .inner-box {
	position: relative;
	max-width: 960px;
	margin: 0 auto;
	padding: 54px 58px 46px;
	overflow: hidden;
	border-radius: 8px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(248, 253, 243, 0.97));
	border: 1px solid rgba(238, 222, 164, 0.46);
	box-shadow: 0 30px 76px rgba(0, 0, 0, 0.24);
}

.testimonial-block .inner-box:before {
	display: block;
	left: 30px;
	right: 30px;
	top: 0;
	width: auto;
	height: 4px;
	background-image: linear-gradient(90deg, #eedea4, var(--premium-copper), var(--premium-teal), #eedea4);
	background-size: 220% 100%;
	animation: premiumLineTravel 5s linear infinite;
}

.testimonial-block .inner-box:after {
	content: "\f10d";
	position: absolute;
	right: 34px;
	top: 18px;
	color: rgba(15, 123, 93, 0.08);
	font-family: FontAwesome;
	font-size: 88px;
	line-height: 1;
	pointer-events: none;
}

.testimonial-block .inner-box .text {
	max-width: 780px;
	margin: 0 auto;
	color: var(--premium-ink-soft);
	font-size: 19px;
	line-height: 1.85;
}

.testimonial-meta-line {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 24px;
}

.testimonial-meta-line span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	border-radius: 8px;
	color: var(--premium-ink);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	background: rgba(15, 123, 93, 0.06);
	border: 1px solid rgba(15, 123, 93, 0.1);
}

.testimonial-meta-line .fa {
	color: var(--premium-teal);
}

.premium-empty-feedback {
	text-align: center;
}

.premium-feedback-empty-card {
	position: relative;
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 18px 28px;
	align-items: center;
	max-width: 920px;
	margin: 4px auto 0;
	padding: 38px 42px 34px;
	overflow: hidden;
	border-radius: 8px;
	text-align: left;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 253, 241, 0.94)),
		radial-gradient(circle at 90% 10%, rgba(238, 222, 164, 0.3), transparent 38%);
	border: 1px solid rgba(238, 222, 164, 0.46);
	box-shadow: 0 30px 78px rgba(0, 0, 0, 0.24);
}

.premium-feedback-empty-card:before {
	content: '';
	position: absolute;
	left: 30px;
	right: 30px;
	top: 0;
	height: 4px;
	border-radius: 0 0 4px 4px;
	background-image: linear-gradient(90deg, #eedea4, var(--premium-copper), var(--premium-teal), #eedea4);
	background-size: 220% 100%;
	animation: premiumLineTravel 5s linear infinite;
}

.premium-feedback-empty-card:after {
	content: "\f10e";
	position: absolute;
	right: 28px;
	top: 18px;
	color: rgba(15, 123, 93, 0.07);
	font-family: FontAwesome;
	font-size: 102px;
	line-height: 1;
}

.feedback-empty-icon,
.feedback-empty-copy,
.feedback-empty-metrics {
	position: relative;
	z-index: 1;
}

.feedback-empty-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 78px;
	height: 78px;
	border-radius: 50%;
	color: #ffffff;
	font-size: 28px;
	background-image: linear-gradient(135deg, var(--premium-teal), var(--premium-copper));
	box-shadow: 0 18px 36px rgba(15, 123, 93, 0.22);
	animation: premiumQuotePulse 3.8s ease-in-out infinite;
}

.feedback-empty-copy {
	max-width: 650px;
}

.feedback-empty-kicker {
	display: inline-block;
	margin-bottom: 8px;
	color: var(--premium-teal);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.feedback-empty-copy h3 {
	margin-bottom: 8px;
	color: var(--premium-ink);
	font-size: 28px;
	line-height: 1.28;
}

.feedback-empty-copy p {
	margin-bottom: 0;
	color: var(--premium-ink-soft);
	font-size: 16px;
	line-height: 1.75;
}

.feedback-empty-metrics {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 10px;
}

.feedback-empty-metrics span {
	display: block;
	padding: 14px 16px;
	border-radius: 8px;
	color: var(--premium-ink-soft);
	font-size: 13px;
	font-weight: 700;
	background: rgba(15, 123, 93, 0.06);
	border: 1px solid rgba(15, 123, 93, 0.1);
}

.feedback-empty-metrics strong {
	display: block;
	color: var(--premium-teal);
	font-family: 'Poppins', sans-serif;
	font-size: 18px;
	line-height: 1.2;
}

.testimonial-block .inner-box .quote-outer {
	margin-top: 28px;
}

.testimonial-block .inner-box .quote-outer:before {
	background-image: linear-gradient(90deg, rgba(15, 123, 93, 0.1), var(--premium-copper), rgba(15, 123, 93, 0.1));
}

.testimonial-block .inner-box .quote-outer .quote-icon {
	color: #ffffff;
	background-image: linear-gradient(135deg, var(--premium-teal), var(--premium-copper));
	box-shadow: 0 12px 24px rgba(15, 123, 93, 0.2);
	animation: premiumQuotePulse 3.6s ease-in-out infinite;
}

.testimonial-block .inner-box .rating .fa {
	color: var(--premium-copper);
	animation: premiumStarTwinkle 2.8s ease-in-out infinite;
}

.testimonial-block .inner-box .rating .fa:nth-child(2) {
	animation-delay: 0.12s;
}

.testimonial-block .inner-box .rating .fa:nth-child(3) {
	animation-delay: 0.24s;
}

.testimonial-block .inner-box .rating .fa:nth-child(4) {
	animation-delay: 0.36s;
}

.testimonial-block .inner-box .rating .fa:nth-child(5) {
	animation-delay: 0.48s;
}

.premium-testimonial-section .client-testimonial-carousel .owl-nav,
.premium-testimonial-section .client-testimonial-carousel .owl-dots {
	display: flex !important;
	align-items: center;
	justify-content: center;
}

.premium-testimonial-section .client-testimonial-carousel .owl-nav {
	gap: 12px;
	margin-top: 22px;
}

.premium-testimonial-section .client-testimonial-carousel .owl-nav .owl-prev,
.premium-testimonial-section .client-testimonial-carousel .owl-nav .owl-next {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 8px;
	color: #eedea4;
	background: rgba(6, 26, 20, 0.72);
	border: 1px solid rgba(238, 222, 164, 0.24);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
	transition: transform 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}

.premium-testimonial-section .client-testimonial-carousel .owl-nav .owl-prev:hover,
.premium-testimonial-section .client-testimonial-carousel .owl-nav .owl-next:hover {
	transform: translateY(-3px);
	color: #ffffff;
	background: var(--premium-teal);
	border-color: rgba(238, 222, 164, 0.4);
}

.premium-testimonial-section .client-testimonial-carousel .owl-dots {
	gap: 8px;
	margin-top: 18px;
}

.premium-testimonial-section .client-testimonial-carousel .owl-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.24);
	transition: width 0.25s var(--ease), background 0.25s var(--ease);
}

.premium-testimonial-section .client-testimonial-carousel .owl-dot.active {
	width: 26px;
	border-radius: 999px;
	background: linear-gradient(90deg, #eedea4, var(--premium-copper));
}

.feedback-action {
	margin-top: 34px;
	text-align: center;
}

.feedback-action .theme-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding-left: 32px;
	padding-right: 32px;
	color: #ffffff !important;
	background-image: linear-gradient(135deg, var(--premium-teal), var(--premium-copper));
	border: 1px solid rgba(238, 222, 164, 0.2);
	animation: premiumButtonGlow 4.2s ease-in-out infinite;
}

.feedback-action .theme-btn:after {
	content: "\f044";
	position: relative;
	font-family: FontAwesome;
	font-size: 15px;
	z-index: 1;
}

.premium-accommodation-gallery {
	position: relative;
	z-index: 2;
	margin-top: 92px;
	padding: 0;
	border-top: 0;
}

.comfort-showcase-shell {
	position: relative;
	overflow: hidden;
	padding: 72px 54px 60px;
	border-radius: 8px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 253, 242, 0.94)),
		radial-gradient(circle at 12% 12%, rgba(15, 123, 93, 0.1), transparent 26%);
	border: 1px solid rgba(15, 123, 93, 0.12);
	box-shadow: 0 30px 80px rgba(15, 123, 93, 0.12);
}

.comfort-showcase-shell:before {
	content: '';
	position: absolute;
	left: 36px;
	right: 36px;
	top: 0;
	height: 4px;
	background-image: linear-gradient(90deg, var(--premium-teal), var(--premium-copper), #eedea4, var(--premium-teal));
	background-size: 220% 100%;
	animation: premiumLineTravel 5.2s linear infinite;
}

.comfort-showcase-shell:after {
	content: '';
	position: absolute;
	right: -70px;
	top: 34px;
	width: 220px;
	height: 220px;
	border: 1px solid rgba(15, 123, 93, 0.1);
	transform: rotate(18deg);
	animation: premiumLuxuryFloat 11s ease-in-out infinite;
}

.comfort-showcase-shell > * {
	position: relative;
	z-index: 1;
}

.premium-testimonial-section .premium-accommodation-gallery .sec-title .title {
	color: var(--premium-teal) !important;
}

.premium-testimonial-section .premium-accommodation-gallery .sec-title h2 {
	color: var(--premium-ink) !important;
}

.premium-testimonial-section .premium-accommodation-gallery .sec-title .text {
	color: var(--premium-ink-soft) !important;
}

.comfort-proof-row {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: -16px 0 34px;
}

.comfort-proof-row span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 13px;
	border-radius: 8px;
	color: var(--premium-ink);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	background: rgba(15, 123, 93, 0.06);
	border: 1px solid rgba(15, 123, 93, 0.1);
}

.comfort-proof-row .fa {
	color: var(--premium-teal);
}

.premium-accom-item {
	margin-bottom: 24px;
}

.premium-accom-card {
	height: 100%;
	overflow: hidden;
	border-radius: 8px;
	background: #ffffff;
	border: 1px solid rgba(15, 123, 93, 0.12);
	box-shadow: 0 18px 42px rgba(15, 123, 93, 0.1);
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.premium-accom-card img {
	width: 100%;
	height: 238px;
	object-fit: cover;
	border-radius: 0;
	border: 0;
	box-shadow: none;
}

.premium-accom-item:hover .premium-accom-card {
	transform: translateY(-6px);
	box-shadow: 0 24px 58px rgba(15, 123, 93, 0.16);
	border-color: rgba(15, 123, 93, 0.24);
}

.premium-accom-item:hover .premium-accom-card img {
	transform: scale(1.05);
}

.accom-card-copy {
	padding: 22px 22px 24px;
}

.accom-card-copy h4 {
	margin: 0 0 8px;
	color: var(--premium-ink);
	font-size: 18px;
	font-weight: 800;
}

.accom-card-copy p {
	margin: 0;
	color: var(--premium-ink-soft);
	font-size: 14px;
	line-height: 1.65;
}

.premium-comfort-empty,
.premium-success-empty {
	padding: 38px 34px;
	overflow: hidden;
	background:
		linear-gradient(145deg, #ffffff, #f7fbf2);
	border: 1px solid rgba(15, 123, 93, 0.13);
	box-shadow: 0 22px 58px rgba(15, 123, 93, 0.1);
}

.premium-comfort-empty .fa,
.premium-success-empty .fa {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin-bottom: 18px;
	border-radius: 50%;
	color: #ffffff;
	font-size: 24px;
	background-image: linear-gradient(135deg, var(--premium-teal), var(--premium-copper));
	box-shadow: 0 16px 34px rgba(15, 123, 93, 0.18);
}

.premium-comfort-empty h4,
.premium-success-empty h4 {
	margin-bottom: 10px;
	color: var(--premium-ink);
	font-size: 21px;
	font-weight: 800;
}

.premium-comfort-empty p,
.premium-success-empty p {
	margin-bottom: 0;
	color: var(--premium-ink-soft);
}

.feedback-photo-label {
	display: block;
	text-align: left;
	margin-bottom: 4px;
}

#myModal .modal-content {
	overflow: hidden;
	border: 0;
	border-radius: 8px;
	box-shadow: 0 26px 70px rgba(17, 20, 22, 0.22);
}

#myModal .modal-header {
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 20px 24px;
	color: #ffffff;
	background-image: linear-gradient(135deg, var(--premium-ruby), var(--premium-copper));
}

#myModal .modal-title {
	color: #ffffff;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
}

#myModal .close {
	color: #ffffff;
	opacity: 1;
	text-shadow: none;
}

#myModal .modal-body {
	padding: 26px 24px 8px;
	background: #fbfdf8;
}

#myModal .form-control {
	border-radius: 8px;
	border-color: rgba(15, 123, 93, 0.16);
	box-shadow: none;
}

#myModal .form-control:focus {
	border-color: var(--premium-teal);
	box-shadow: 0 0 0 3px rgba(15, 123, 93, 0.1);
}

#myModal .modal-footer {
	justify-content: center;
	border-top: 0;
	background: #fbfdf8;
}

#myModal .btn-info {
	min-width: 170px;
	padding: 12px 24px;
	border: 0;
	border-radius: 8px;
	font-weight: 700;
	background-image: linear-gradient(135deg, var(--premium-teal), var(--premium-copper));
	box-shadow: 0 12px 26px rgba(15, 123, 93, 0.24);
}

/* Premium gallery and certificates pages */
.premium-subpage-hero {
	position: relative;
	min-height: 328px;
	overflow: hidden;
	isolation: isolate;
	padding: 124px 0 82px;
	background-attachment: scroll !important;
}

.premium-subpage-hero:before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(110deg, rgba(6, 35, 29, 0.9), rgba(15, 123, 93, 0.78) 50%, rgba(137, 184, 63, 0.64)),
		linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.05));
}

.premium-subpage-hero:after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background-image:
		linear-gradient(120deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
		linear-gradient(30deg, rgba(137, 184, 63, 0.12) 1px, transparent 1px);
	background-size: 132px 132px, 188px 188px;
	animation: premiumGeometryDrift 26s linear infinite;
}

.premium-subpage-hero .subpage-hero-canvas {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.premium-subpage-hero .auto-container {
	position: relative;
	z-index: 3;
}

.premium-subpage-hero .title {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	color: rgba(220, 249, 228, 0.92);
	font-family: 'Poppins', sans-serif;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.premium-subpage-hero h2 {
	margin-bottom: 18px;
	color: #ffffff;
	font-size: 54px;
	text-transform: none;
	text-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.premium-page-kpis {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 720px;
}

.premium-page-kpis span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 8px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	background: rgba(255, 255, 255, 0.13);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(10px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.premium-page-kpis .fa {
	color: #d8f5c5;
}

.premium-subpage-hero .page-breadcrumb {
	padding: 12px 16px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(10px);
}

.premium-subpage-hero .page-breadcrumb li,
.premium-subpage-hero .page-breadcrumb li a {
	color: rgba(255, 255, 255, 0.9);
}

.premium-gallery-page,
.premium-certificates-page {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	padding: 104px 0 96px;
	background:
		linear-gradient(180deg, #ffffff 0%, #f4fbf0 52%, #ffffff 100%);
}

.premium-gallery-page:before,
.premium-certificates-page:before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		linear-gradient(120deg, rgba(15, 123, 93, 0.045) 1px, transparent 1px),
		linear-gradient(30deg, rgba(137, 184, 63, 0.04) 1px, transparent 1px);
	background-size: 122px 122px, 176px 176px;
	animation: premiumGeometryDrift 28s linear infinite reverse;
}

.premium-gallery-page .page-gallery-canvas,
.premium-certificates-page .page-gallery-canvas {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.premium-gallery-page .auto-container,
.premium-certificates-page .auto-container {
	position: relative;
	z-index: 2;
}

.premium-gallery-page .sec-title,
.premium-certificates-page .sec-title {
	margin-bottom: 44px;
}

.premium-gallery-page .sec-title h2,
.premium-certificates-page .sec-title h2 {
	color: var(--premium-ink);
	font-size: 42px;
	text-transform: none;
}

.premium-gallery-page .sec-title .text,
.premium-certificates-page .sec-title .text {
	max-width: 760px;
	margin: 16px auto 0;
	color: var(--premium-ink-soft);
	font-size: 16px;
	line-height: 1.75;
}

.premium-filter-gallery .filters {
	margin-bottom: 46px;
}

.premium-filter-gallery .filters .filter-tabs {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	padding: 8px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(15, 123, 93, 0.12);
	box-shadow: 0 16px 38px rgba(15, 123, 93, 0.1);
}

.premium-filter-gallery .filters li {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 18px;
	border-radius: 8px;
	color: var(--premium-ink-soft);
	font-weight: 800;
	letter-spacing: 0;
}

.premium-filter-gallery .filters .filter.active,
.premium-filter-gallery .filters .filter:hover {
	color: #ffffff;
	background-image: linear-gradient(135deg, var(--premium-teal), var(--premium-copper));
	box-shadow: 0 12px 26px rgba(15, 123, 93, 0.18);
}

.premium-media-card {
	margin-bottom: 32px;
}

.premium-media-card .inner-box {
	height: 100%;
	overflow: hidden;
	border-radius: 8px;
	background: #ffffff;
	border: 1px solid rgba(15, 123, 93, 0.13);
	box-shadow: 0 18px 44px rgba(15, 123, 93, 0.1);
}

.premium-media-card:hover .inner-box {
	transform: translateY(-7px);
	border-color: rgba(15, 123, 93, 0.26);
	box-shadow: 0 26px 60px rgba(15, 123, 93, 0.16);
}

.premium-media-card .inner-box .image {
	position: relative;
	min-height: 360px;
	background:
		linear-gradient(135deg, rgba(15, 123, 93, 0.08), rgba(137, 184, 63, 0.08)),
		#f8fbf5;
	overflow: hidden;
}

.premium-media-card .inner-box .image:after {
	content: '';
	position: absolute;
	left: -80%;
	top: 0;
	width: 48%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.32), transparent);
	transform: skewX(-16deg);
	transition: left 0.75s var(--ease);
}

.premium-media-card:hover .inner-box .image:after {
	left: 128%;
}

.premium-media-card .inner-box .image img {
	position: relative;
	z-index: 0;
	width: 100%;
	height: 384px;
	object-fit: cover;
}

.premium-certificate-card .inner-box .image img {
	object-fit: contain;
	padding: 24px;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(244, 251, 240, 0.92));
}

.gallery-category-pill {
	position: absolute;
	left: 18px;
	top: 18px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	max-width: calc(100% - 36px);
	padding: 8px 12px;
	border-radius: 8px;
	color: #ffffff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
	background: rgba(15, 123, 93, 0.92);
	box-shadow: 0 12px 24px rgba(15, 123, 93, 0.18);
}

.certificate-pill {
	background-image: linear-gradient(135deg, var(--premium-teal), var(--premium-copper));
}

.premium-media-card .inner-box .image .overlay-box {
	z-index: 4;
	padding: 28px;
	transform: translateY(100%);
	transform-origin: center bottom;
}

.premium-media-card .inner-box:hover .image .overlay-box {
	transform: translateY(0);
	transform-origin: center bottom;
}

.premium-media-card .inner-box .image .overlay-box:before {
	opacity: 1;
	background:
		linear-gradient(145deg, rgba(6, 35, 29, 0.86), rgba(15, 123, 93, 0.82) 60%, rgba(137, 184, 63, 0.76));
	backdrop-filter: blur(8px);
}

.premium-media-card .inner-box .image .overlay-box .overlay-inner {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.premium-media-card .inner-box .image .overlay-box .title {
	margin-bottom: 10px;
	color: #d9f8c7;
	font-weight: 800;
	letter-spacing: 0;
}

.premium-media-card .inner-box .image .overlay-box h4 {
	max-width: 260px;
	margin-bottom: 12px;
	font-size: 24px;
}

.premium-media-card .inner-box .image .overlay-box h4 a {
	color: #ffffff;
}

.gallery-card-copy {
	max-width: 310px;
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.84);
	line-height: 1.65;
}

.gallery-card-action {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	padding: 10px 14px;
	border-radius: 8px;
	color: var(--premium-ruby);
	font-weight: 800;
	background: #ffffff;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.gallery-card-action:hover {
	color: #ffffff;
	background: var(--premium-charcoal);
}

.premium-media-card .inner-box .image .overlay-box .plus {
	left: auto;
	right: 24px;
	bottom: 24px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.22);
}

.premium-media-card .inner-box .image .overlay-box .plus:hover {
	color: var(--premium-ruby);
	background: #ffffff;
}

.certificate-trust-strip {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin: -8px 0 46px;
}

.certificate-trust-item {
	position: relative;
	min-height: 132px;
	padding: 24px 24px 22px 82px;
	overflow: hidden;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(15, 123, 93, 0.13);
	box-shadow: 0 16px 38px rgba(15, 123, 93, 0.09);
}

.certificate-trust-item:before {
	content: '';
	position: absolute;
	right: -34px;
	bottom: -40px;
	width: 116px;
	height: 116px;
	border: 1px solid rgba(15, 123, 93, 0.12);
	transform: rotate(21deg);
	animation: premiumSoftTilt 8s ease-in-out infinite;
}

.certificate-trust-item .fa {
	position: absolute;
	left: 24px;
	top: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 8px;
	color: #ffffff;
	background-image: linear-gradient(135deg, var(--premium-teal), var(--premium-copper));
	box-shadow: 0 12px 24px rgba(15, 123, 93, 0.2);
}

.certificate-trust-item strong,
.certificate-trust-item small {
	position: relative;
	z-index: 1;
	display: block;
}

.certificate-trust-item strong {
	color: var(--premium-ink);
	font-family: 'Poppins', sans-serif;
	font-size: 17px;
	line-height: 1.35;
	overflow-wrap: anywhere;
	word-break: normal;
}

.certificate-trust-item small {
	margin-top: 8px;
	color: var(--premium-ink-soft);
	font-size: 13px;
	line-height: 1.55;
	overflow-wrap: anywhere;
}

/* Success stories */
.premium-success-section {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	padding: 112px 0 92px;
	background:
		linear-gradient(180deg, #ffffff 0%, #f7fbf2 100%);
}

.premium-success-section:before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		linear-gradient(120deg, rgba(15, 123, 93, 0.045) 1px, transparent 1px),
		linear-gradient(30deg, rgba(137, 184, 63, 0.04) 1px, transparent 1px);
	background-size: 118px 118px, 172px 172px;
	animation: premiumGeometryDrift 26s linear infinite;
}

.premium-success-section .auto-container {
	position: relative;
	z-index: 2;
}

.success-proof-row {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: -20px 0 42px;
}

.success-proof-row span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 13px;
	border-radius: 8px;
	color: var(--premium-ink);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	background: rgba(15, 123, 93, 0.06);
	border: 1px solid rgba(15, 123, 93, 0.1);
}

.success-proof-row .fa {
	color: var(--premium-teal);
}

.premium-success-section .column {
	margin-bottom: 30px;
}

.success-story-card {
	position: relative;
	height: 100%;
	padding: 30px;
	overflow: hidden;
	text-align: center;
	border-radius: 8px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 253, 242, 0.95));
	border: 1px solid rgba(15, 123, 93, 0.12);
	box-shadow: 0 20px 54px rgba(15, 123, 93, 0.1);
}

.success-story-card:before {
	content: '';
	position: absolute;
	left: 24px;
	right: 24px;
	top: 0;
	height: 4px;
	background-image: linear-gradient(90deg, var(--premium-teal), var(--premium-copper), #eedea4, var(--premium-teal));
	background-size: 220% 100%;
	animation: premiumLineTravel 5.2s linear infinite;
}

.success-story-card > * {
	position: relative;
	z-index: 1;
}

.success-avatar {
	width: 112px;
	height: 112px;
	margin: 0 auto 18px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid rgba(238, 222, 164, 0.86);
	background: #eef2f0;
	box-shadow: 0 18px 36px rgba(15, 123, 93, 0.12);
}

.success-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.success-avatar .fa-user {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 44px;
	color: #cfd8d4;
	line-height: 1;
}

.success-story-card h4 {
	margin-bottom: 6px;
	color: var(--premium-ink);
}

.success-role {
	color: var(--premium-teal);
	font-weight: 800;
	margin-bottom: 12px;
}

.success-story-card p {
	color: var(--premium-ink-soft);
	line-height: 1.75;
}

.success-empty-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 18px;
	padding: 11px 16px;
	border-radius: 8px;
	color: #ffffff;
	font-weight: 800;
	background-image: linear-gradient(135deg, var(--premium-teal), var(--premium-copper));
	box-shadow: 0 14px 28px rgba(15, 123, 93, 0.18);
}

.success-empty-link:hover {
	color: #ffffff;
	transform: translateY(-2px);
}

/* Contact */
.premium-contact-section {
	padding: 108px 0 76px;
	background-attachment: scroll;
}

.premium-contact-section:before {
	background: linear-gradient(100deg, rgba(17, 20, 22, 0.94), rgba(17, 20, 22, 0.74));
}

.premium-form-card {
	padding: 34px !important;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.34);
	box-shadow: var(--premium-shadow);
}

.form-card-heading {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--premium-line);
}

.form-card-heading > .fa {
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	border-radius: 8px;
	color: #ffffff;
	background: var(--premium-teal);
}

.form-card-heading strong {
	display: block;
	color: var(--premium-ink);
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	line-height: 1.25;
}

.form-card-heading p {
	margin: 3px 0 0;
	color: var(--premium-ink-soft);
}

.premium-contact-section .default-form .form-group input[type="text"],
.premium-contact-section .default-form .form-group input[type="email"],
.premium-contact-section .default-form .form-group select,
.premium-contact-section .default-form .form-group textarea {
	color: var(--premium-ink);
	background: #ffffff;
	border: 1px solid rgba(17, 20, 22, 0.16);
	border-radius: 8px;
}

.premium-contact-section .default-form .form-group textarea {
	height: 168px;
}

.premium-contact-section .default-form .form-group input::-webkit-input-placeholder,
.premium-contact-section .default-form .form-group textarea::-webkit-input-placeholder {
	color: #717b82;
}

.premium-contact-section .default-form .form-group input:focus,
.premium-contact-section .default-form .form-group textarea:focus,
.premium-contact-section .default-form .form-group select:focus {
	border-color: var(--premium-teal);
	box-shadow: 0 0 0 3px rgba(47, 127, 122, 0.14);
}

.premium-contact-section .content-column .inner-column {
	padding-left: 36px;
}

.premium-contact-section .list-style-two li {
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.84);
}

.premium-contact-section .list-style-two li strong {
	font-size: 20px;
}

.premium-contact-section .list-style-two li .icon {
	border-radius: 8px;
	background-image: linear-gradient(to bottom, var(--premium-teal), var(--premium-ruby));
}

/* Sitewide green theme overrides for legacy template accents */
.main-menu .navigation > li > ul {
	border-top-color: var(--premium-teal);
}

.main-menu .navigation > li > ul > li:hover > a {
	background: var(--premium-teal);
	color: #ffffff;
}

.footer-style-two .newsletter-form .form-group button,
.scroll-to-top,
.color-palate .color-trigger {
	background-color: var(--premium-teal) !important;
}

.footer-style-two .widgets-section .lower-box {
	border-top-color: rgba(137, 184, 63, 0.62);
	border-bottom-color: rgba(137, 184, 63, 0.62);
}

.footer-style-two .lower-box .footer-column {
	border-right-color: rgba(137, 184, 63, 0.62);
}

.footer-style-two .info-list li strong,
.footer-style-two .footer-bottom .footer-nav li a:hover,
.footer-style-two .social-icon-two li a:hover,
.sidebar-info-contents .content-box h2,
.sidebar-info-contents .contact-info h2 {
	color: var(--premium-copper) !important;
}

/* Shared motion polish */
.premium-job-card,
.success-story-card,
.premium-interview-card,
.premium-proof-section .fact-counter .column .inner,
.premium-thumb-item,
.premium-accom-item img,
.country-flag-card .flag-frame {
	transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.premium-job-card:hover,
.success-story-card:hover,
.premium-interview-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--premium-shadow);
}

.premium-job-card:hover,
.success-story-card:hover {
	border-color: rgba(15, 123, 93, 0.28);
}

.country-flag-card:hover .flag-frame,
.premium-accom-item:hover img {
	transform: translateY(-5px);
	box-shadow: var(--premium-shadow);
}

@keyframes premiumLineTravel {
	0% { background-position: 0 0; }
	100% { background-position: 220% 0; }
}

@keyframes premiumDeckSheen {
	0%, 34% { background-position: -360px 0, 0 0; }
	62%, 100% { background-position: 360px 0, 120px 0; }
}

@keyframes premiumDeckIn {
	0% {
		opacity: 0;
		transform: translateY(28px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes premiumIconBreath {
	0%, 100% {
		transform: translateY(-50%) scale(1);
		box-shadow: 0 12px 24px rgba(15, 123, 93, 0.2);
	}
	50% {
		transform: translateY(-50%) scale(1.06);
		box-shadow: 0 16px 30px rgba(15, 123, 93, 0.28);
	}
}

@keyframes premiumFlagFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-4px); }
}

@keyframes premiumGeometryDrift {
	0% { background-position: 0 0, 0 0; }
	100% { background-position: 118px 118px, -172px 172px; }
}

@keyframes premiumSoftTilt {
	0%, 100% { transform: rotate(18deg) translate3d(0, 0, 0); }
	50% { transform: rotate(28deg) translate3d(-8px, -8px, 0); }
}

@keyframes premiumIconFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-5px); }
}

@keyframes premiumQuotePulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.08); }
}

@keyframes premiumStarTwinkle {
	0%, 100% { transform: translateY(0); opacity: 0.72; }
	50% { transform: translateY(-3px); opacity: 1; }
}

@keyframes premiumButtonGlow {
	0%, 100% { box-shadow: 0 12px 28px rgba(15, 123, 93, 0.22); }
	50% { box-shadow: 0 18px 38px rgba(15, 123, 93, 0.32); }
}

@keyframes premiumLuxuryFloat {
	0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
	50% { transform: translate3d(-12px, 10px, 0) rotate(-1.5deg); }
}

@keyframes premiumSealPulse {
	0%, 100% {
		transform: translateY(0) scale(1);
		box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
	}
	50% {
		transform: translateY(-4px) scale(1.03);
		box-shadow: 0 24px 46px rgba(0, 0, 0, 0.32);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-stat-card,
	.hero-stat-card:before,
	.hero-stat-card:after,
	.hero-stat-icon,
	.country-flag-card .flag-frame,
	.premium-proof-section:after,
	.premium-interview-section:after,
	.premium-testimonial-section:before,
	.premium-success-section:before,
	.premium-director-section:before,
	.premium-director-section:after,
	.premium-director-section .image-column .inner-column:before,
	.premium-subpage-hero:after,
	.premium-gallery-page:before,
	.premium-certificates-page:before,
	.premium-opportunity-section:before,
	.service-block-two .inner-box.premium-job-card:before,
	.service-block-two .inner-box.premium-job-card:after,
	.job-icon,
	.comfort-showcase-shell:before,
	.comfort-showcase-shell:after,
	.premium-proof-section .fact-counter .column .inner:before,
	.premium-proof-section .fact-counter .column .inner:after,
	.proof-stat-icon,
	.premium-interview-card:before,
	.premium-interview-card:after,
	.leadership-seal,
	.premium-director-section .image-column .image .projects:before,
	.success-story-card:before,
	.testimonial-block .inner-box:before,
	.testimonial-block .inner-box .quote-outer .quote-icon,
	.testimonial-block .inner-box .rating .fa,
	.feedback-action .theme-btn,
	.certificate-trust-item:before {
		animation: none !important;
	}
}

@media (max-width: 1199px) {
	.hero-content-shell {
		grid-template-columns: minmax(0, 1fr) 320px;
		gap: 28px;
	}

	.premium-home-hero h1 {
		font-size: 56px;
	}

	.main-menu .navigation > li.nav-logo-item {
		margin-right: 12px;
	}

	.certificate-trust-strip {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 991px) {
	.premium-topbar,
	.premium-top-actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.premium-topbar {
		padding: 12px 0;
	}

	.premium-home-hero .hero-slide {
		min-height: 780px;
		padding: 180px 0 120px;
	}

	.hero-content-shell {
		grid-template-columns: 1fr;
	}

	.hero-assurance-panel {
		max-width: 520px;
	}

	.premium-home-hero h1 {
		font-size: 48px;
	}

	.hero-stat-card {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 720px;
	}

	.hero-stat:nth-child(2):after {
		display: none;
	}

	.premium-contact-section .content-column .inner-column {
		padding-left: 0;
	}

	.premium-director-section .content-column .inner-column {
		margin-left: 0;
		padding: 42px 38px 38px;
	}

	.premium-subpage-hero {
		padding: 112px 0 72px;
	}

	.premium-subpage-hero .pull-left,
	.premium-subpage-hero .pull-right {
		float: none !important;
	}

	.premium-subpage-hero .page-breadcrumb {
		display: inline-flex;
		margin-top: 24px;
	}

	.premium-gallery-page .sec-title h2,
	.premium-certificates-page .sec-title h2 {
		font-size: 36px;
	}
}

@media (max-width: 767px) {
	.premium-section-title {
		margin-bottom: 34px !important;
	}

	.main-header.header-style-one .header-lower {
		background-color: rgba(11, 24, 20, 0.96) !important;
	}

	.premium-nav-outer {
		min-height: 76px;
		justify-content: space-between;
		padding: 0 15px;
	}

	.premium-mobile-logo {
		display: flex;
		align-items: center;
	}

	.premium-nav-outer .main-menu,
	.premium-nav-outer .options-box {
		display: none !important;
	}

	.nav-outer .mobile-nav-toggler {
		display: flex !important;
		align-items: center;
		justify-content: center;
		width: 48px;
		height: 48px;
		margin-left: auto;
		color: #ffffff;
		border-radius: 8px;
		background: rgba(255, 255, 255, 0.08);
		border: 1px solid rgba(255, 255, 255, 0.14);
	}

	.nav-outer .mobile-nav-toggler .icon {
		line-height: 1;
	}

	.color-palate {
		top: auto;
		bottom: 36px;
	}

	.color-palate .color-trigger {
		right: -40px;
		width: 40px;
		height: 44px;
		padding-top: 2px;
		border-radius: 0 8px 8px 0;
	}

	.premium-home-hero .hero-slide {
		min-height: 720px;
		padding: 160px 0 100px;
	}

	.premium-home-hero h1 {
		font-size: 38px;
		line-height: 1.14;
	}

	.premium-home-hero .hero-tagline {
		font-size: 17px !important;
	}

	.hero-proof-row span,
	.premium-home-hero .link-box .theme-btn {
		width: 100%;
		justify-content: center;
	}

	.hero-assurance-panel {
		padding: 22px;
	}

	.hero-stat-card {
		margin: -38px 15px -12px;
		padding: 18px 10px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		border-radius: 8px;
	}

	.hero-stat {
		min-width: 0;
		padding: 16px 12px 16px 58px;
	}

	.hero-stat-icon {
		left: 12px;
		width: 34px;
		height: 34px;
		line-height: 34px;
	}

	.hero-stat-num {
		font-size: 30px;
	}

	.premium-country-section,
	.home-jobs-section,
	.premium-opportunity-section,
	.premium-director-section,
	.premium-proof-section,
	.premium-interview-section,
	.premium-testimonial-section,
	.premium-gallery-page,
	.premium-certificates-page,
	.premium-success-section,
	.premium-contact-section {
		padding-top: 76px !important;
		padding-bottom: 58px !important;
	}

	.premium-director-section .image-column .inner-column {
		padding: 16px 16px 50px;
	}

	.premium-director-section .image-column .image .projects {
		left: 14px;
		right: 14px;
		bottom: -28px;
		padding: 18px 20px;
		font-size: 18px;
	}

	.leadership-seal {
		right: 14px;
		top: 14px;
		width: 78px;
		height: 78px;
	}

	.leadership-seal strong {
		font-size: 14px;
	}

	.leadership-seal small {
		font-size: 9px;
	}

	.premium-director-section .content-column .inner-column {
		padding: 30px 22px 26px;
	}

	.premium-director-section .sec-title h2 {
		font-size: 32px;
	}

	.leadership-proof-strip span {
		width: 100%;
	}

	.premium-director-section .content-column .contact {
		font-size: 20px;
	}

	.testimonial-block .inner-box,
	.premium-form-card,
	.success-story-card,
	.service-block-two .inner-box.premium-job-card .lower-content,
	.premium-interview-card {
		padding: 24px !important;
	}

	.premium-opportunity-section .premium-section-title h2 {
		font-size: 34px;
	}

	.opportunity-trust-row {
		margin-bottom: 34px;
	}

	.job-card-index {
		font-size: 30px;
	}

	.premium-job-card h4 {
		min-height: 0;
	}

	.premium-proof-section .fact-counter .column .inner {
		align-items: center;
		min-height: 188px;
		padding: 28px 22px 26px;
		text-align: center;
	}

	.premium-testimonial-section .client-thumb-outer {
		max-width: 100%;
		padding-left: 18px;
		padding-right: 18px;
	}

	.premium-testimonial-section .client-thumb-outer .client-thumbs-carousel {
		max-width: 100%;
	}

	.testimonial-section .client-thumb-outer .thumb-item .author-info {
		margin-left: 0;
		margin-right: 0;
	}

	.premium-testimonial-section .testimonial-outer {
		padding: 22px 16px 26px;
	}

	.premium-feedback-empty-card {
		grid-template-columns: 1fr;
		padding: 32px 22px 28px;
		text-align: center;
	}

	.feedback-empty-icon {
		margin: 0 auto;
	}

	.feedback-empty-copy h3 {
		font-size: 24px;
	}

	.feedback-empty-metrics {
		grid-template-columns: 1fr;
	}

	.testimonial-luxury-head span,
	.testimonial-meta-line span {
		width: 100%;
		justify-content: center;
	}

	.testimonial-block .inner-box .text {
		font-size: 16px;
	}

	.premium-accommodation-gallery {
		margin-top: 54px;
		padding-top: 0;
	}

	.comfort-showcase-shell {
		padding: 48px 18px 34px;
	}

	.comfort-proof-row span,
	.success-proof-row span {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.premium-comfort-empty,
	.premium-success-empty {
		padding: 30px 20px;
	}

	.accom-card-copy {
		padding: 18px;
	}

	.premium-subpage-hero {
		min-height: 300px;
		padding: 100px 0 62px;
	}

	.premium-subpage-hero h2 {
		font-size: 40px;
	}

	.premium-page-kpis span {
		width: calc(50% - 5px);
		justify-content: center;
		text-align: center;
	}

	.premium-filter-gallery .filters .filter-tabs {
		width: 100%;
		border-radius: 8px;
	}

	.premium-filter-gallery .filters li {
		flex: 1 1 calc(50% - 8px);
	}

	.premium-media-card .inner-box .image img {
		height: 330px;
	}

	.premium-contact-section .list-style-two li {
		padding-left: 64px;
	}
}

@media (max-width: 575px) {
	.license-pill,
	.license-text,
	.license-number {
		width: 100%;
	}

	.main-header .header-top .premium-top-actions .login-info li {
		padding-left: 0;
	}

	.premium-home-hero h1 {
		font-size: 34px;
	}

	.hero-stat-card {
		grid-template-columns: 1fr;
	}

	.hero-stat:not(:last-child):after {
		display: block;
		left: 18px;
		right: 18px;
		top: auto;
		bottom: 0;
		width: auto;
		height: 1px;
		background: linear-gradient(to right, transparent, rgba(15, 123, 93, 0.22), transparent);
	}

	.form-card-heading {
		align-items: flex-start;
	}

	.premium-testimonial-section .client-testimonial-carousel .owl-nav {
		margin-top: 16px;
	}

	.premium-testimonial-section .client-testimonial-carousel .owl-nav .owl-prev,
	.premium-testimonial-section .client-testimonial-carousel .owl-nav .owl-next {
		width: 38px;
		height: 38px;
	}

	.premium-accom-item img {
		height: 210px;
	}

	.opportunity-trust-row span {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.job-card-top {
		align-items: flex-start;
	}

	.job-card-index {
		margin-left: 0;
		width: 100%;
		font-size: 24px;
	}

	.job-card-footer {
		align-items: stretch;
		flex-direction: column;
	}

	.job-apply-link {
		justify-content: center;
	}

	.premium-subpage-hero h2 {
		font-size: 34px;
	}

	.premium-gallery-page .sec-title h2,
	.premium-certificates-page .sec-title h2 {
		max-width: 340px;
		margin-left: auto;
		margin-right: auto;
		font-size: 30px;
		line-height: 1.18;
	}

	.premium-gallery-page .sec-title .text,
	.premium-certificates-page .sec-title .text {
		max-width: 280px;
	}

	.premium-page-kpis span {
		width: 100%;
	}

	.premium-filter-gallery .filters li {
		flex-basis: 100%;
	}

	.premium-media-card .inner-box .image {
		min-height: 292px;
	}

	.premium-media-card .inner-box .image img {
		height: 292px;
	}

	.premium-media-card .inner-box .image .overlay-box {
		padding: 22px;
	}

	.certificate-trust-item {
		min-height: 0;
		padding: 22px 20px 20px 74px;
	}

	.premium-contact-section .list-style-two li strong {
		font-size: 18px;
	}
}
