/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
	--background-color: #000000; /* Background color for the entire website, including individual sections */
	--default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
	--heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
	--accent-color: #bb6100; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
	--surface-color: #000000; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
	--contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
	--nav-color: #ffffff; /* The default color of the main navmenu links */
	--nav-hover-color: #bb6100; /* Applied to main navmenu links when they are hovered over or active */
	--nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
	--nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
	--nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
	--nav-dropdown-hover-color: #bb6100; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
	--background-color: #232121;
	--surface-color: #000000;
}

.dark-background {
	--background-color: #1c1c1a;
	--default-color: #ffffff;
	--heading-color: #ffffff;
	--surface-color: #252525;
	--contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
	scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
	color: var(--default-color);
	background-color: var(--background-color);
	font-family: 'Be Vietnam Pro', sans-serif;
}

a {
	color: var(--accent-color);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: color-mix(in srgb, var(--accent-color), transparent 25%);
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--heading-color);
	font-family: 'Be Vietnam Pro', sans-serif;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
	display: none;
	background: #df1529;
	color: #ffffff;
	text-align: left;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .sent-message {
	display: none;
	color: #ffffff;
	background: #059652;
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
	font-weight: 600;
}

.php-email-form .loading {
	display: none;
	background: var(--surface-color);
	text-align: center;
	padding: 15px;
	margin-bottom: 24px;
}

.php-email-form .loading:before {
	content: '';
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid var(--accent-color);
	border-top-color: var(--surface-color);
	animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
	--background-color: rgba(0, 0, 0, 0);
	--default-color: #ffffff;
	--heading-color: #ffffff;
	color: var(--default-color);
	background-color: #291908;
	padding: 10px 0;
	transition: all 0.5s;
	z-index: 997;
	border-bottom: 1px solid
		color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .logo {
	line-height: 1;
}

.header .logo img {
	max-height: 36px;
	margin-right: 8px;
}

.header .logo h1 {
	font-size: 32px;
	margin: 0;
	font-weight: 700;
	color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
	color: var(--contrast-color);
	background: var(--accent-color);
	font-size: 25px;
	padding: 8px 26px;
	margin: 0;
	border-radius: 50px;
	transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
	color: var(--contrast-color);
	background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
	.header .logo {
		order: 1;
	}

	.header .logo h1 {
		font-size: 28px;
	}

	.header .cta-btn {
		order: 2;
		margin: 0 15px 0 0;
		padding: 6px 20px;
	}

	.header .navmenu {
		order: 3;
	}
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
	--background-color: #291908;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
	.navmenu {
		padding: 0;
	}

	.navmenu ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navmenu li {
		position: relative;
	}

	.navmenu > ul > li {
		white-space: nowrap;
		padding: 15px 14px;
	}

	.navmenu > ul > li:last-child {
		padding-right: 0;
	}

	.navmenu a,
	.navmenu a:focus {
		color: color-mix(in srgb, var(--nav-color), transparent 30%);
		font-size: 20px;
		padding: 0 2px;
		font-family: 'Be Vietnam Pro', sans-serif;
		font-weight: 400;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
		position: relative;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 22px;
		line-height: 0;
		margin-left: 5px;
		transition: 0.3s;
	}

	.navmenu > ul > li > a:before {
		content: '';
		position: absolute;
		height: 2px;
		bottom: -27px;
		left: 0;
		background-color: var(--nav-hover-color);
		visibility: hidden;
		width: 0px;
		transition: all 0.3s ease-in-out 0s;
	}

	.navmenu a:hover:before,
	.navmenu li:hover > a:before,
	.navmenu .active:before {
		visibility: visible;
		width: 100%;
	}

	.navmenu li:hover > a,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-color);
	}

	.navmenu .dropdown ul {
		margin: 0;
		padding: 10px 0;
		background: var(--nav-dropdown-background-color);
		display: block;
		position: absolute;
		visibility: hidden;
		left: 14px;
		top: 130%;
		opacity: 0;
		transition: 0.3s;
		border-radius: 4px;
		z-index: 99;
		box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
	}

	.navmenu .dropdown ul li {
		min-width: 200px;
	}

	.navmenu .dropdown ul a {
		padding: 10px 20px;
		font-size: 26px;
		text-transform: none;
		color: var(--nav-dropdown-color);
	}

	.navmenu .dropdown ul a i {
		font-size: 22px;
	}

	.navmenu .dropdown ul a:hover,
	.navmenu .dropdown ul .active:hover,
	.navmenu .dropdown ul li:hover > a {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .dropdown:hover > ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navmenu .dropdown .dropdown ul {
		top: 0;
		left: -90%;
		visibility: hidden;
	}

	.navmenu .dropdown .dropdown:hover > ul {
		opacity: 1;
		top: 0;
		left: -100%;
		visibility: visible;
	}
}

/* Mobile Navigation */
@media (max-width: 1199px) {
	.mobile-nav-toggle {
		color: var(--nav-color);
		font-size: 27px;
		line-height: 0;
		margin-right: 10px;
		cursor: pointer;
		transition: color 0.3s;
	}

	.navmenu {
		padding: 0;
		z-index: 9997;
	}

	.navmenu ul {
		display: none;
		list-style: none;
		position: absolute;
		inset: 60px 20px 20px 20px;
		padding: 10px 0;
		margin: 0;
		border-radius: 6px;
		background-color: var(--nav-mobile-background-color);
		border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
		box-shadow: none;
		overflow-y: auto;
		transition: 0.3s;
		z-index: 9998;
	}

	.navmenu a,
	.navmenu a:focus {
		color: var(--nav-dropdown-color);
		padding: 10px 20px;
		font-family: 'Be Vietnam Pro', sans-serif;
		font-size: 32px;
		font-weight: 500;
		display: flex;
		align-items: center;
		justify-content: space-between;
		white-space: nowrap;
		transition: 0.3s;
	}

	.navmenu a i,
	.navmenu a:focus i {
		font-size: 22px;
		line-height: 0;
		margin-left: 5px;
		width: 30px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		transition: 0.3s;
		background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	}

	.navmenu a i:hover,
	.navmenu a:focus i:hover {
		background-color: var(--accent-color);
		color: var(--contrast-color);
	}

	.navmenu a:hover,
	.navmenu .active,
	.navmenu .active:focus {
		color: var(--nav-dropdown-hover-color);
	}

	.navmenu .active i,
	.navmenu .active:focus i {
		background-color: var(--accent-color);
		color: var(--contrast-color);
		transform: rotate(180deg);
	}

	.navmenu .dropdown ul {
		position: static;
		display: none;
		z-index: 99;
		padding: 10px 0;
		margin: 10px 20px;
		background-color: var(--nav-dropdown-background-color);
		transition: all 0.5s ease-in-out;
	}

	.navmenu .dropdown ul ul {
		background-color: rgba(33, 37, 41, 0.1);
	}

	.navmenu .dropdown > .dropdown-active {
		display: block;
		background-color: rgba(33, 37, 41, 0.03);
	}

	.mobile-nav-active {
		overflow: hidden;
	}

	.mobile-nav-active .mobile-nav-toggle {
		color: #fff;
		position: absolute;
		font-size: 33px;
		top: 15px;
		right: 15px;
		margin-right: 0;
		z-index: 9999;
	}

	.mobile-nav-active .navmenu {
		position: fixed;
		overflow: hidden;
		inset: 0;
		background: rgba(33, 37, 41, 0.8);
		transition: 0.3s;
	}

	.mobile-nav-active .navmenu > ul {
		display: block;
	}
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
	color: var(--default-color);
	background-color: #291908;
	font-size: 19px;
	text-align: center;
	padding: 30px 0;
	position: relative;
}

.footer h3 {
	font-size: 38px;
	font-weight: 700;
	position: relative;
	padding: 0;
	margin: 0 0 15px 0;
}

.footer p {
	font-size: 25px;
	font-style: italic;
	padding: 0;
	margin: 0 0 30px 0;
}

.footer .social-links {
	margin: 0 0 30px 0;
}

.footer .social-links a {
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-color);
	color: var(--contrast-color);
	line-height: 1;
	margin: 0 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

.footer .social-links a:hover {
	background: color-mix(in srgb, var(--accent-color), transparent 20%);
	text-decoration: none;
}

.footer .copyright {
	padding-top: 25px;
	border-top: 1px solid
		color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
	font-size: 19px;
	padding-top: 5px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: -15px;
	z-index: 99999;
	background-color: var(--accent-color);
	width: 44px;
	height: 44px;
	border-radius: 50px;
	transition: all 0.4s;
}

.scroll-top i {
	font-size: 25px;
	color: var(--contrast-color);
	line-height: 0;
}

.scroll-top:hover {
	background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
	color: var(--contrast-color);
}

.scroll-top.active {
	visibility: visible;
	opacity: 1;
	bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}
}

section,
.section {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 60px 0;
	scroll-margin-top: 72px;
	overflow: clip;
}

@media (max-width: 1199px) {
	section,
	.section {
		scroll-margin-top: 57px;
	}
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
	padding-bottom: 60px;
	position: relative;
}

.section-title h2 {
	font-size: 34px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.section-title p {
	margin-bottom: 0;
	color: color-mix(in srgb, var(--default-color) 90%, white 50%);
}

/*--------------------------------------------------------------
# main-mind_grow Section
--------------------------------------------------------------*/
.main-mind_grow {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(135deg, #0f2a27, #1e383b);
}

.main-mind_grow-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/mindset-back.jpg');
	background-size: cover;
	background-position: center;
	filter: brightness(0.3) grayscale(70%) blur(3px);
	z-index: 1;
	animation: zoomPan 20s ease-in-out infinite alternate;
}

@keyframes zoomPan {
	0% {
		transform: scale(1) translate(0, 0);
	}
	100% {
		transform: scale(1.1) translate(-2%, -2%);
	}
}

.main-mind_grow-foreground {
	position: relative;
	z-index: 2;
	max-width: 800px;
	padding: 2rem;
}

.glow-text {
	font-size: 3.5rem;
	font-family: 'Be Vietnam Pro', sans-serif;
	color: #fff;
	text-transform: uppercase;
}

.description p {
	font-family: 'Be Vietnam Pro', sans-serif;
	font-size: 1.25rem;
	line-height: 1.8;
	color: #e2e8f0;
	max-width: 700px;
	margin: 1.5rem auto 0;
	animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.glow-text {
		font-size: 2rem;
	}
	.description p {
		font-size: 1rem;
	}
	.main-mind_grow {
		height: auto;
		padding: 100px 0;
	}
}

/*--------------------------------------------------------------
# about-mind_grow Section
--------------------------------------------------------------*/

.about-mind_grow-container {
	display: flex;
	flex-direction: row-reverse;
	align-items: stretch;
	justify-content: space-between;
	gap: 6vw;
	padding: 8rem 5vw;
	background: linear-gradient(120deg, #f7f9fc, #e6f0ff);
	color: #0e1a2b;
	font-family: 'Be Vietnam Pro', sans-serif;
	position: relative;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.about-mind_grow-left {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 600px;
}

.section-title h2 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: #000;
}

.section-title p {
	font-size: 1.2rem;
	font-weight: 400;
	color: #000;
	margin-bottom: 2rem;
}

.about-mind_grow-content p {
	font-size: 1rem;
	line-height: 1.75;
	margin-bottom: 1.5rem;
	color: #000;
}

.about-mind_grow-content ul {
	padding: 0;
	list-style: none;
	margin: 1.5rem 0;
}

.about-mind_grow-content ul li {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	margin-bottom: 1rem;
}

.about-mind_grow-content ul li i {
	color: #3bf68f;
	font-size: 1.2rem;
	margin-top: 0.2rem;
}

.about-mind_grow-right {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-mind_grow-right img {
	max-width: 100%;
	height: auto;
	border-radius: 1rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	transition:
		transform 0.3s ease,
		filter 0.3s ease;
}

.about-mind_grow-right img:hover {
	transform: scale(1.02);
	filter: brightness(105%) contrast(1.05);
}

@media (max-width: 992px) {
	.about-mind_grow-container {
		flex-direction: column;
		padding: 4rem 2rem;
	}

	.section-title h2 {
		font-size: 2.5rem;
	}

	.section-title p {
		font-size: 1.1rem;
	}
}
#serv-mind_grow.section {
	background: linear-gradient(135deg, #f4f6fc, #fefefe);
	padding: 100px 0;
	font-family: 'Be Vietnam Pro', sans-serif;
	color: #222;
}

.section-title h2 {
	font-size: 2.8rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 1rem;
	color: #0b2545;
}

.section-title p {
	text-align: center;
	font-size: 1.2rem;
	max-width: 700px;
	margin: 0 auto 2.5rem;
	color: #495670;
}

/*--------------------------------------------------------------
# mind_grow-results Section
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600&family=Playfair+Display:wght@500;700&display=swap');

.mind_grow-results {
	background: radial-gradient(circle at top right, #f8fafc, #e2e8f0);
	padding: 100px 0;
	font-family: 'Be Vietnam Pro', sans-serif;
	color: #1e293b;
	position: relative;
}

.subheading {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 60px;
	padding: 0 1.5rem;
}

.highlight-title {
	font-size: 3rem;
	font-weight: 800;
	background: linear-gradient(90deg, #0ee986, #63f1b8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.subheading p {
	font-size: 1.15rem;
	color: #475569;
}

.mind_grow-results-item {
	background: #ffffff;
	padding: 60px 30px;
	border-radius: 12px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
	position: relative;
}

.mind_grow-results-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.mind_grow-results-item span {
	font-size: 3.5rem;
	font-weight: 700;
	color: #0f172a;
	display: block;
	margin-bottom: 0.5rem;
}

.mind_grow-results-item p {
	font-size: 1rem;
	font-weight: 500;
	color: #334155;
	text-transform: uppercase;
}

@media (max-width: 992px) {
	.highlight-title {
		font-size: 2.2rem;
	}
	.mind_grow-results-item span {
		font-size: 2.5rem;
	}
	.mind_grow-results-item p {
		font-size: 0.95rem;
	}
}

/*--------------------------------------------------------------
# mind_grow-qa Section
--------------------------------------------------------------*/
.mind_grow-qa {
	background: radial-gradient(circle at top left, #f1f5f9, #fff);
	padding: 100px 5vw;
	font-family: 'Be Vietnam Pro', sans-serif;
	color: #0f172a;
}

.content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px auto;
}

.glow-faq-title {
	font-size: 3rem;
	font-weight: 800;
	color: #0f172a;
}

.content p {
	font-size: 1.1rem;
	color: #33554e;
}

.mind_grow-qa-container {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.mind_grow-qa-item {
	background: #fff;
	border-radius: 12px;
	padding: 1.5rem 2rem;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.mind_grow-qa-item:hover {
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	transform: translateY(-3px);
}

.faq-toggle {
	display: none;
}

.faq-question {
	display: block;
	font-weight: 600;
	font-size: 1.2rem;
	cursor: pointer;
	position: relative;
	padding-left: 25px;
	transition: color 0.3s;
}

.faq-question::before {
	content: '+';
	position: absolute;
	left: 0;
	top: 0;
	font-size: 1.5rem;
	color: #3bf651;
	transition: transform 0.3s;
}

.faq-toggle:checked + .faq-question::before {
	content: '-';
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 0.4s ease;
	padding-left: 25px;
	margin-top: 0.5rem;
}

.faq-toggle:checked + .faq-question + .faq-answer {
	max-height: 500px;
	opacity: 1;
}

.faq-answer p {
	font-size: 1rem;
	line-height: 1.7;
	color: #475569;
	margin: 0;
}

@media (max-width: 768px) {
	.glow-faq-title {
		font-size: 2.2rem;
	}
	.faq-question {
		font-size: 1rem;
	}
	.faq-answer p {
		font-size: 0.95rem;
	}
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Space+Grotesk:wght@300;500&display=swap');
#contact {
	background: linear-gradient(120deg, #f8fafc, #e2e8f0);
	padding: 100px 5vw;
	font-family: 'Be Vietnam Pro', sans-serif;
	position: relative;
}

.animated-title {
	font-size: 3rem;
	font-weight: 800;
	text-align: center;
	background: linear-gradient(90deg, #0ee991, #76f163);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#contact .section-title p {
	text-align: center;
	font-size: 1.1rem;
	color: #475569;
	max-width: 650px;
	margin: 1rem auto 3rem;
}

.glass-form {
	background: rgba(255, 255, 255, 0.7);
	border-radius: 1rem;
	padding: 2rem;
	backdrop-filter: blur(8px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
	animation: fadeInSlide 1s ease-out;
}

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

#contact .form-control {
	width: 100%;
	padding: 14px 20px;
	font-size: 1rem;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	background: #fff;
	color: #1e293b;
	transition: border-color 0.3s;
}

#contact .form-control:focus {
	outline: none;
	border-color: #12e90e;
	background-color: #f9fafb;
}

.btn-submit {
	background: #3de90e;
	color: #fff;
	padding: 14px 36px;
	border: none;
	border-radius: 30px;
	font-size: 1rem;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-submit:hover {
	background: #02c726;

	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.animated-title {
		font-size: 2rem;
	}
	#contact {
		padding: 70px 1.5rem;
	}
}

.footer-48201 {
	padding: 7rem 0;
	background-color: #291908;
	color: #fff;
}
.footer-48201 .footer-site-logo {
	font-size: 1.5rem;
	color: #fff;
}
.footer-48201 .nav-links li {
	margin-bottom: 10px;
}
.footer-48201 .nav-links li a {
	color: #fff;
}
.footer-48201 .nav-links li a:hover {
	color: #fff;
}
.footer-48201 .btn.btn-tertiary {
	background-color: #e42c64;
	color: #fff;
	border-radius: 30px;
	border: none;
	padding: 10px 20px;
}
.footer-48201 .social li {
	display: inline-block;
}
.footer-48201 .social li a {
	color: gray;
	padding: 7px;
}
.footer-48201 .social li a:hover {
	color: #fff;
}
.footer-48201 .copyright {
	border-top: 1px solid #404040;
}

#cookie-popup {
	position: fixed;
	bottom: 30px;

	transform: translateX(-50%);
	background: #ffffff;
	color: #333;
	padding: 20px 30px;
	font-family: 'Be Vietnam Pro', sans-serif;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	font-size: 19px;
	display: none;
	opacity: 0; /* Initially invisible */
	transform: translateY(50px); /* Slide up effect */
	transition:
		opacity 0.5s ease,
		transform 0.5s ease;
	max-width: 450px;
	z-index: 9999;
}

#cookie-popup.show {
	opacity: 1;
	transform: translateY(0);
}

#cookie-popup p {
	margin: 0;
	padding: 0;
}

#cookie-popup .popup-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#cookie-popup button {
	background: #28a745;
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 50px;
	cursor: pointer;
	font-size: 19px;
	transition:
		background-color 0.3s ease,
		transform 0.3s ease;
}

#cookie-popup button:hover {
	background: #218838;
	transform: scale(1.05);
}

#cookie-popup .popup-message {
	max-width: 80%;
}

#cookie-popup .popup-message a {
	color: #28a745;
	text-decoration: none;
	font-weight: bold;
	transition: color 0.3s ease;
}

#cookie-popup .popup-message a:hover {
	color: #218838;
}

.pricing-plans {
	padding: 60px 0;
	background-color: #bb6100;
}

.section-title h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.pricing-item {
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 30px;
	text-align: center;
	background-color: #f9f9f9;
	transition: transform 0.3s;
}

.pricing-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-header h3 {
	font-size: 1.8rem;
	margin-bottom: 15px;
	color: #000;
}

.price {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 20px;
	color: #22ff00;
}

.price .currency {
	font-size: 1.5rem;
	font-weight: normal;
}

.pricing-body ul {
	list-style-type: none;
	padding: 0;
	margin-bottom: 20px;
}

.pricing-body ul li {
	margin-bottom: 10px;
	font-size: 1rem;
	color: #000;
}

.pricing-footer .btn {
	background-color: #09ff00;
	color: white;
	padding: 12px 30px;
	text-transform: uppercase;
	font-weight: bold;
	border-radius: 30px;
	text-decoration: none;
}

.pricing-footer .btn:hover {
	background-color: #18b300;
}

/* Responsive Styles */
@media (max-width: 767px) {
	.pricing-item {
		padding: 20px;
	}

	.pricing-header h3 {
		font-size: 1.5rem;
	}

	.price {
		font-size: 1.5rem;
	}
}

.privacy-policy,
.cookie-policy,
.terms {
	padding-top: 120px;
}
