body {
	margin: 0;
	font-family: "Plus Jakarta Sans", sans-serif !important;
}

h2 {
	font-family: "Plus Jakarta Sans", sans-serif !important;
	font-size: 32px !important;
	font-weight: 700 !important;
	line-height: 32px !important;
}


.hero-wrapper {
	height: 100vh;
	position: relative;
	/*overflow: hidden;*/
}

@media (max-width: 768px) {
	.hero-wrapper {
		height: 82vh !important;
	}
}

/* Navbar */
/* MAIN NAV LINKS */

.navbar-nav .dropdown-menu {
	position: absolute;
}

.main-menu .nav-link {
	color: white !important;
	font-size: 16px;
	font-weight: 500;
	position: relative;
	padding: 8px 5px;
}

/* Dropdown Arrow */

.main-menu .dropdown-toggle::after {
	font-size: 12px;
	margin-left: 6px;
}

/* Hover underline like screenshot */

.main-menu .nav-item.active>.nav-link::before,
.main-menu .nav-link:hover::before {
	content: "";
	position: absolute;
	left: 0;
	top: -26px;
	width: 100%;
	height: 4px;
	background: #b89b6a;
	border-radius: 0px 0px 5px 5px;
}

/* DROPDOWN MENU BOX */

.dropdown-menu {
	width: max-content;
	min-width: 260px;
}

.dropdown-menu {
	border: none;
	border-radius: 0;
	padding: 25px 0;
	min-width: 260px;
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
	margin-top: 15px;
}

/* Dropdown Items */

.dropdown-item {
	padding: 12px 30px;
	font-size: 15px;
	font-weight: 400;
	color: #666;
	transition: 0.3s;
}

/* Hover Item */

.dropdown-item:hover {
	background: transparent;
	color: #b89b6a;
}

/* Active Dropdown Item */

.active-drop {
	color: #b89b6a !important;
	position: relative;
}

.active-drop::before {
	content: "—";
	position: absolute;
	left: 15px;
	color: #b89b6a;
}

.main-menu .nav-item {
	flex: 0 0 auto;
}

/* SHOW DROPDOWN ON HOVER */

.nav-item.dropdown:hover .dropdown-menu {
	display: block;
}

.dropdown-menu {
	display: none;
}

/* Show dropdown on hover only desktop */
/* Desktop Hover Dropdown Fix */
@media (min-width: 992px) {

	.nav-item.dropdown {
		position: relative;
	}

	.dropdown-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		margin-top: 0;
	}

	/* Keep dropdown open when hovering parent OR menu */
	.nav-item.dropdown:hover>.dropdown-menu,
	.nav-item.dropdown .dropdown-menu:hover {
		display: block;
	}
}

.nav-link {
	color: white;
}

.hero-nav {
	position: absolute;
	width: 100%;
	z-index: 10;
}

/* Social Bar Container */

.social-bar {
	position: absolute;
	left: 25px;
	top: 35%;
	z-index: 20;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 25px;
}

/* Vertical Line */

.social-line {
	width: 1px;
	height: 140px;
	background: rgba(255, 255, 255, 0.7);
}

/* Icons Wrapper */

.social-icons {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

/* Icons Style */

.social-icons i {
	font-size: 16px;
	color: white;
	cursor: pointer;
	transition: 0.3s;
}

.social-icons i:hover {
	color: #b89b6a;
}

/* Slides */

.slide-bg {
	height: 100vh;
	background-size: cover;
	background-position: center;
}

.overlay {
	inset: 0;
	background: rgba(15, 40, 70, 0.65);
}

@media (max-width: 768px) {
	.social-bar {
		display: none !important;
	}
}

/* Hero Content */
/* Default hidden only before animation */

.hero-content p,
.hero-content h1,
.hero-content a {
	opacity: 0;
	transform: translateX(-60px);
}

/* Active slide will always show */

.splide__slide.is-active .hero-content p,
.splide__slide.is-active .hero-content h1,
.splide__slide.is-active .hero-content a {
	opacity: 1;
	transform: translateX(0);
}

/* Animation Keyframes */

@keyframes fadeLeft {
	from {
		opacity: 0;
		transform: translateX(-60px);
	}

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

/* Apply animation when class added */

.animate-text p {
	animation: fadeLeft 1s ease forwards;
}

.animate-text h1 {
	animation: fadeLeft 1s ease forwards;
	animation-delay: 0.3s;
}

.animate-text a {
	animation: fadeLeft 1s ease forwards;
	animation-delay: 0.6s;
}

.hero-content {
	position: absolute;
	top: 30%;
	z-index: 5;
	left: 10%;

}

.subtitle {
	font-size: 14px;
	color: #ddd;
	margin-bottom: 15px;
}

.title {
	font-size: 72px;
	line-height: 1.05;
	font-weight: 600;
	color: white;
}

/* Button */

.hero-btn {
	display: inline-block;
	margin-top: 35px;
	padding: 14px 35px;
	background: #b89b6a;
	color: white;
	text-decoration: none;
	font-size: 14px;
}

.hero-btn:hover {
	background: #d2b57d;
}

/* Bottom Bar */

.bottom-bar {
	position: absolute;
	bottom: 40px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	z-index: 20;
	color: white;
}

/* Call Box */

.call-box {
	display: flex;
	gap: 15px;
	align-items: center;
}

.call-box i {
	border: 2px solid #b89b7b;
	padding: 15px;
	border-radius: 50%;
	color: #b89b7b;
}

/* Slide Controls */

.slide-controls {
	display: flex;
	align-items: center;
	gap: 25px;
}

/* Numbers */

.slide-numbers {
	display: flex;
	gap: 25px;
}

.slide-numbers .num {
	font-size: 15px;
	font-weight: 600;
	color: white;
	opacity: 0.6;
	cursor: pointer;
	padding-bottom: 6px;
	position: relative;
}

.slide-numbers .num.active {
	opacity: 1;
}

.slide-numbers .num.active::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: white;
}

/* Line */

.slider-line {
	width: 180px;
	/* FIX */
	height: 1px;
	background: rgba(255, 255, 255, 0.7);
}

/* Arrows */

.slider-arrows {
	display: flex;
	gap: 10px;
}

.slider-arrows button {
	border: none;
	background: transparent;
	font-size: 22px;
	color: white;
	cursor: pointer;
}

.slider-arrows button:hover {
	color: #b89b6a;
}

/* =============================== */
/* ✅ RESPONSIVE FIXES */
/* =============================== */

@media (max-width: 1200px) {
	.title {
		font-size: 60px;
	}

	.hero-content {
		top: 28%;
	}
}

@media (max-width: 992px) {

	/* Navbar padding */
	.hero-nav {
		padding-top: 10px;
	}

	/* Hide Social Icons */
	.social-bar {
		display: none;
	}

	/* Hero Text Resize */
	.title {
		font-size: 50px;
	}

	.hero-content {
		top: 25%;
		text-align: center;
	}

	.hero-btn {
		padding: 12px 28px;
	}

	/* Bottom Bar Stack */
	.bottom-bar {
		flex-direction: column;
		gap: 25px;
		text-align: center;
	}

	.call-box {
		justify-content: center;
	}
}

@media (max-width: 768px) {

	/* Smaller Heading */
	.title {
		font-size: 38px;
		line-height: 1.2;
	}

	.subtitle {
		font-size: 13px;
	}

	.hero-content {
		top: 22%;
		padding: 0 15px;
		left: 0px;
	}

	.hero-btn {
		font-size: 13px;
		padding: 10px 24px;
	}

	/* Bottom Bar closer */
	.bottom-bar {
		bottom: 20px;
	}

	/* Call Icon Smaller */
	.call-box i {
		padding: 12px;
		font-size: 18px;
	}
}

@media (max-width: 480px) {

	/* Extra Small Screens */
	.title {
		font-size: 30px;
	}

	.hero-btn {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 992px) {
	.navbar-collapse {
		background: rgba(15, 40, 70, 0.95);
		padding: 20px;
		border-radius: 10px;
	}

	.nav-link {
		padding: 10px 0;
		font-size: 18px;
	}
}

/* Full White Sidebar */

.mobile-sidebar {
	background: #fff !important;
	width: 100% !important;
	/* FULL SCREEN like screenshot */
	max-width: 320px;
	/* Same size */
}

/* Remove padding */

.mobile-sidebar .offcanvas-body {
	padding: 0 !important;
}

/* Menu Styling */

.mobile-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-menu li {
	border-bottom: 1px solid #eee;
}

.mobile-menu li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 20px;
	font-size: 17px;
	font-weight: 500;
	color: #222;
	text-decoration: none;
}

.mobile-menu li a span {
	font-size: 22px;
	color: #444;
}

/* Hover Effect */

.mobile-menu li a:hover {
	background: #f8f8f8;
	color: #b89b6a;
}

/* Close Button */

.offcanvas-header {
	border-bottom: 1px solid #eee;
}

/*How It Works section*/
/* Main Section Wrapper */
.ak-scroll-section {
	padding: 90px 6%;
	position: relative;
}

/* Dot texture */
.ak-scroll-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(23, 62, 98, 0.06) 1px, transparent 1px);
	background-size: 26px 26px;
	pointer-events: none;
	z-index: 0;
}

/* ══════════════════════════════════
   HEADING
══════════════════════════════════ */
.ak-howworks-head {
	text-align: center;
	margin-bottom: 72px;
	position: relative;
	z-index: 1;
}

.ak-howworks-eyebrow {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #bda588;
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.ak-howworks-eyebrow::before,
.ak-howworks-eyebrow::after {
	content: '';
	width: 36px;
	height: 1.5px;
	background: #bda588;
	display: inline-block;
}

.ak-howworks-title {
	font-size: 50px !important;
	font-weight: 600 !important;
	color: #173e62 !important;
	line-height: 1.15 !important;
	margin-bottom: 18px !important;
	letter-spacing: -0.5px !important;
}

.ak-howworks-title em {
	font-style: italic;
	color: #bda588;
}

.ak-howworks-subtitle {
	font-size: 15px;
	color: #000;
	font-weight: 300;
	line-height: 1.75;
	max-width: 580px;
	margin: 0 auto;
}

/* ══════════════════════════════════
   WRAPPER
══════════════════════════════════ */
.ak-scroll-wrapper {
	display: flex;
	align-items: flex-start;
	gap: 60px;
	position: relative;
	z-index: 1;
}

/* ══════════════════════════════════
   LEFT STEPS
══════════════════════════════════ */
.ak-scroll-steps {
	width: 50%;
	/* extra padding so first/last steps hit threshold in middle of viewport */
	padding-top: 5vh;
	padding-bottom: 5vh;
}

.ak-scroll-step {
	min-height: 80vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	opacity: 0.2;
	transition: opacity 0.5s ease;
}

.ak-scroll-step.ak-active {
	opacity: 1;
}

/* Step box card */
.step-boxes {
	padding: 40px 44px;
	background: #ffffff;
	border-radius: 16px;
	border: 1px solid rgba(189, 165, 136, 0.25);
	box-shadow: 0 4px 30px rgba(23, 62, 98, 0.08);
	position: relative;
	overflow: hidden;
	transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
}

.ak-scroll-step.ak-active .step-boxes {
	box-shadow: 0 16px 56px rgba(23, 62, 98, 0.13);
	transform: translateX(6px);
	border-color: rgba(189, 165, 136, 0.5);
}

/* Tan left accent bar */
.step-boxes::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(180deg, #173e62, #bda588);
	border-radius: 4px 0 0 4px;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.ak-scroll-step.ak-active .step-boxes::before {
	opacity: 1;
}

/* Top right decorative circle */
.step-boxes::after {
	content: '';
	position: absolute;
	top: -40px;
	right: -40px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(189, 165, 136, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

/* Step label */
.ak-scroll-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: #bda588;
	background: rgba(189, 165, 136, 0.1);
	border: 1px solid rgba(189, 165, 136, 0.28);
	border-radius: 100px;
	padding: 5px 14px;
	margin-bottom: 18px;
}

.ak-scroll-label-num {
	background: #bda588;
	color: #fff;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	font-size: 9px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 18px;
}

/* Step heading */
.step-boxes h2 {
	font-size: 26px;
	font-weight: 600;
	color: #173e62;
	line-height: 1.25;
	margin-bottom: 14px;
	letter-spacing: -0.3px;
}

/* Step paragraph */
.step-boxes p {
	font-size: 14.5px;
	color: #000;
	font-weight: 300;
	line-height: 1.8;
	margin: 0;
}

/* Progress indicator */
.ak-step-progress {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid rgba(23, 62, 98, 0.07);
}

.ak-progress-bar {
	flex: 1;
	height: 3px;
	background: rgba(23, 62, 98, 0.08);
	border-radius: 2px;
	overflow: hidden;
}

.ak-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #173e62, #bda588);
	border-radius: 2px;
	width: 0%;
	transition: width 0.6s ease;
}

.ak-scroll-step.ak-active .ak-progress-fill {
	width: 100%;
}

.ak-progress-label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1.5px;
	color: #bda588;
	white-space: nowrap;
}

/* ══════════════════════════════════
   RIGHT STICKY IMAGE
══════════════════════════════════ */
.ak-scroll-sticky {
	position: sticky;
	top: calc(50vh - 240px);
	/* centers the 480px card vertically in viewport */
	width: 50%;
	height: 480px;
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: flex-start;
	/* CRITICAL: prevents stretching to full left column height */
}

.ak-scroll-card {
	width: 100%;
	max-width: 500px;
	height: 480px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	background: #d8d0c8;
	box-shadow: 0 24px 70px rgba(23, 62, 98, 0.18);
}

/* Decorative frame corners */
.ak-scroll-card::before {
	content: '';
	position: absolute;
	inset: 12px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	z-index: 3;
	pointer-events: none;
}

/* Step counter badge on image */
.ak-img-counter {
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 4;
	background: rgba(23, 62, 98, 0.85);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	padding: 10px 18px;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.ak-counter-num {
	font-size: 26px;
	font-weight: 700;
	color: #bda588;
	line-height: 1;
}

.ak-counter-label {
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
}

/* Image stack */
.ak-scroll-images {
	width: 100%;
	height: 100%;
	position: relative;
}

.ak-scroll-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transform: scale(1.06);
	transition: opacity 0.9s ease, transform 0.9s ease;
	z-index: 1;
}

.ak-scroll-img.ak-img-active {
	opacity: 1;
	transform: scale(1);
	z-index: 2;
}

/* Gradient overlay on image */
.ak-img-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
			transparent 40%,
			rgba(23, 62, 98, 0.45) 100%);
	z-index: 3;
	pointer-events: none;
}

/* ══════════════════════════════════
   MOBILE IMAGE
══════════════════════════════════ */
.ak-mobile-img {
	display: none;
	margin-bottom: 22px;
}

.ak-mobile-img img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	border-radius: 14px;
	box-shadow: 0 8px 28px rgba(23, 62, 98, 0.12);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 991px) {
	.ak-scroll-section {
		padding: 60px 5%;
	}

	.ak-scroll-wrapper {
		flex-direction: column;
		gap: 0;
	}

	.ak-scroll-steps {
		width: 100%;
	}

	.ak-scroll-sticky {
		display: none;
	}

	.ak-mobile-img {
		display: block;
	}

	.ak-scroll-step {
		height: auto;
		opacity: 1;
		margin-bottom: 28px;
	}

	.ak-scroll-step.ak-active .step-boxes {
		transform: none;
	}

	.step-boxes {
		padding: 28px 26px;
	}

	.step-boxes h2 {
		font-size: 21px;
	}

	.ak-howworks-title {
		font-size: 28px;
	}
}

@media (max-width: 576px) {
	.ak-scroll-section {
		padding: 50px 4%;
	}

	.step-boxes {
		padding: 22px 20px;
	}

	.ak-howworks-subtitle {
		font-size: 14px;
	}
}

/*How It Works section END*/

/*How Healthy Banana Homes Work*/
.banana-process-section {
	background: #eeeeee;
	padding: 90px 0 100px;
	position: relative;
	overflow: hidden;
}

/* Dot texture background */
.banana-process-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(23, 62, 98, 0.06) 1px, transparent 1px);
	background-size: 26px 26px;
	pointer-events: none;
	z-index: 0;
}

/* ══════════════════════
   HEADING
══════════════════════ */
.banana-head {
	text-align: center;
	margin-bottom: 64px;
	position: relative;
	z-index: 1;
}

.banana-eyebrow {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #bda588;
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.banana-eyebrow::before,
.banana-eyebrow::after {
	content: '';
	width: 36px;
	height: 1.5px;
	background: #bda588;
	display: inline-block;
}

.ak-banana-title {
	font-size: 48px !important;
	font-weight: 600 !important;
	color: #173e62 !important;
	line-height: 1.15 !important;
	margin-bottom: 16px !important;
	letter-spacing: -0.5px !important;
}

.ak-banana-subtitle {
	font-size: 15px;
	color: #000;
	font-weight: 300;
	line-height: 1.75;
	max-width: 580px;
	margin: 0 auto;
}

/* ══════════════════════
   GRID
══════════════════════ */
.banana-grid {
	position: relative;
	z-index: 1;
}

/* ══════════════════════
   CARD
══════════════════════ */
.banana-box {
	/* stagger animation on load */
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.banana-box.banana-visible {
	opacity: 1;
	transform: translateY(0);
}

.banana-card {
	background: #ffffff;
	padding: 38px 34px 36px;
	border-radius: 16px;
	box-shadow: 0 4px 24px rgba(23, 62, 98, 0.07);
	height: 100%;
	transition: box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
	text-align: left;
	border: 1px solid rgba(189, 165, 136, 0.2);
	position: relative;
	overflow: hidden;
}

/* Top accent bar — reveals on hover */
.banana-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #173e62, #bda588);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.banana-card:hover::before {
	transform: scaleX(1);
}

/* Bottom right glow */
.banana-card::after {
	content: '';
	position: absolute;
	bottom: -50px;
	right: -50px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(189, 165, 136, 0.07) 0%, transparent 70%);
	pointer-events: none;
	transition: opacity 0.4s;
	opacity: 0;
}

.banana-card:hover::after {
	opacity: 1;
}

.banana-card:hover {
	transform: translateY(-7px);
	box-shadow: 0 20px 55px rgba(23, 62, 98, 0.13);
	border-color: rgba(189, 165, 136, 0.45);
}

/* Step number badge */
.banana-step-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: rgba(23, 62, 98, 0.06);
	border: 1px solid rgba(23, 62, 98, 0.1);
	font-size: 16px;
	font-weight: 700;
	color: #173e62;
	margin-bottom: 20px;
	transition: background 0.3s, color 0.3s, border-color 0.3s;
	flex: 0 0 40px;
}

.banana-card:hover .banana-step-num {
	background: #173e62;
	color: #fff;
	border-color: #173e62;
}

/* Title */
.banana-card h5 {
	font-size: 19px;
	font-weight: 600;
	color: #173e62;
	margin-bottom: 14px;
	line-height: 1.3;
	letter-spacing: -0.2px;
	transition: color 0.3s;
}

.banana-card:hover h5 {
	color: #0e2b47;
}

/* Divider line */
.banana-card-line {
	width: 32px;
	height: 2px;
	background: linear-gradient(90deg, #bda588, transparent);
	margin-bottom: 14px;
	transition: width 0.4s ease;
}

.banana-card:hover .banana-card-line {
	width: 56px;
}

/* Paragraph */
.banana-card p {
	color: #000;
	font-size: 14px;
	line-height: 1.8;
	font-weight: 300;
	margin: 0;
}

/* ══════════════════════
   CONNECTOR DOTS
   (visible between top row cards)
══════════════════════ */
.banana-connector {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 20px;
}

.banana-connector-inner {
	display: flex;
	align-items: center;
	gap: 6px;
}

.banana-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #bda588;
	opacity: 0.4;
}

.banana-dot:nth-child(2) {
	opacity: 0.7;
	width: 8px;
	height: 8px;
}

.banana-dot:nth-child(3) {
	opacity: 0.4;
}

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media (max-width: 767px) {
	.banana-process-section {
		padding: 60px 0 70px;
	}

	.banana-card {
		padding: 28px 24px;
	}

	.banana-card h5 {
		font-size: 17px;
	}

	.ak-howworks-title {
		font-size: 26px;
	}
}

/*How Healthy Banana Homes Work END*/


/*Money that works for you section*/
.ak-money-hero-section {
	margin-top: 120px;
}

.ak-money-hero-wrapper {
	background: #eeeeee;
	border-radius: 35px;
	padding: 70px 60px;
	color: #fff;
}

.ak-money-title {
	font-size: 55px;
	font-weight: 700;
	line-height: 1.2;
	color: #bda588;
}

.ak-money-desc {
	margin-top: 20px;
	font-size: 18px;
	max-width: 420px;
	opacity: 0.8;
	color: #173e62;

}

/* IMAGE BOX */
.ak-money-imgbox {
	position: relative;
}

.img-burj {
	position: absolute;
	left: 0%;
	width: 85%;
	top: -326px;
	z-index: 3;
}

.ak-float-badge {
	position: absolute;
	background: #fff;
	color: #000;
	padding: 10px 18px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}

.ak-badge-top {
	left: 5px;
	bottom: 64px;
}

.ak-badge-bottom {
	right: 23px;
}

/* STAT BOX */
.ak-stat-box {
	background: #ffffff;
	border-radius: 18px;
	padding: 25px;
	transition: 0.3s ease;
	color: #173e62;
}

.ak-stat-box h2 {
	font-size: 22px !important;
	font-weight: 700;
}

.ak-stat-box p {
	margin: 0;
	font-size: 16px;
	opacity: 0.8;
}


/* Responsive */
@media (max-width: 768px) {
	.ak-money-title {
		font-size: 38px;
	}

	.ak-money-hero-wrapper {
		padding: 50px 25px;
	}

	.ak-badge-top,
	.ak-badge-bottom {
		display: none;
	}

	.img-burj {
		position: unset;
		width: 100% !important;
	}
}

@media (max-width: 992px) {
	.img-burj {
		position: unset;
		width: 35%;
	}

	.ak-badge-top {
		left: 77px;
		bottom: 153px;
	}

	.ak-badge-bottom {
		right: 23px;
		top: 196px;
	}
}

/*Money that works for you section END*/

/*Explore Our Exits section*/
.ak-exit-title {
	font-size: 42px;
	font-weight: 700;
}

/* Tabs */
.ak-exit-tabs {
	display: inline-flex;
	gap: 10px;
	padding: 10px;
	border-radius: 12px;
	background: #f8f9fc;
}

.ak-tab-btn {
	border: none;
	padding: 10px 22px;
	border-radius: 10px;
	background: transparent;
	font-weight: 600;
	cursor: pointer;
}

.ak-tab-btn.active {
	background: #eaf1ff;
	color: #0066ff;
}

/* Card */
.ak-exit-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	border:1px solid #efefef;
}

.ak-card-img {
	position: relative;
	height: 230px;
}

.ak-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ak-card-badge {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 85%;
	text-align: center;
	background: linear-gradient(135deg, rgb(0 0 0 / 13%), #173e62);
	color: #fff;
	padding: 15px;
	border-radius: 14px;
}

.ak-card-badge span {
	font-weight: 700;
}


/* Swiper Custom */
.ak-exit-swiper {
	padding-bottom: 40px;
}

/* Mobile Pagination */
.ak-mobile-pagination {
	display: none;
}

@media (max-width: 768px) {

	.ak-mobile-pagination {
		display: block;
	}

	.ak-nav-next,
	.ak-nav-prev {
		display: none;
	}

	.ak-exit-title {
		font-size: 28px;
	}

	.ak-ak-arrow-btn {
		display: none !important;
	}
}

/* Body */
.ak-card-body {
	padding: 20px;
}

.ak-card-info {
	padding: 0;
	margin: 15px 0;
	list-style: none;
	font-size: 14px;
	color: #555;
}

.ak-card-info li {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
}

.ak-card-total {
	font-weight: 700;
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #eee;
	padding-top: 12px;
}

.ak-card-total span {
	color: #0066ff;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
	content: 'next';
	font-size: 27px !important;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
	content: 'prev';
	font-size: 27px !important;
}

.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: var(--swiper-navigation-top-offset, 50%);
	width: 57px !important;
	height: 57px !important;
	margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000000 !important;
	background-color: white !important;
	border-radius: 52px !important;
}

.swiper-pagination {
	position: relative !important;

}

/*Explore Our Exits section END*/

/*testimonial*/
.ak-testimonial-wrapper {
	background: #eeeeee;
	padding: 90px 0 100px;
	position: relative;
	overflow: hidden;
}

/* Dot texture */
.ak-testimonial-wrapper::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(23, 62, 98, 0.06) 1px, transparent 1px);
	background-size: 26px 26px;
	pointer-events: none;
	z-index: 0;
}

/* ══════════════════════
   EYEBROW
══════════════════════ */
.ak-test-eyebrow {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #bda588;
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	position: relative;
	z-index: 1;
}

.ak-test-eyebrow::before,
.ak-test-eyebrow::after {
	content: '';
	width: 36px;
	height: 1.5px;
	background: #bda588;
	display: inline-block;
}

/* ══════════════════════
   HEADING
══════════════════════ */
.ak-testimonial-heading {
	font-size: 48px !important;
	font-weight: 600 !important;
	color: #173e62 !important;
	line-height: 1.15 !important;
	letter-spacing: -0.5px !important;
	position: relative !important;
	z-index: 1 !important;
}

.ak-testimonial-heading em {
	font-style: italic;
	color: #bda588;
}

.ak-testimonial-subtext {
	font-size: 15px;
	font-weight: 300;
	line-height: 1.75;
	max-width: 520px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* ══════════════════════
   SLIDER BOX
══════════════════════ */
.ak-testimonial-slider-box {
	background: #173e62;
	padding: 56px 0 0;
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

/* Dot texture inside navy box */
.ak-testimonial-slider-box::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 22px 22px;
	pointer-events: none;
	z-index: 0;
}

/* Edge fade masks */
.ak-slider-fade-left,
.ak-slider-fade-right {
	position: absolute;
	top: 0;
	height: calc(100% - 160px);
	/* only over the cards, not platform section */
	width: 100px;
	z-index: 3;
	pointer-events: none;
}

.ak-slider-fade-left {
	left: 0;
	background: linear-gradient(90deg, #173e62, transparent);
}

.ak-slider-fade-right {
	right: 0;
	background: linear-gradient(270deg, #173e62, transparent);
}

/* ══════════════════════
   TRACK & ANIMATION
══════════════════════ */
.ak-testimonial-track {
	display: flex;
	gap: 22px;
	width: max-content;
	animation: ak-scroll 30s linear infinite;
	position: relative;
	z-index: 2;
	padding: 4px 12px 44px;
}

.ak-testimonial-track:hover {
	animation-play-state: paused;
}

@keyframes ak-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* ══════════════════════
   CARDS
══════════════════════ */
.ak-testimonial-card {
	flex: 0 0 auto;
	width: 340px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 28px 26px;
	border-radius: 16px;
	text-align: left;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ak-testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}

/* Top tan accent line */
.ak-testimonial-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, #bda588, transparent);
	opacity: 0;
	transition: opacity 0.3s;
}

.ak-testimonial-card:hover::before {
	opacity: 1;
}

/* Highlighted card */
.ak-highlight {
	background: rgba(189, 165, 136, 0.13);
	border-color: rgba(189, 165, 136, 0.28);
}

.ak-highlight::before {
	opacity: 1 !important;
}

/* Quote mark */
.ak-quote {
	font-size: 52px;
	font-weight: 700;
	color: #bda588;
	opacity: 0.4;
	line-height: 0.8;
	margin-bottom: 14px;
	display: block;
}

/* Stars */
.ak-stars {
	color: #f5c518;
	font-size: 16px;
	letter-spacing: 2px;
	margin-bottom: 13px;
	display: block;
}

/* override text-white class on stars inside card */
.ak-testimonial-card .ak-stars.text-white {
	color: #f5c518 !important;
}

/* Text */
.ak-testimonial-text {
	font-size: 13.5px;
	line-height: 1.78;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 300;
	margin-bottom: 18px;
}

.ak-highlight .ak-testimonial-text {
	color: rgba(255, 255, 255, 0.72);
}

/* Thin accent rule */
.ak-card-rule {
	display: block;
	width: 28px;
	height: 1.5px;
	background: #bda588;
	margin-bottom: 12px;
	transition: width 0.4s ease;
}

.ak-testimonial-card:hover .ak-card-rule {
	width: 48px;
}

/* User name */
.ak-user {
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 4px;
}

/* small muted override */
.ak-testimonial-card small,
.ak-testimonial-card small.text-muted {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.38) !important;
	font-weight: 300;
}

.ak-highlight small {
	color: rgba(255, 255, 255, 0.45) !important;
}

/* ══════════════════════
   PLATFORM RATINGS
   (white bar at bottom of slider box)
══════════════════════ */
.ak-review-platforms {
	padding: 34px 48px 36px;
	position: relative;
	z-index: 2;
	border-top: 1px solid rgba(23, 62, 98, 0.06);
}

.ak-platform-box {
	text-align: center;
	padding: 22px 24px;
	border-radius: 14px;
	border: 1px solid rgba(23, 62, 98, 0.08);
	background: #f6f7f9;
	transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
	position: relative;
	overflow: hidden;
}

/* Top gradient bar */
.ak-platform-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #173e62, #bda588);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.ak-platform-box:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(23, 62, 98, 0.1);
	border-color: rgba(189, 165, 136, 0.3);
}

.ak-platform-box:hover::before {
	transform: scaleX(1);
}

.ak-platform-box .ak-stars {
	font-size: 22px;
	color: #f5c518;
	letter-spacing: 3px;
	margin-bottom: 6px;
}

.ak-rating-text {
	font-size: 20px;
	font-weight: 700;
	color: #173e62;
}

/* Review button */
.ak-review-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #173e62;
	text-decoration: none;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	transition: color 0.3s, gap 0.3s;
}

.ak-review-btn:hover {
	color: #bda588;
	gap: 14px;
}

.ak-arrow-circle {
	width: 34px;
	height: 34px;
	background: #173e62;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	color: #fff;
	transition: background 0.3s, transform 0.3s;
}

.ak-review-btn:hover .ak-arrow-circle {
	background: #bda588;
	transform: translateX(4px);
}

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media (max-width: 992px) {
	.ak-testimonial-card {
		width: 300px;
	}
}

@media (max-width: 767px) {
	.ak-testimonial-wrapper {
		padding: 60px 0 70px;
	}

	.ak-testimonial-heading {
		font-size: 26px;
	}

	.ak-testimonial-card {
		width: 265px;
		padding: 22px 18px;
	}

	.ak-testimonial-slider-box {
		padding-top: 40px;
		border-radius: 18px;
	}

	.ak-review-platforms {
		padding: 26px 16px 28px;
	}

	.ak-platform-box .ak-stars {
		font-size: 18px;
	}
}

/*testiminial end*/

/*faq*/
.ak-faq-wrapper {
	background: #eeeeee;
	padding: 90px 0 100px;
	position: relative;
	overflow: hidden;
}

/* Dot texture */
.ak-faq-wrapper::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle, rgba(23, 62, 98, 0.06) 1px, transparent 1px);
	background-size: 26px 26px;
	pointer-events: none;
	z-index: 0;
}

/* Navy arc decoration bottom right */
.ak-faq-wrapper::after {
	content: '';
	position: absolute;
	bottom: -200px;
	right: -200px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	border: 60px solid rgba(23, 62, 98, 0.04);
	pointer-events: none;
	z-index: 0;
}

/* ══════════════════════
   HEADING
══════════════════════ */
.ak-faq-heading-wrapper {
	position: relative;
	z-index: 1;
	margin-bottom: 60px;
}

.ak-faq-eyebrow {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #bda588;
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.ak-faq-eyebrow::before,
.ak-faq-eyebrow::after {
	content: '';
	width: 36px;
	height: 1.5px;
	background: #bda588;
	display: inline-block;
}

.ak-faq-heading {
	font-size: 48px !important;
	font-weight: 600 !important;
	color: #173e62 !important;
	line-height: 1.15 !important;
	margin-bottom: 14px !important;
	letter-spacing: -0.5px !important;
}

.ak-faq-heading em {
	font-style: italic;
	color: #bda588;
}

.ak-faq-subtext {
	font-size: 15px;
	color: #7a8a96;
	font-weight: 300;
	line-height: 1.7;
	max-width: 480px;
	margin: 0 auto;
}

/* ══════════════════════
   ACCORDION WRAPPER
══════════════════════ */
.ak-faq-accordion {
	max-width: 780px;
	position: relative;
	z-index: 1;
}

/* ══════════════════════
   ACCORDION ITEM
══════════════════════ */
.ak-faq-item {
	border: 1px solid rgba(23, 62, 98, 0.08) !important;
	margin-bottom: 12px;
	border-radius: 14px !important;
	overflow: hidden;
	box-shadow: 0 2px 16px rgba(23, 62, 98, 0.06);
	background: #ffffff;
	transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.ak-faq-item:hover {
	box-shadow: 0 8px 32px rgba(23, 62, 98, 0.11);
	border-color: rgba(189, 165, 136, 0.3) !important;
}

/* ══════════════════════
   ACCORDION BUTTON
══════════════════════ */
.ak-faq-btn {
	background: #ffffff !important;
	font-size: 15px;
	font-weight: 500;
	color: #173e62 !important;
	padding: 22px 28px;
	border-radius: 14px !important;
	display: flex;
	align-items: center;
	gap: 16px;
	box-shadow: none !important;
	border: none;
	width: 100%;
	text-align: left;
	transition: background 0.3s, color 0.3s;
}

.ak-faq-btn:focus {
	box-shadow: none !important;
	outline: none;
}

/* Active state */
.ak-faq-btn:not(.collapsed) {
	background: #ffffff !important;
	color: #173e62 !important;
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

/* Step number circle */
.ak-faq-num {
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(23, 62, 98, 0.06);
	border: 1px solid rgba(23, 62, 98, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	color: #173e62;
	transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.ak-faq-btn:not(.collapsed) .ak-faq-num {
	background: #173e62;
	color: #ffffff;
	border-color: #173e62;
}

/* Question text */
.ak-faq-question-text {
	flex: 1;
	line-height: 1.4;
}

/* Custom chevron — replace Bootstrap default */
.ak-faq-btn::after {
	display: none !important;
}

.ak-faq-chevron {
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(189, 165, 136, 0.1);
	border: 1px solid rgba(189, 165, 136, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	transition: background 0.3s, transform 0.4s, border-color 0.3s;
}

.ak-faq-chevron svg {
	width: 12px;
	height: 12px;
	stroke: #bda588;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.4s;
}

.ak-faq-btn:not(.collapsed) .ak-faq-chevron {
	background: #bda588;
	border-color: #bda588;
	transform: rotate(0deg);
}

.ak-faq-btn:not(.collapsed) .ak-faq-chevron svg {
	stroke: #fff;
	transform: rotate(180deg);
}

/* ══════════════════════
   ACCORDION BODY
══════════════════════ */
.ak-faq-body {
	text-align: left;
	padding: 20px 35px;
	/* aligns with text after number */
	font-size: 14px;
	font-weight: 300;
	color: #000;
	line-height: 1.85;
	border-top: 1px solid rgba(23, 62, 98, 0.06);
}

/* ══════════════════════
   BOTTOM CTA
══════════════════════ */
.ak-faq-cta-wrap {
	position: relative;
	z-index: 1;
	margin-top: 48px;
	padding: 36px 40px;
	background: #173e62;
	border-radius: 16px;
	max-width: 780px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	box-shadow: 0 12px 40px rgba(23, 62, 98, 0.18);
}

.ak-faq-cta-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 16px;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 20px 20px;
	pointer-events: none;
}

.ak-faq-cta-text {
	font-size: 20px;
	font-weight: 600;
	color: #ffffff;
	line-height: 1.3;
	position: relative;
	z-index: 1;
	margin-bottom:0px;
}

.ak-faq-cta-text span {
	color: #bda588;
	font-style: italic;
}

.ak-faq-cta-btn {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #bda588;
	color: #173e62;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-decoration: none;
	padding: 13px 26px;
	border-radius: 8px;
	white-space: nowrap;
	transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.ak-faq-cta-btn:hover {
	background: #cdb89a;
	color: #173e62;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(189, 165, 136, 0.35);
}

.ak-faq-cta-arrow {
	transition: transform 0.3s;
}

.ak-faq-cta-btn:hover .ak-faq-cta-arrow {
	transform: translateX(4px);
}

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media (max-width: 767px) {
	.ak-faq-wrapper {
		padding: 60px 0 70px;
	}

	.ak-faq-heading {
		font-size: 26px;
	}

	.ak-faq-btn {
		padding: 18px 20px;
		font-size: 14px;
		gap: 12px;
	}

	.ak-faq-body {
		padding: 0 20px 20px 64px;
	}

	.ak-faq-cta-wrap {
		padding: 26px 24px;
		flex-direction: column;
		align-items: flex-start;
	}

	.ak-faq-cta-text {
		font-size: 17px;
	}
}

/*faq END*/

/*footer section*/
.ak-footer-top {
	background: url(../images/footer-img-1.webp) no-repeat center center;
	background-size: cover;
	padding: 90px 0;
	border-bottom: 1px solid #bea27f3b;
}

/* Dark Overlay */
.ak-footer-top::before {
	content: "";
	inset: 0;
	background: rgba(14, 45, 70, 0.85);
}

.ak-footer-top .container {
	position: relative;
	z-index: 2;
}

/* Heading */
.ak-footer-heading {
	font-size: 44px;
	font-weight: 600;
	color: #fff;
}

/* Labels */
.ak-footer-label {
	font-size: 11px;
	letter-spacing: 2px;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
}

/* Info */
.ak-footer-info {
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	margin-top: 8px;
}

/* Address */
.ak-footer-address {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	line-height: 1.8;
}

/* Social */
.ak-footer-social {
	display: flex;
	gap: 12px;
}

.ak-footer-social a {
	color: #fff;
	font-size: 14px;
	transition: 0.3s;
}

.ak-footer-social a:hover {
	color: #b89b7b;
}

/* Divider */
.ak-footer-line {
	margin-top: 60px;
	border-color: rgba(255, 255, 255, 0.15);
}

/* =============================== */
/* BOTTOM FOOTER */
/* =============================== */

.ak-footer-bottom {
	background: #173e62;
	padding: 35px 0;
	color: #fff;
}

/* Titles */
.ak-footer-title {
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 20px;
	color: #fff;
}

/* Text */
.ak-footer-text {
	font-size: 14px;
	line-height: 1.9;
	opacity: 0.75;
}

/* Links */
.ak-footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

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

.ak-footer-links a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	text-decoration: none;
	transition: 0.3s;
}

.ak-footer-links a:hover {
	color: #b89b7b;
}

/* Newsletter Form */
.ak-footer-form input {
	width: 100%;
	padding: 14px;
	border: none;
	outline: none;
	margin-bottom: 15px;
	border-radius: 2px;
}

.ak-footer-form button {
	width: 100%;
	padding: 14px;
	border: none;
	background: #b89b7b;
	color: #fff;
	font-size: 13px;
	letter-spacing: 2px;
	transition: 0.3s;
}

.ak-footer-form button:hover {
	background: #d2b48c;
}

/* Copyright */
.ak-footer-copy {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: 25px;
	font-size: 16px;
	opacity: 0.7;
	justify-items: center;
}

.ak-footer-copy span {
	color: #b89b7b;
}

/* Responsive */
@media (max-width: 768px) {
	.ak-footer-copy {
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}
}

/*footer section end*/


/*scroll to top button*/
.ak-scroll-top {
	position: fixed;
	bottom: 25px;
	right: 25px;

	width: 55px;
	height: 55px;

	border: none;
	border-radius: 3px;

	background: #b89b7b;
	color: #fff;

	font-size: 18px;
	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: center;

	opacity: 0;
	visibility: hidden;
	transition: 0.3s ease;

	z-index: 9999;
}

/* Show Button */
.ak-scroll-top.ak-show {
	opacity: 1;
	visibility: visible;
}

/* Hover Effect */
.ak-scroll-top:hover {
	background-color: #ac8d68;
	border-color: #ac8d68;
}

/*scroll to top button end*/