/* Fonts */
:root {
	--default-font: 'Roboto', system-ui, -apple-system, 'Segoe UI', Roboto,
		'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif,
		'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
	--heading-font: 'Raleway', sans-serif;
	--nav-font: 'Poppins', sans-serif;
}

/* 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: #78ff7f; /* 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: #78ff7f; /* 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: #78ff7f; /* 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: 'Bodoni Moda', 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: 'Bodoni Moda', serif;
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
	width: 94px;
	height: 94px;
	background: radial-gradient(
		var(--accent-color) 50%,
		color-mix(in srgb, var(--accent-color), transparent 75%) 52%
	);
	border-radius: 50%;
	display: block;
	position: relative;
	overflow: hidden;
}

.pulsating-play-btn:before {
	content: '';
	position: absolute;
	width: 120px;
	height: 120px;
	animation-delay: 0s;
	animation: pulsate-play-btn 2s;
	animation-direction: forwards;
	animation-iteration-count: infinite;
	animation-timing-function: steps;
	opacity: 1;
	border-radius: 50%;
	border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
	top: -15%;
	left: -15%;
	background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 100;
	transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border: none;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 200;
	animation: none;
	border-radius: 0;
}

.pulsating-play-btn:hover:after {
	border-left: 15px solid var(--accent-color);
	transform: scale(20);
}

@keyframes pulsate-play-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

/* 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: rgb(4, 69, 9);
	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: 33px;
	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: 27px;
	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: 24px;
	}

	.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: rgba(40, 40, 40, 0.9);
}

/*--------------------------------------------------------------
# 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: 22px;
		padding: 0 2px;
		font-family: 'Bodoni Moda', 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: 23px;
		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: 23px;
	}

	.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: 25px;
		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: 'Bodoni Moda', serif;
		font-size: 30px;
		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: 23px;
		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: 32px;
		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: var(--background-color);
	font-size: 21px;
	text-align: center;
	padding: 30px 0;
	position: relative;
}

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

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

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

.footer .social-links a {
	font-size: 25px;
	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;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	overflow: hidden;
	background-color: var(--background-color);
	transition: all 0.6s ease-out;
}

#preloader:before {
	content: '';
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid var(--accent-color);
	border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

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

/*--------------------------------------------------------------
# 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: 26px;
	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;
	}
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
	color: var(--default-color);
	background-color: var(--background-color);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 160px 0 80px 0;
	text-align: center;
	position: relative;
}

.page-title:before {
	content: '';
	background-color: color-mix(
		in srgb,
		var(--background-color),
		transparent 50%
	);
	position: absolute;
	inset: 0;
}

.page-title h1 {
	font-size: 37px;
	font-weight: 700;
	margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	justify-content: center;
	padding: 0;
	margin: 0;
	font-size: 17px;
	font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
	padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
	content: '/';
	display: inline-block;
	padding-right: 10px;
	color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
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: 32px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}

.section-title h2:after {
	content: '';
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: var(--accent-color);
	left: 0;
	right: 0;
	bottom: 0;
}

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

/*--------------------------------------------------------------
# main-dis_consult Section
--------------------------------------------------------------*/
.main-dis_consult {
	background-color: #f5f5f5;
	padding: 0;
	margin: 0;
	overflow: hidden;
	font-family: 'Bodoni Moda', serif;
}

.main-dis_consult-wrapper {
	display: flex;
	flex-direction: row;
	min-height: 100vh;
	position: relative;
	background: #ffffff;
}

.main-dis_consult-content {
	flex: 1;
	padding: 5rem 4rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 2;
}

.main-title {
	font-size: 3.24rem;
	line-height: 1.2;
	color: #1e3b24;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.main-subtitle {
	font-size: 1.3rem;
	line-height: 1.8;
	color: #475569;
	max-width: 550px;
	margin-bottom: 2.5rem;
}

.cta-button {
	display: inline-block;
	padding: 0.9rem 2.2rem;
	background-color: #1e3b24;
	color: #fff;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.cta-button:hover {
	background-color: #334155;
}

.main-dis_consult-image {
	flex: 1;
	background-image: url('../img/ai.png'); /* replace with relevant interior image */
	background-size: cover;
	background-position: center;
	min-height: 100vh;
	filter: grayscale(10%) brightness(95%);
}

@media (max-width: 992px) {
	.main-dis_consult-wrapper {
		flex-direction: column;
	}

	.main-dis_consult-content {
		padding: 3rem 2rem;
		text-align: center;
		align-items: center;
	}

	.main-dis_consult-image {
		min-height: 300px;
	}

	.main-title {
		font-size: 2.1rem;
	}

	.main-subtitle {
		font-size: 1.1rem;
	}
}

/*--------------------------------------------------------------
# about-dis_consult Section
--------------------------------------------------------------*/

.about-dis_consult {
	background-color: #f9fafb;
	padding: 6rem 2rem;
	font-family: 'Bodoni Moda', serif;
}

.about-dis_consult-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	align-items: center;
	gap: 4rem;
	max-width: 1300px;
	margin: 0 auto;
}

.about-dis_consult-image img {
	width: 100%;
	height: auto;
	border-radius: 1.5rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	object-fit: cover;
	transition: transform 0.4s ease;
}

.about-dis_consult-image img:hover {
	transform: scale(1.02);
}

.about-dis_consult-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.about-title {
	font-size: 2.7rem;
	color: #1e3b24;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.about-subtitle {
	font-size: 1.3rem;
	color: #475569;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.about-list {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem;
	color: #334155;
}

.about-list li {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 0.8rem;
	display: flex;
	align-items: flex-start;
}

.about-list li span {
	color: #3b82f6;
	font-weight: bold;
	margin-right: 0.5rem;
	font-size: 1.1rem;
}

.about-closing {
	font-size: 1.2rem;
	color: #475569;
	line-height: 1.8;
}

@media (max-width: 992px) {
	.about-dis_consult-wrapper {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}

	.about-dis_consult-image img {
		max-height: 500px;
	}

	.about-title {
		font-size: 2.1rem;
	}

	.about-subtitle,
	.about-closing,
	.about-list li {
		font-size: 1rem;
	}
}

.serv-dis_consult {
	background-color: #f8fafc;
	padding: 6rem 2rem;
	font-family: 'Bodoni Moda', serif;
}

.services-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem;
}

.section-heading {
	font-size: 2.7rem;
	color: #1e3b24;
	font-weight: 700;
	margin-bottom: 1rem;
	letter-spacing: 0.5px;
}

.section-subheading {
	font-size: 1.125rem;
	color: #475569;
	line-height: 1.8;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2.5rem;
	max-width: 1300px;
	margin: 0 auto;
}

.service-card {
	background-color: #ffffff;
	border-radius: 1.25rem;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
	padding: 2.5rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	border: 1px solid transparent;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
	border-color: #3b82f6;
}

.service-icon {
	font-size: 2.5rem;
	margin-bottom: 1.25rem;
	color: #3b82f6;
}

.service-content h3 {
	font-size: 1.35rem;
	color: #0f172a;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.service-content p {
	font-size: 1rem;
	color: #475569;
	line-height: 1.7;
}

@media (max-width: 768px) {
	.section-heading {
		font-size: 2rem;
	}

	.section-subheading {
		font-size: 1rem;
	}

	.service-icon {
		font-size: 2rem;
	}
}

/*--------------------------------------------------------------
# dis_consult-results Section
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;600&family=Playfair+Display:wght@500;700&display=swap');
.dis_consult-results {
	background: radial-gradient(circle at top right, #e8f4f8, #ffffff);
	padding: 80px 0;
	font-family: 'Bodoni Moda', serif;
	color: #1e3b24;
	position: relative;
}

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

.highlight-title {
	font-size: 3rem;
	font-weight: 800;
	background: linear-gradient(90deg, #076411, #63f17d);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: glowTitle 3s ease-in-out infinite;
	margin-bottom: 1rem;
}

@keyframes glowTitle {
	0%,
	100% {
		text-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
	}
	50% {
		text-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
	}
}

.subheading p {
	font-size: 1.125rem;
	color: #475569;
	line-height: 1.8;
}

.results-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.dis_consult-results-item {
	background: #fff;
	padding: 40px 25px;
	border-radius: 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
	position: relative;
	cursor: pointer;
}

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

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

.dis_consult-results-item p {
	font-size: 1.1rem;
	font-weight: 600;
	color: #334155;
	text-transform: uppercase;
}

@media (max-width: 992px) {
	.highlight-title {
		font-size: 2.2rem;
	}

	.results-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.dis_consult-results-item span {
		font-size: 2.8rem;
	}

	.dis_consult-results-item p {
		font-size: 1rem;
	}
}

@media (max-width: 768px) {
	.results-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.dis_consult-results-item span {
		font-size: 2.2rem;
	}

	.dis_consult-results-item p {
		font-size: 1rem;
	}
}

/*--------------------------------------------------------------
# dis_consult-qa Section
--------------------------------------------------------------*/
.dis_consult-qa {
	background-color: #f9fafb;
	padding: 6rem 2rem;
	font-family: 'Bodoni Moda', serif;
}

.faq-wrapper {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.faq-title {
	font-size: 2.8rem;
	color: #1f2937;
	font-weight: 700;
	margin-bottom: 1rem;
}

.faq-subtitle {
	font-size: 1.125rem;
	color: #6b7280;
	max-width: 650px;
	margin: 0 auto 3rem;
}

.faq-list {
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.faq-item {
	background-color: #ffffff;
	border-radius: 1rem;
	border: 1px solid #e5e7eb;
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.faq-question {
	width: 100%;
	padding: 1.5rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
	background: none;
	border: none;
	text-align: left;
	position: relative;
	cursor: pointer;
	color: #111827;
	transition: background 0.2s ease;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 2rem;
	font-size: 1.5rem;
	color: #3b82f6;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
	content: '–';
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 2rem;
	background-color: #f3f4f6;
	transition:
		max-height 0.4s ease,
		padding 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 300px;
	padding: 1rem 2rem 1.5rem;
}

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

@media (max-width: 768px) {
	.faq-title {
		font-size: 2rem;
	}

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

	.faq-question {
		font-size: 1rem;
		padding: 1.25rem 1.5rem;
	}

	.faq-answer {
		padding: 0 1.5rem;
	}

	.faq-item.active .faq-answer {
		padding: 1rem 1.5rem 1.25rem;
	}
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Space+Grotesk:wght@300;500&display=swap');
#contact {
	background: #ffffff;
	padding: 6rem 2rem;
	font-family: 'Bodoni Moda', serif;
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	max-width: 1300px;
	margin: 0 auto;
	gap: 4rem;
	align-items: center;
}

.contact-info {
	color: #1e3b24;
}

.contact-title {
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 1.2rem;
}

.contact-description {
	font-size: 1.125rem;
	color: #475569;
	line-height: 1.8;
	margin-bottom: 2rem;
	max-width: 500px;
}

.contact-highlights {
	list-style: none;
	padding: 0;
	color: #334155;
	font-size: 1rem;
	line-height: 1.7;
}

.contact-highlights li {
	margin-bottom: 0.8rem;
	position: relative;
	padding-left: 1.5rem;
}

.contact-highlights li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #076411;
	font-weight: bold;
}

.contact-form {
	background: #f8fafc;
	padding: 2.5rem;
	border-radius: 1rem;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.form-modern {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.form-modern input,
.form-modern textarea {
	width: 100%;
	padding: 14px 20px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	font-size: 1rem;
	background-color: #fff;
	color: #1f2937;
	transition:
		border 0.3s ease,
		background-color 0.3s ease;
}

.form-modern input:focus,
.form-modern textarea:focus {
	outline: none;
	border-color: #076411;
	background-color: #f9fafb;
}

.submit-btn {
	background-color: #076411;
	color: white;
	padding: 14px 32px;
	border: none;
	border-radius: 30px;
	font-size: 1rem;
	font-weight: 600;
	align-self: flex-start;
	cursor: pointer;
	transition:
		background 0.3s ease,
		transform 0.3s ease;
}

.submit-btn:hover {
	background-color: #0284c7;
	transform: translateY(-2px);
}

@media (max-width: 992px) {
	.contact-wrapper {
		grid-template-columns: 1fr;
	}

	.contact-title {
		font-size: 2.2rem;
		text-align: center;
	}

	.contact-description,
	.contact-highlights {
		text-align: center;
		margin: 0 auto;
	}

	.submit-btn {
		align-self: center;
	}
}

.footer-48201 {
	padding: 7rem 0;
	background-color: #044509;
	color: #fff;
}
.footer-48201 .footer-site-logo {
	font-size: 1.45rem;
	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;
	left: calc(50% - 225px);
	transform: translateX(-50%);
	background: #ffffff;
	color: #333;
	padding: 20px 30px;
	font-family: 'Bodoni Moda', serif;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	font-size: 21px;
	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: 20px;
	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;
}
