@font-face {
	font-family: 'Tilda Sans';
	src: url('/fonts/TildaSans-Regular/TildaSans-Regular.woff2') format('woff2'),
		url('/fonts/TildaSans-Regular/TildaSans-Regular.woff') format('woff'),
		url('/fonts/TildaSans-Regular/TildaSans-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

html {
	scroll-behavior: smooth;
}

html,
body {
	overflow-x: hidden;
}


/* Fonts and Reset */
body {
	font-family: 'Tilda Sans', sans-serif;
	margin: 0;
	background-color: #fff;
	color: #1e1e1e;
	line-height: 1.7;
	font-size: 18px;
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: #28b67a;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}


html {
	scroll-behavior: smooth;
}

.container {
	width: 100%;
	padding: 0 24px;
	margin: 0; /* optional */
}


/* Navbar */
.navbar {
	position: fixed;
	top: 0;
	width: 100%; /* already correct */
	background: #fff;
	border-bottom: 1px solid #eee;
	z-index: 1000;
}


.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 24px;
}

.nav-left {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 1.5rem;
	font-weight: 700;
	color: #000;
	text-decoration: none;
}

.nav-left:hover {
	color: #28b67a;
}

.nav-logo {
	width: 32px;
	height: 24px;
}

.nav-links {
	display: flex;
	gap: 20px;
}

.nav-links a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-links a:hover {
	color: #28b67a;
}

.nav-toggle {
	display: none;
	background: none;
	font-size: 1.8rem;
	border: none;
	cursor: pointer;
}

@media (max-width: 768px) {
	.nav-links {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		position: fixed;
		top: 0;
		right: -40%;
		width: 40%;
		height: 100vh;
		background-color: #ffffff;
		padding: 32px 16px;
		box-shadow: -2px 0 12px rgba(0, 0, 0, 0.08);
		transition: right 0.4s ease;
		z-index: 9999;
		text-align: center;
	}

	.nav-links.show {
		right: 0;
	}

	.nav-links a {
		font-size: 1.3rem;
		margin: 8px 0;
		color: #333;
		font-weight: 500;
		text-decoration: none;
		transition: color 0.3s ease;
		padding: 8px 16px;
		width: 100%;
	}

	.nav-links a:hover {
		color: #28b67a;
	}

	.close-nav {
		display: block;
		position: absolute;
		top: 20px;
		left: 20px;
		font-size: 2rem;
		background: none;
		border: none;
		cursor: pointer;
		color: #333;
	}

	.nav-toggle {
		display: block;
	}
}

@media (min-width: 769px) {
	.close-nav {
		display: none !important;
	}
}

a {
	text-decoration: none;
	color: #000;
	transition: color 0.3s ease;
}

a:hover {
	color: #28b67a;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	border-bottom: 1px solid #ddd;
}

.logo {
	font-size: 24px;
	font-weight: bold;
}

.nav a {
	margin-left: 20px;
	font-weight: 500;
}


/* Notice Bar */
.notice-bar {
  background: #e6f5ee;
  color: #000;
  display: flex;
  justify-content: center;
  padding: 32px 16px;
  font-size: clamp(14px, 1.8vw, 16px);
  border-bottom: 1px solid #e6f5ee;
  flex-wrap: wrap;
}

.notice-content {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1000px;
  flex-wrap: wrap;
}

.notice-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #28b67a;
  margin-bottom: -2px; /* Helps align better with text line */
}

.notice-text {
  line-height: 1.4;
  margin: 0;
  text-align:center;
}



/* Container */
.container {
	max-width: 1024px;
	margin: 0 auto;
	padding: 40px 20px;
}


/* Sections */
.section {
	min-height: 60vh;
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}

.section.white {
	background: #fff;
}

.section.light {
	background: #ecfdf5;
}


/* Hero Section */
/* --- Tilda‑Style Hero Section --- */
.hero-section {
	position: relative;
	height: 100vh;
	background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
	display: flex;
	align-items: center;
	text-align: center;
	font-family: 'Tilda Sans', sans-serif;
	color: #333;
}

/* Centered content container */
.hero-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 16px;
}

/* Headline */
.hero-title {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 20px;
}

/* Sub‑heading */
.hero-subtitle {
	font-size: 1.25rem;
	font-weight: 300;
	margin-bottom: 40px;
}

/* Button group */
.hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 80px;
}

/* Base button styles */
.btn {
	display: inline-block;
	padding: 8px 24px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	border-radius: 4px;
	text-decoration: none;
	transition: background 0.3s ease, transform 0.2s ease;
}

/* Primary button */
.btn-primary {
	background: #28a745;
	color: #fff;
}

.btn-primary:hover {
	background: #218838;
	transform: translateY(-2px);
}

/* Secondary (outline) button */
.btn-secondary {
	background: transparent;
	color: #28a745;
	border: 2px solid #28a745;
}

.btn-secondary:hover {
	background: #28a745;
	color: #fff;
	transform: translateY(-2px);
}

/* Scroll‑down arrow */
/* Scroll‑down arrow – always sits 5% up from the bottom of the hero */
.scroll-down {
	position: absolute;
	bottom: 16vh;
	/* 5% of viewport height */
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

.scroll-down .arrow {
	display: block;
	width: 30px;
	height: 30px;
	border-bottom: 3px solid #333;
	border-right: 3px solid #333;
	transform: rotate(45deg);
	animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
	0% {
		opacity: 0;
		transform: translateY(-10px) rotate(45deg);
	}

	50% {
		opacity: 1;
		transform: translateY(0) rotate(45deg);
	}

	100% {
		opacity: 0;
		transform: translateY(10px) rotate(45deg);
	}
}

/* Responsive tweaks */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.hero-buttons {
		gap: 15px;
	}
}

/* Clean Notice */
.clean-notice {
	background: #ecfdf5;
	padding: 10px 0;
	text-align: center;
	border-bottom: 1px solid #d1fae5;
}

.notice-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 40px;
	font-size: 14px;
	color: #065f46;
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.icon-warning {
	width: 24px;
	height: 24px;
	color: #239a6b;
	flex-shrink: 0;
}


/* Hero Split — Fully responsive layout */
.hero-split {
	background: #ffffff;
	padding: 56px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 72vh;
	font-family: 'Tilda Sans', sans-serif;
}

.hero-inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
	max-width: 1200px;
	width: 100%;
	padding: 0 clamp(24px, 6vw, 64px);
	margin: 0 auto;
	align-items: center;
	text-align: center;
}

@media (min-width: 900px) {
	.hero-inner {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		text-align: left;
	}
}

/* Left Text Column */
.hero-text {
	flex: 1;
}

.hero-text h1 {
    font-size: clamp(1.4rem, 3.5vw, 2.6rem);
    font-weight: normal;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.1;
}


.hero-text p {
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	color: #444;
	margin-bottom: 30px;
	line-height: 1.6;
}

.hero-actions {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

/* Right Image Column */
.hero-image {
	flex: 1;
	display: flex;
	justify-content: center;
}

.hero-image img {
	width: 100%;
	max-width: 500px;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Buttons — consistent with your brand */
.btn {
	padding: 14px 28px;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 500;
	transition: all 0.3s ease;
	font-family: 'Tilda Sans', sans-serif;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}

.btn.primary {
	background-color: #28b67a;
	color: #fff;
	border: none;
}

.btn.primary:hover {
	background-color: #239a6b;
}

.btn.outline {
	border: 2px solid #28b67a;
	background: transparent;
	color: #28b67a;
}

.btn.outline:hover {
	background-color: #28b67a;
	color: #fff;
}


/* Buttons */
.btn {
	padding: 14px 32px;
	border-radius: 30px;
	font-weight: 500;
	font-size: 16px;
	cursor: pointer;
	transition: 0.3s ease;
	font-family: 'Tilda Sans', sans-serif;
}

.btn.primary {
	background: #fff;
	color: #28b67a;
	border: 1px solid #00a86b;
}

.btn.primary.update {
	border: 1px solid #fff;
	background: transparent;
	color: white;
}

.btn.outline {
	border: 2px solid #fff;
	background: transparent;
	color: white;
}

/*---BUTTONS---*/
.btn.outline {
	border: 1px solid #28b67a;
	background: transparent;
	color: #28b67a;
}

.btn.outline:hover {
	background: #28b67a;
	color: white;
}

.btn.primary {
	background-color: #28b67a;
	color: white;
	border: none;
}

.btn.primary:hover {
	background-color: #239a6b;
}


/* Headings */
h2 {
	font-size: 2rem;
	margin-bottom: 20px;
	font-weight: 500;
}

/* Paragraphs */
p {
	font-size: 18px;
	color: #444;
	margin-bottom: 20px;
}


/* Stats Section */
.stats-section {
	background-color: #fff;
	padding: 80px 0;
	text-align: center;
}

.stats-title {
	font-size: 2rem;
	margin-bottom: 10px;
	color: #0d3b66;
}

.stats-subtitle {
	font-size: 1rem;
	color: #666;
	margin-bottom: 50px;
}

.stats-grid {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	gap: 60px;
	flex-wrap: nowrap;
	overflow-x: auto;
	padding: 20px 20px 40px;
}

.stats-grid::-webkit-scrollbar {
	display: none;
}

.stats-grid div {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	color: #444;
	transition: transform 0.3s ease;
	animation: fadeUp 1s ease forwards;
	opacity: 0;
	animation-delay: calc(var(--i) * 0.2s);
}

.stats-grid strong {
	font-size: 48px;
	font-weight: 600;
	color: #0d3b66;
	font-family: 'Tilda Sans', sans-serif;
	line-height: 1;
}

.stats-grid span {
	font-size: 16px;
	font-weight: 400;
	color: #888;
	letter-spacing: 0.5px;
}

/* Animation */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

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

/* Responsive Stat Font Sizes */
@media (max-width: 768px) {
	.stats-grid strong {
		font-size: 36px;
	}

	.stats-grid span {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.stats-grid strong {
		font-size: 28px;
	}

	.stats-grid span {
		font-size: 13px;
	}

	.stats-title {
		font-size: 1.5rem;
	}

	.stats-subtitle {
		font-size: 0.95rem;
	}

	.stats-grid {
		gap: 40px;
	}
}

.stat-link {
	color: #28b67a;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
}

/*---counter---^*/
.counter {
	transition: all 0.3s ease-out;
	will-change: text;
}


/* Partners Section */
.partners {
	background: #e6f5ee;
	padding: 60px 20px;
	text-align: center;
}

.partners h2 {
	font-size: 2.5rem;
	font-weight: 600;
	color: #1e1e1e;
	margin-bottom: 30px;
}

.partners-logos {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	margin-top: 20px;
}

.partners-logos a {
	color: #28b67a;
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.3s ease;
}

.partners-section {
	background-color: #e6f5ee;
	padding: 80px 0;
	text-align: center;
}

.partners-intro {
	font-size: 1rem;
	color: #666;
	max-width: 700px;
	margin: 0 auto 50px;
}

.partners-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

.partner-card {
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	padding: 30px 25px;
	text-align: left;
	transition: transform 0.3s ease;
}

.partner-card:hover {
	transform: translateY(-2px);
}

.partner-card h3 {
	font-size: 1.25rem;
	margin-bottom: 10px;
	color: #0d3b66;
}

.partner-card p {
	font-size: 0.95rem;
	color: #444;
	margin-bottom: 15px;
}

.partner-link {
	font-size: 0.9rem;
	color: #28b67a;
	font-weight: 600;
	text-decoration: none;
}

.partner-link:hover {
	text-decoration: underline;
}

/* Responsive grid */
@media (min-width: 768px) {
	.partners-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}


/* Fade-up Animation */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

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

/* Initial hidden state */
.partners-section .partners-logos a {
	opacity: 0;
	transform: translateY(30px);
}

/* When visible */
.partners-section .partners-logos a.visible {
	animation: fadeUp 0.6s ease-out forwards;
}


.about-section {
	background-color: #f9fafb;
	padding: 80px 20px;
}

.about-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

.about-text {
	max-width: 600px;
	text-align: center;
}

.about-section h2 {
	font-size: 2.2rem;
	color: #0d3b66;
	margin-bottom: 10px;
}

.about-subtitle {
	font-size: 1.1rem;
	color: #555;
	margin-bottom: 20px;
	font-weight: 400;
}

.about-section p {
	font-size: 17px;
	line-height: 1.8;
	color: #444;
}

.about-btn {
	margin-top: 30px;
}

.about-image img {
	width: 100%;
	max-width: 400px;
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

/* Responsive split layout */
@media (min-width: 900px) {
	.about-container {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.about-text {
		text-align: left;
		max-width: 50%;
	}

	.about-image {
		max-width: 40%;
	}
}


/* Register Section */
.register-section {
	padding: 60px 20px;
	background-color: #fff;
	text-align: center;
}

.register-section h2 {
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 20px;
}

.register-section p {
	font-size: 18px;
	color: #444;
	margin-bottom: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Form Styles */
.register-form {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.register-form input,
.register-form textarea {
	padding: 14px 20px;
	border-radius: 8px;
	border: 1px solid #ccc;
	font-size: 16px;
	font-family: 'Tilda Sans', sans-serif;
	resize: none;
}

.register-form input:focus,
.register-form textarea:focus {
	border: 1px solid #28b67a;
	outline: none;
}

.register-form .btn {
	align-self: center;
	margin-top: 10px;
}


.choose-clean {
	padding: 80px 20px;
	text-align: center;
	background: #f9fafb;
}

.choose-clean h2 {
	font-size: 2rem;
	margin-bottom: 10px;
	font-weight: 500;
}

.choose-clean .subtitle {
	font-size: 18px;
	color: #555;
	margin-bottom: 50px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.register-split {
	background-color: #f4f6f8;
	padding: 80px 20px;
}

.split-container {
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
	justify-content: center;
}

.register-info {
	text-align: center;
	max-width: 600px;
}

.register-info h2 {
	font-size: 2.2rem;
	color: #0d3b66;
	margin-bottom: 10px;
}

.register-subtitle {
	font-size: 1rem;
	color: #555;
	margin-bottom: 30px;
	line-height: 1.7;
}

.register-info img {
	max-width: 100%;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	margin-top: 20px;
}


/* Form Styles */
.register-form {
	width: 100%;
	max-width: 500px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.register-form input,
.register-form textarea {
	width: 100%;
	padding: 14px 20px;
	border-radius: 8px;
	border: 1px solid #ccc;
	font-size: 16px;
	font-family: 'Tilda Sans', sans-serif;
	background-color: #fff;
	transition: all 0.3s ease;
}

.register-form .btn {
	align-self: center;
	margin-top: 10px;
	font-size: 16px;
	font-weight: 500;
	padding: 14px 32px;
	border-radius: 30px;
	background-color: #28b67a;
	color: white;
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.register-form .btn:hover {
	background-color: #239a6b;
}

/* Desktop Layout: Side by side */
@media (min-width: 900px) {
	.split-container {
		flex-direction: row;
		align-items: flex-start;
		gap: 60px;
	}

	.register-info {
		flex: 1;
		text-align: left;
	}

	.register-form {
		flex: 1;
	}
}


/* Benefits List */
.why-choose {
	background-color: #fff;
	padding: 80px 20px;
	text-align: center;
}

.why-choose h2 {
	font-size: 2.2rem;
	font-weight: 600;
	color: #1e1e1e;
	margin-bottom: 10px;
}

.why-subtitle {
	font-size: 1rem;
	color: #555;
	margin-bottom: 50px;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}


.why-features-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}

@media (min-width: 600px) {
	.why-features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.why-features-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.why-feature-card {
	background-color: #fff;
	border-radius: 12px;
	padding: 30px 20px;
	text-align: center;
	transition: transform 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.why-feature-card:hover {
	transform: translateY(-1px);
}

.why-icon-circle {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	background-color: #e6f5ee;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.why-icon-circle svg {
	width: 28px;
	height: 28px;
	fill: #28b67a;
}

.why-feature-card h3 {
	font-size: 1.2rem;
	color: #0d3b66;
	margin-bottom: 10px;
}

.why-feature-card p {
	font-size: 15px;
	color: #444;
	line-height: 1.6;
}


.why-features-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 30px;
	margin-bottom: 50px;
}


@media (min-width: 600px) {
	.why-features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.why-features-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}


.why-feature-card {
	background-color: #fff;
	border-radius: 12px;
	padding: 30px 20px;
	text-align: center;
	transition: transform 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.why-feature-card:hover {
	transform: translateY(-1px);
}

.why-icon-circle {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	background-color: #e6f5ee;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.why-icon-circle svg {
	width: 28px;
	height: 28px;
	fill: #28b67a;
}

.why-feature-card h3 {
	font-size: 1.2rem;
	color: #0d3b66;
	margin-bottom: 10px;
}

.why-feature-card p {
	font-size: 15px;
	color: #444;
	line-height: 1.6;
}


/* Button */
.why-button {
	margin-top: 30px;
}

.why-button .btn {
	padding: 14px 28px;
	border-radius: 30px;
	background-color: #28b67a;
	color: white;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	transition: background 0.3s;
}

.why-button .btn:hover {
	background-color: #239a6b;
}


/* FAQ Section */
.faq-open {
	background: #e6f5ee;
	padding: 80px 20px;
	text-align: center;
}

.faq-open h2 {
	font-size: 2.2rem;
	font-weight: 600;
	color: #0d3b66;
	margin-bottom: 10px;
}

.faq-intro {
	font-size: 1rem;
	color: #555;
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.faq-open-list {
	text-align: left;
	max-width: 800px;
	margin: 0 auto 40px auto;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.faq-open-item {
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 20px;
}

.faq-open-question {
	font-size: 18px;
	font-weight: 600;
	color: #1e1e1e;
	margin-bottom: 8px;
}

.faq-open-answer {
	font-size: 16px;
	color: #444;
	line-height: 1.7;
}

.faq-open-answer a {
	font-size: 16px;
	color: #28b67a;
	line-height: 1.7;
}

.faq-open-answer a:hover {
	text-decoration:underline;
}

.faq-link {
	text-align: center;
	margin-top: 30px;
}

.faq-link .btn.outline {
	padding: 12px 28px;
	font-size: 15px;
	font-weight: 500;
	color: #28b67a;
	border: 1px solid #28b67a;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.faq-link .btn.outline:hover {
	background-color: #28b67a;
	color: white;
}


/*--sell shuttle section---*/

.sell-shuttle {
	background: #e6f5ee;
	padding: 80px 20px;
	text-align: center;
}

.sell-shuttle h2 {
	font-size: 2.2rem;
	font-weight: 600;
	color: #1e1e1e;
	margin-bottom: 12px;
}

.sell-subtitle {
	font-size: 1rem;
	color: #555;
	margin-bottom: 50px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}

.sell-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	justify-content: center;
}

.sell-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 30px 20px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: transform 0.3s ease;
}

.sell-card:hover {
	transform: translateY(-1px);
}

.sell-icon-circle {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	background-color: #dff4ea;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sell-icon-circle svg {
	width: 28px;
	height: 28px;
}

.sell-card h3 {
	font-size: 1.25rem;
	color: #0d3b66;
	margin-bottom: 20px;
}

.sell-benefits {
	list-style: none;
	padding: 0 20px;
	/* Add left and right padding */
	margin: 0 auto 25px auto;
	text-align: left;
	font-size: 15px;
	color: #333;
	max-width: 320px;
}

.sell-benefits li {
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
}

.sell-benefits li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #28b67a;
	font-weight: bold;
}

.sell-card .btn {
	font-size: 15px;
	font-weight: 500;
	padding: 8px 16px;
	border-radius: 30px;
	text-decoration: none;
	display: inline-block;
	transition: background 0.3s ease;
}


/* Footer */
/* ----------------------------------------------
   Beautiful Footer v2
   ---------------------------------------------- */
/ .site-footer-alt-v2 {
	background: #f4f4f4;
	/* Light grey background to blend with the previous section */
	font-family: 'Tilda Sans', sans-serif;
	color: #333;
	padding: 80px 0 40px;
}

/* Container */
.site-footer-alt-v2 .container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 24px;
	position: relative;
}

/* Decorative accent bar */
.footer-accent {
	width: 80px;
	height: 4px;
	background: #28b67a;
	/* Green accent */
	border-radius: 2px;
	margin: 0 auto 40px;
}

/* Grid */
.footer-grid {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.footer-col {
	flex: 1 1 250px;
	min-width: 220px;
}

/* Brand */
.footer-brand .brand-name {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 8px;
}

.footer-brand .brand-tagline {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.5;
}

/* Links */
.footer-links h3 {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	font-size: 14px;
	text-decoration: none;
	color: #28b67a;
	/* Green for links */
	position: relative;
	transition: color 0.3s ease;
}


.footer-links a:hover {
	text-decoration: underline;
}

/* Newsletter */
.footer-newsletter h3 {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-family: 'Tida Sans', sans-serif;
}

.newsletter-form input {
	padding: 12px 16px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 14px;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
	transition: border-color 0.3s ease;
	font-family: 'Tida Sans', sans-serif;
}

.newsletter-form input:focus {
	border-color: #28a745;
	outline: none;
}

.newsletter-form button {
	padding: 12px 0;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	background: #28b67a;
	/* Green button background */
	color: #fff;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	font-family: 'Tida Sans', sans-serif;
}

.newsletter-form button:hover {
	transform: translateY(-1px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


/* Bottom bar */
.footer-bottom {
	border-top: 1px solid #e0e0e0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
}

.footer-bottom .copy {
	font-size: 13px;
	color: #777;
}

.social-icons a {
	margin-left: 16px;
	font-size: 18px;
	color: #555;
	transition: color 0.3s ease;
}

.social-icons a:hover {
	color: #28b67a;
	/* Green hover for social icons */
}

/* Responsive */
@media (max-width: 768px) {
	.footer-grid {
		flex-direction: column;
		gap: 30px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}

	.social-icons a {
		margin: 0 8px;
	}
}


/*Blogs section */

.blogs-wrapper {
	background-color: #f4f6f8;
	/* Soft, neutral full-width background */
	width: 100%;
}

.blogs-section {
	padding: 60px 0;
	text-align: center;
	background-color: #f4f6f8;
	/* Same as wrapper for seamless flat look */
}

.blogs-section h2 {
	font-size: 2.2rem;
	margin-bottom: 10px;
	color: #0d3b66;
}

.blogs-intro {
	font-size: 1rem;
	color: #555;
	margin-bottom: 40px;
}

.blogs-grid {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(1, 1fr);
	/* Mobile first: 1 column */
}

/* Tablets: 2 columns */
@media (min-width: 600px) {
	.blogs-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Desktops: 3 columns */
@media (min-width: 992px) {
	.blogs-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}


.blog-card {
	background-color: #f4f6f8;
	padding: 25px;
	border-radius: 8px;
	text-align: left;
	transition: transform 0.3s ease;
}

.blog-card h3 {
	font-size: 1.25rem;
	margin-bottom: 10px;
	color: #0d3b66;
}

.blog-card p {
	font-size: 0.95rem;
	color: #333;
	margin-bottom: 15px;
}

.blog-readmore {
	color: #28b67a;
	font-weight: 600;
	text-decoration: none;
	font-size: 0.9rem;
}

.blog-readmore:hover {
	text-decoration: underline;
}

.blog-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 30px;
}

.filter-btn {
	padding: 8px 16px;
	background-color: #fff;
	border: 1px solid #28b67a;
	color: #28b67a;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 14px;
	font-family: 'Tilda Sans', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
	background-color: #28b67a;
	color: #fff;
}


.booking-section {
	background-color: #f4f6f8;
	padding: 80px 0;
	text-align: center;
}

.shuttle-subtitle {
	font-size: 1rem;
	color: #666;
	margin-bottom: 30px;
}


#no-results {
	color: red;
	margin-bottom: 20px;
}

display: block;
margin-bottom: 8px;
}

.poster p {
	font-size: 1rem;
	padding: 0 12px 16px;
	margin: 0;
	font-weight: 500;
	color: #0d3b66;
	font-family: 'Tilda Sans', sans-serif;
	line-height: 1.5;
}

.poster:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 16px rgba(40, 182, 122, 0.08);
}


/* Fixed width + overflow */
.gallery {
	overflow-x: auto;
	white-space: nowrap;
	padding-bottom: 10px;
}

.gallery p {
	padding: 16px 0 4px;
}

.poster {
	display: inline-block;
	vertical-align: top;
	width: 280px;
	white-space: normal;
	margin-right: 20px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
	.gallery {
		white-space: normal;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.poster {
		width: 100%;
	}
}

@media (min-width: 1024px) {
	.gallery {
		grid-template-columns: repeat(3, 1fr);
	}
}


/* Booking Section Background */
.white-bg {
	background-color: #ffffff;
	padding: 80px 0;
	text-align: center;
}

.shuttle-subtitle {
	font-size: 1rem;
	color: #666;
	margin-bottom: 30px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}


/* Search Bar */
.search-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 40px;
	overflow-x: auto;
}

#search-input {
	padding: 12px 20px;
	font-size: 16px;
	width: 60%;
	max-width: 500px;
	min-width: 250px;
	border: 1px solid #ccc;
	border-right: none;
	border-radius: 50px 0 0 50px;
	/* Rounded left side */
	font-family: 'Tilda Sans', sans-serif;
}

.search-button {
	background-color: #239a6b;
	color: #fff;
	border: 1px solid #239a6b;
	border-radius: 0 50px 50px 0;
	/* Rounded right side */
	padding: 12px 25px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	font-family: 'Tilda Sans', sans-serif;
	white-space: nowrap;
	transition: all 0.3s ease;
}

.search-button:hover {
	background-color: #28b67a;
	border-color: #28b67a;
}

#search-input:focus,
#search-input:active {
	outline: none;
	border: 1px solid #28b67a;
	border-right: none;
}


#no-results {
	display: none;
	color: red;
	text-align: center;
	margin-bottom: 20px;
}

/* Shuttle Grid */
/* Gallery (No max-width) */
.gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
	margin: 0 auto;
	padding: 0 15px;
	overflow-y: auto;
	position: relative;
	overflow-x: hidden;
	white-space: normal;
}

.gallery::after {
	content: '⬇ Scroll';
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 12px;
	color: #888;
	animation: bounceDown 2s infinite;
	pointer-events: none;
}

@keyframes bounceDown {

	0%,
	100% {
		transform: translate(-50%, 0);
	}

	50% {
		transform: translate(-50%, 5px);
	}
}

/* Shuttle Card */
/* Shuttle Cards */
.poster {
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 10px;
	text-decoration: none;
	color: #333;
	text-align: center;
	transition: transform 0.3s ease;
	padding-bottom: 10px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}


.poster:hover {
	transform: translateY(-5px);
}

.poster img {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: 4px;
}

.poster p {
	margin-top: 0;
	font-size: 1rem;
	font-weight: 500;
	color: #0d3b66;
	font-family: 'Tilda Sans', sans-serif;
}

/* 2 Columns for tablets/laptops */
@media (min-width: 768px) {
	.gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* 3 Columns for desktops */
@media (min-width: 1024px) {
	.gallery {
		grid-template-columns: repeat(3, 1fr);
	}
}


/* DO NOT apply this globally */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
	display: none;
}


/* Remove scrollbar globally on smaller screens */
@media (max-width: 768px) {

	html,
	body {
		scrollbar-width: none;
		/* Firefox */
		-ms-overflow-style: none;
		/* IE/Edge */
	}

	html::-webkit-scrollbar,
	body::-webkit-scrollbar {
		display: none;
		/* Chrome/Safari */
	}

	#shuttle-gallery {
		overflow-y: auto;
	}
}


#shuttle-gallery {
	max-height: 520px;
	overflow-y: auto;
	position: relative;
	padding-right: 10px;
	scroll-behavior: smooth;
	border: 1px dashed teal;
	overflow-x: hidden;
}

/* Teal-colored vertical scrollbar */
#shuttle-gallery::-webkit-scrollbar {
	width: 8px;
}

#shuttle-gallery::-webkit-scrollbar-thumb {
	background-color: #008080;
	border-radius: 4px;
}

#shuttle-gallery::-webkit-scrollbar-track {
	background: transparent;
}

/* Scroll arrows (top and bottom indicators) */
#shuttle-gallery::before,
#shuttle-gallery::after {
	content: '⬆';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-size: 14px;
	color: #ccc;
	z-index: 1;
	pointer-events: none;
}

#shuttle-gallery::after {
	content: '⬇';
	bottom: 5px;
}

#shuttle-gallery::before {
	top: 5px;
}


/*register images carousel*/

.register-carousel {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
	height: 300px;
	/* Set this to your desired height */
}

.carousel-track {
	display: flex;
	transition: transform 0.4s ease-in-out;
	height: 100%;
}

.carousel-track img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	flex-shrink: 0;
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #28b67a;
	color: white;
	border: none;
	font-size: 24px;
	padding: 6px 14px;
	cursor: pointer;
	border-radius: 50%;
	z-index: 2;
}

@media (max-width: 768px) {
	.register-carousel {
		height: 200px;
		/* Adjust the height as needed for mobile */
	}

	.carousel-track img {
		height: 100%;
		object-fit: cover;
	}
}


.carousel-btn.prev {
	left: 10px;
}

.carousel-btn.next {
	right: 10px;
}

.form-terms {
	font-size: 14px;
	color: #666;
	text-align: center;
	margin-top: 20px;
	line-height: 1.6;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.form-terms a {
	color: #28b67a;
	text-decoration: none;
	font-weight: 500;
}

.form-terms a:hover {
	text-decoration: underline;
}


/*---contact us---*/
.contact-split {
	background: #f9fafb;
	padding: 80px 20px;
	text-align: center;
}

.contact-split h2 {
	font-size: 2.2rem;
	font-weight: 600;
	color: #0d3b66;
	margin-bottom: 10px;
}

.contact-subtitle {
	font-size: 1rem;
	color: #555;
	margin-bottom: 50px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: flex-start;
	max-width: 1000px;
	margin: 0 auto;
	text-align: left;
}

.contact-column {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

/* Contact Info Blocks */
.contact-info-blocks .contact-item {
	display: flex;
	gap: 16px;
	align-items: center;
}

.contact-icon {
	font-size: 30px;
	color: #28b67a;
	flex-shrink: 0;
}

.contact-item h4 {
	font-size: 1.1rem;
	margin: 0 0 5px;
	color: #0d3b66;
	font-weight: 600;
}

.contact-item a {
	font-size: 16px;
	color: #28b67a;
	text-decoration: none;
	font-weight: 500;
}

.contact-item a:hover {
	text-decoration: underline;
}

/* Form Section */
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-form input,
.contact-form textarea {
	padding: 14px 20px;
	border-radius: 8px;
	border: 1px solid #ccc;
	font-size: 16px;
	font-family: 'Tilda Sans', sans-serif;
	resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #28b67a;
	outline: none;
}

.contact-form .btn {
	align-self: flex-start;
	padding: 14px 32px;
	font-size: 16px;
	border-radius: 30px;
	font-weight: 500;
	border: 1px solid #28b67a;
	background-color: #28b67a;
	color: #fff;
	cursor: pointer;
	transition: 0.3s;
}

.contact-form .btn:hover {
	background-color: #239a6b;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.contact-form .btn {
		align-self: center;
	}

	.contact-info-blocks {
		text-align: center;
		align-items: center;
	}

	.contact-item {
		justify-content: center;
		flex-direction: column;
	}

	.contact-icon {
		margin-bottom: 8px;
	}
}

.contact-icon svg {
	display: block;
}


#scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 5px;
	background: linear-gradient(to right, #2e9b53, #a3e635);
	width: 0%;
	z-index: 9999;
	transition: width 0.25s ease-out;
}

@media (max-width: 768px) {
	#scroll-progress {
		display: none;
	}
}

#backToTop {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 25px;
	z-index: 999;
	font-size: 24px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #2e9b53;
	background-color: #2e9b53;
	color: white;
	/* PandaShuttles accent green */
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: inherit;
}

#backToTop:hover {
	background-color: white;
	color: #2e9b53;
}

.toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #222;
    color: #fff;
    text-align: center;
    border-radius: 24px;
    padding: 12px 20px;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    font-family: 'Tilda Sans', sans-serif;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, visibility 0s linear 0.5s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.toast.show {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #1e1e1e; /* dark background */
  color: #ffffff;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  z-index: 9999;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.25);
  font-family: 'Tilda Sans', sans-serif; 
}

.cookie-banner p {
  margin: 0;
  flex: 1;
}

.cookie-banner a {
  color: #00c389; /* PandaShuttles accent */
}

.cookie-banner a:hover {
  text-decoration: underline;
}
  

.cookie-banner button {
  background-color: #00c389;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  margin-left: 20px;
  font-size:12px;
  border-radius: 24px;
  cursor: pointer;
  font-weight: 500;
}


#cookie-banner {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #fff; /* or your desired color */
  padding: 1em;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}

/*---scrollable blog links ---*/
.scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #f9fafb;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 10px 0;
  overflow: hidden;
}

.scroll-links-panda {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 10px;
  padding: 10px 24px;
  white-space: nowrap;
  scrollbar-width: none;
  flex-grow: 1;
}

.scroll-links-panda::-webkit-scrollbar {
  display: none;
}

.scroll-links-panda a {
  flex: 0 0 auto;
  background-color: #28b67a;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.85rem;
  transition: background 0.3s ease;
}

.scroll-links-panda a:hover {
  background-color: #239f6c;
}

.scroll-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #0d3b66;
  padding: 8px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease;
}

.scroll-btn:hover {
  background: rgba(13, 59, 102, 0.05);
  border-radius: 50%;
}

.scroll-btn.left {
  margin-left: 8px;
}

.scroll-btn.right {
  margin-right: 8px;
}

.scroll-hint {
  text-align: center;
  font-size: 0.85rem;
  color: #555;
  margin-top: 6px;
  font-style: italic;
}

/* Shuttle Type Toggle Styles */
.shuttle-type-toggle {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    gap: 10px;
    font-family: 'Tilda Sans', sans-serif;
}

.toggle-btn {
    padding: 10px 20px;
    border: 1px solid #28b67a;
    background: white;
    color: #28b67a;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Tilda Sans', sans-serif;
}

.toggle-btn.active {
    background: #28b67a;
    color: white;
}

.toggle-btn:not(.active):hover {
    background: #fff;
}



/*---Promise Section---- */
  .promise-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
  }

  .promise-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 50px;
    color: #0d3b66;
  }

  .promise-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }

  .promise-box {
    flex: 1 1 48%;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
  }

  .promise-box:hover {
    transform: translateY(-5px);
  }

  .promise-box h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .promise-box ul {
    padding-left: 0;
    list-style: none;
  }

  .promise-box ul li {
    margin-bottom: 16px;
    display: flex;
    gap: 12px;
    align-items: start;
    font-size: 1rem;
    color: #444;
  }

  .promise-box ul li i {
    font-size: 1.1rem;
    margin-top: 3px;
  }

  .green-box {
    border-left: 6px solid #1a936f;
  }

  .red-box {
    border-left: 6px solid #e63946;
  }

  .green-box h3 {
    color: #1a936f;
  }

  .red-box h3 {
    color: #e63946;
  }

  .green-icon {
    color: #1a936f;
  }

  .red-icon {
    color: #e63946;
  }

  @media screen and (max-width: 768px) {
    .promise-box {
      flex: 1 1 100%;
    }
  }

  .promise-tip {
    margin-top: 50px;
    padding: 24px 28px;
    background: #f0fdf4;
    border-left: 6px solid #1a936f;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    font-size: 1rem;
  }

  .promise-tip strong {
    color: #1a936f;
  }
  
  
/* Floating button - bottom left, fully pulsating */
#pandaBtn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #1a936f;
  color: white;
  padding: 12px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fullPulse 1.5s infinite ease-in-out;
}

/* Button pulsating animation */
@keyframes fullPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.07);
    opacity: 0.85;
  }
}

/* Icon inside button */
.panda-icon {
  width: 32px;
  height: 24px;
}

/* Popup box with transparent background and blur */
#pandaPopup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 700px;
  height: 90vh;
  background-color: transparent; /* No background */
  z-index: 9998;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  overflow: hidden;
}

@media (max-height: 600px) {
  #pandaPopup {
    height: 95vh;
  }
}


/* FA Close button */
#pandaClose {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 26px;
  color: #333;
  cursor: pointer;
  z-index: 10000;
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

#pandaClose i {
  pointer-events: none;
}

/* iframe styling */
#pandaPopup iframe {
  width: 100%;
  height: 100%;
  border: none;
}
