/* =========================================================
   Font Faces
========================================================= */

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2');
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2');
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Zen Dots';
    src: url('../fonts/ZenDots-Regular.woff2') format('woff2');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

/* =========================================================
   Root Variables
========================================================= */
:root {
    /* Fonts */
    --font-body: 'Poppins', sans-serif;
    --font-heading: 'Zen Dots', sans-serif;

    /* Colors */
    --primary: #11DB70;
    --white: #FFFFFF;
    --black: #000000;
    --body-bg: #000000;

    /* Borders */
    --border-primary: 1px solid #11DB70;
    --border-radius: 15px;

    /* Container */
    --container-width: 1200px;
    --container-padding: 20px;

    /* Section */
    --section-space: 100px;

    /* Transition */
    --transition: all .3s ease;

    /* Shadow */
    --shadow-primary: 0 8px 24px rgba(17, 219, 112, .22);
}


/* =========================================================
   Basic Reset
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: var(--body-bg);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    display: block;
}

section {
    position: relative;
}

img,
svg,
video,
canvas,
iframe {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

table {
    width: 100%;
    border-collapse: collapse;
}

figure {
    margin: 0;
}

address {
    font-style: normal;
}

a {
    outline: none;
}


/* =========================================================
   Selection
========================================================= */

::selection {
    background-color: var(--primary);
    color: var(--black);
}


/* =========================================================
   Typography
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6,
.heading-1,
.heading-2,
.heading-3,
.heading-4,
.heading-5,
.heading-6,
.section-title {
    margin-top: 0;
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 400;
    color: var(--white);
}

h1,
.heading-1 {
    margin-bottom: 20px;
    font-size: 38px;
    line-height: 42px;
}

h2,
.heading-2,
.section-title {
    margin-bottom: 20px;
    font-size: 32px;
    line-height: 38px;
}

h3,
.heading-3 {
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 32px;
}

h4,
.heading-4 {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 28px;
}

h5,
.heading-5 {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 26px;
}

h6,
.heading-6 {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 24px;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
.heading-1 span,
.heading-2 span,
.heading-3 span,
.heading-4 span,
.heading-5 span,
.heading-6 span,
.section-title span {
    color: var(--primary);
}

p {
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
}

p:last-child {
    margin-bottom: 0;
}

strong,
b {
    font-weight: 600;
}

small {
    font-size: 13px;
    line-height: 22px;
}


/* =========================================================
   Links
========================================================= */

a {
    color: inherit;
    text-decoration: none;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

/* a:hover,
a:focus {
    color: var(--primary);
} */

a:focus-visible,
/* button:focus-visible, */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}


/* =========================================================
   Lists
========================================================= */

ul,
ol {
    margin-top: 0;
    margin-bottom: 20px;
    padding-left: 22px;
}

li {
    margin-bottom: 8px;
}

li:last-child {
    margin-bottom: 0;
}


/* =========================================================
   Form Elements
========================================================= */

input,
textarea,
select {
    width: 100%;
    border: var(--border-primary);
    border-radius: var(--border-radius);
    outline: none;
    background-color: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
}

input,
select {
    min-height: 52px;
    padding: 12px 18px;
}

textarea {
    min-height: 140px;
    padding: 15px 18px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: var(--white);
    opacity: 0.65;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);
}

select option {
    background-color: var(--body-bg);
    color: var(--white);
}


/* =========================================================
   Buttons
========================================================= */

.btn,
.button,
/* button, */
input[type="submit"] {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 12px 26px;
    overflow: hidden;

    border: 1px solid #195A3F;
    border-radius: var(--border-radius);

    background: linear-gradient(
        135deg,
        #12DA72 0%,
        #0B8847 100%
    );

    color: var(--black);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    text-decoration: none;

    transition:
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Crystal shine layer */
.btn::before,
.button::before,
/* button::before, */
input[type="submit"]::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -75%;
    z-index: -1;

    width: 45%;
    height: 200%;

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.12) 30%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.12) 70%,
        transparent 100%
    );

    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

/* Shine moves left to right */
.btn:hover::before,
.button:hover::before,
/* button:hover::before, */
input[type="submit"]:hover::before {
    left: 130%;
}

.btn:hover,
.button:hover,
/* button:hover, */
input[type="submit"]:hover {
    color: var(--black);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(17, 219, 112, 0.22);
    transform: translateY(-2px);
}

.btn:active,
.button:active,
/* button:active, */
input[type="submit"]:active {
    transform: translateY(0);
}

.js-portfolio-dropdown svg {
	transition: transform 0.3s ease;
}

.js-portfolio-dropdown[aria-expanded="true"] svg {
	transform: rotate(180deg);
}


/* =========================================================
   Outline Button
========================================================= */

.btn-outline {
    background: transparent;
    color: var(--white);
    border: var(--border-primary);
}

.btn-outline::before {
    z-index: -1;
}

.btn-outline:hover {
    background: linear-gradient(
        135deg,
        #12DA72 0%,
        #0B8847 100%
    );
    color: var(--black);
}


/* =========================================================
   Container
========================================================= */

.container {
    width: 100%;
    max-width: calc(var(--container-width) + (var(--container-padding) * 2));
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
}

.container-fluid {
    width: 100%;
    padding-right: var(--container-padding);
    padding-left: var(--container-padding);
}


/* =========================================================
   Grid
========================================================= */

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
}

[class*="col-"] {
    width: 100%;
    min-width: 0;
    padding-right: 10px;
    padding-left: 10px;
}

.col-1 {
    width: 8.333333%;
}

.col-2 {
    width: 16.666667%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.333333%;
}

.col-5 {
    width: 41.666667%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.333333%;
}

.col-8 {
    width: 66.666667%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.333333%;
}

.col-11 {
    width: 91.666667%;
}

.col-12 {
    width: 100%;
}


/* =========================================================
   Alignment Utilities
========================================================= */

.align-items-start {
    align-items: flex-start;
}

.align-items-center {
    align-items: center;
}

.align-items-end {
    align-items: flex-end;
}

.justify-content-start {
    justify-content: flex-start;
}

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

.justify-content-between {
    justify-content: space-between;
}

.justify-content-end {
    justify-content: flex-end;
}

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

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}


/* =========================================================
   Color Utilities
========================================================= */

.text-primary {
    color: var(--primary) !important;
}

.text-white {
    color: var(--white) !important;
}

.text-black {
    color: var(--black) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.bg-body {
    background-color: var(--body-bg) !important;
}


/* =========================================================
   Border Utilities
========================================================= */

.primary-border {
    border: var(--border-primary);
    border-radius: var(--border-radius);
}

.rounded {
    border-radius: var(--border-radius);
}

.border-primary {
    border: var(--border-primary);
}


/* =========================================================
   Common Card
========================================================= */

.custom-card {
    height: 100%;
    padding: 30px;
    border: var(--border-primary);
    border-radius: var(--border-radius);
    background-color: transparent;
}

.custom-card h3,
.custom-card h4 {
    margin-bottom: 12px;
}


/* =========================================================
   Section Spacing
========================================================= */

.section-padding {
    padding-top: var(--section-space);
    padding-bottom: var(--section-space);
}

.section-padding-top {
    padding-top: var(--section-space);
}

.section-padding-bottom {
    padding-bottom: var(--section-space);
}


/* =========================================================
   Display Utilities
========================================================= */

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}


/* =========================================================
   Accessibility
========================================================= */

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================================================
   MY CSS START FROM HERE
========================================================= */

/* ==================================================
   SITE HEADER
================================================== */

.site-header {
	--logo-area-width: 270px;
	--curve-size: 20px;
	--header-height: 68px;

	position: relative;
	z-index: 100;
	width: 100%;
	padding-top: 10px;
	background: var(--black);
}

.site-header .container {
	position: relative;
}

/* ==================================================
   CONTACT ROW
================================================== */

.header-contact-row {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	height: 34px;
	padding-right: 30px;
	padding-bottom: 10px;
}

.header-contact-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--font-body);
	font-size: 11px;
	line-height: 1;
	font-weight: 400;
	color: var(--white);
	transition: color 0.3s ease;
}

.header-contact-link:hover {
	color: var(--primary);
}

.header-contact-separator {
	width: 1px;
	height: 21px;
	background: rgba(255, 255, 255, 0.78);
}

/* ==================================================
   CONNECTED HEADER
================================================== */

.header-inner {
	position: relative;
	display: grid;

	/*
	 * The middle column is retained as curve spacing.
	 * The border itself is now drawn by one SVG.
	 */
	grid-template-columns:
		var(--logo-area-width)
		var(--curve-size)
		minmax(0, 1fr);

	align-items: stretch;
	width: 100%;
	height: var(--header-height);
}

/* ==================================================
   LOGO AREA
================================================== */

.site-branding {
	position: relative;
/* 	z-index: 4; */
	display: flex;
	align-items: center;
	min-width: 0;
	padding: 6px 0 6px 30px;
	border: 0;
	border-radius: 0;
	background: var(--black);
}

.site-branding .custom-logo-link,
.site-branding .site-logo {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
}

.site-branding .custom-logo,
.site-logo-image {
	display: block;
	width: 100%;
	max-width: 225px;
	height: auto;
}

/* ==================================================
   HEADER RIGHT
================================================== */

.header-right {
	position: relative;
	z-index: 3;
	grid-column: 3;
	display: flex;
	align-items: center;
	gap: 17px;
	min-width: 0;
	padding: 10px 30px 10px 0;

	/*
	 * Old separate top and right borders removed.
	 * One continuous SVG now draws the entire outline.
	 */
	border: 0;
	border-radius: 0;

	background: var(--black);
}

/* ==================================================
   DESKTOP NAVIGATION
================================================== */

.main-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	min-width: 0;
	height: 43px;
	padding: 0 27px;
	border-radius: 14px;
	background:
		linear-gradient(
			95deg,
			#161616 0%,
			#1b201d 100%
		);
}

.primary-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 27px;
	width: 100%;
	height: 43px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu li {
	position: relative;
	margin: 0;
	padding: 0;
}

.primary-menu a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	height: 43px;
	padding: 0;
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 22px;
	font-weight: 400;
	white-space: nowrap;
	color: var(--white);
	transition:
		color 0.3s ease,
		background-color 0.3s ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a {
	color: var(--primary);
}

.primary-menu .menu-item-has-children > a::after {
	content: "";
	width: 5px;
	height: 5px;
	margin-top: -3px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: rotate(45deg);
}

/* ==================================================
   DESKTOP SUBMENU
================================================== */

.primary-menu .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	z-index: 50;
	min-width: 220px;
	margin: 0;
	padding: 10px;
	border: 1px solid rgba(17, 219, 112, 0.35);
	border-radius: 12px;
	list-style: none;
	background: #101010;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 8px);
	transition:
		opacity 0.25s ease,
		visibility 0.25s ease,
		transform 0.25s ease;
}

.primary-menu .sub-menu li + li {
	margin-top: 3px;
}

.primary-menu .sub-menu a {
	display: flex;
	width: 100%;
	height: auto;
	padding: 10px;
	border-radius: 7px;
	white-space: normal;
}

.primary-menu .sub-menu a:hover {
	color: var(--primary);
	background: rgba(17, 219, 112, 0.08);
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

/* ==================================================
   MOBILE-ONLY ELEMENTS
================================================== */

.mobile-menu-header,
.mobile-menu-footer,
.mobile-menu-overlay,
.menu-toggle {
	display: none;
}

/* ==================================================
   SINGLE CONTINUOUS SVG OUTLINE
================================================== */

.continuous-hero-outline {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 110;
	display: block;
	width: 0;
	height: 0;
	overflow: visible;
	color: var(--primary);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	shape-rendering: geometricPrecision;
	transition: opacity 0.15s ease;
}

.continuous-hero-outline.is-ready {
	opacity: 1;
	visibility: visible;
}

.continuous-hero-outline-path {
	fill: none;
	stroke: currentColor;
	stroke-width: 1;
	stroke-linecap: round;
	stroke-linejoin: round;
	vector-effect: non-scaling-stroke;
}

body.menu-active .continuous-hero-outline.is-ready {
	opacity: 0;
}

/* ==================================================
   LARGE DESKTOP
================================================== */

@media (max-width: 1199px) {

	.site-header {
		--logo-area-width: 235px;
	}

	.site-branding {
		padding-inline: 22px;
	}

	.site-branding .custom-logo,
	.site-logo-image {
		max-width: 195px;
	}

	.header-right {
		gap: 12px;
		padding-inline: 20px;
	}

	.main-navigation {
		padding-inline: 18px;
	}

	.primary-menu {
		gap: 18px;
	}

}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

	.header-right {
		position: relative;
		z-index: auto;
		grid-column: 3;
		justify-content: flex-end;
		gap: 10px;
		padding: 11px 15px 11px 20px;
		border: 0;
		border-radius: 0;
	}

	.main-navigation {
		z-index: 1002;
	}

	.mobile-menu-overlay {
		z-index: 1001;
	}

	.site-header {
		--logo-area-width: 245px;
		--curve-size: 20px;
		--header-height: 78px;

		padding-top: 10px;
	}

	.header-contact-row {
		display: none;
	}

	.header-inner {
		grid-template-columns:
			var(--logo-area-width)
			var(--curve-size)
			minmax(0, 1fr);
		height: var(--header-height);
	}

	.site-branding {
		padding: 10px 20px;
	}

	.site-branding .custom-logo,
	.site-logo-image {
		max-width: 195px;
	}

	.header-cta {
		display: inline-flex;
		flex-shrink: 0;
		min-height: 46px;
		padding: 10px 19px;
		font-size: 13px;
	}

	.menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		flex-shrink: 0;
		gap: 5px;
		width: 46px;
		height: 46px;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0.28);
		border-radius: 12px;
		color: var(--white);
		background:
			linear-gradient(
				145deg,
				#171717,
				#0d0d0d
			);
		box-shadow:
			inset 0 1px 0 rgba(255, 255, 255, 0.07),
			0 8px 24px rgba(0, 0, 0, 0.3);
		cursor: pointer;
		transition:
			border-color 0.3s ease,
			background-color 0.3s ease,
			transform 0.3s ease;
	}

	.menu-toggle:hover {
		border-color: var(--primary);
	}

	.menu-toggle span {
		display: block;
		width: 21px;
		height: 2px;
		border-radius: 10px;
		background: currentColor;
		transition:
			transform 0.3s ease,
			opacity 0.3s ease;
	}


	/* ==================================================
	   OFF-CANVAS NAVIGATION
	================================================== */

	.main-navigation {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1002;
		display: flex;
		align-items: stretch;
		justify-content: flex-start;
		flex-direction: column;

		/* width: min(420px, 86vw); */
		width: 100%;
		height: 100dvh;
		padding: 0;
		border-left: 1px solid rgba(17, 219, 112, 0.9);
		border-radius: 0;
		background:
			radial-gradient(
				circle at 100% 0%,
				rgba(17, 219, 112, 0.09),
				transparent 38%
			),
			linear-gradient(
				145deg,
				#111412 0%,
				#080908 100%
			);
		box-shadow: -24px 0 65px rgba(0, 0, 0, 0.62);
		opacity: 0;
		visibility: hidden;
		transform: translate3d(100%, 0, 0);
		transition:
			transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
			opacity 0.3s ease,
			visibility 0.48s;
		overflow-x: hidden;
		overflow-y: auto;
		overscroll-behavior: contain;
	}

	.site-header.menu-open .main-navigation {
		opacity: 1;
		visibility: visible;
		transform: translate3d(0, 0, 0);
	}


	/* ==================================================
	   MOBILE MENU HEADER
	================================================== */

	.mobile-menu-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-shrink: 0;
		padding: 27px 26px 22px;
	}

	.mobile-menu-logo {
		display: flex;
		align-items: center;
		max-width: 210px;
	}

	.mobile-menu-logo .custom-logo-link {
		display: flex;
		align-items: center;
	}

	.mobile-menu-logo .custom-logo {
		display: block;
		width: 100%;
		max-width: 205px;
		height: auto;
	}

	.mobile-menu-close {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		width: 46px;
		height: 46px;
		padding: 0;
		border: 1px solid rgba(255, 255, 255, 0.15);
		border-radius: 11px;
		color: var(--white);
		background: rgba(255, 255, 255, 0.035);
		cursor: pointer;
		transition:
			border-color 0.3s ease,
			color 0.3s ease;
	}

	.mobile-menu-close:hover {
		color: var(--primary);
		border-color: var(--primary);
	}

	.mobile-menu-close span {
		position: absolute;
		width: 22px;
		height: 2px;
		border-radius: 10px;
		background: currentColor;
	}

	.mobile-menu-close span:first-child {
		transform: rotate(45deg);
	}

	.mobile-menu-close span:last-child {
		transform: rotate(-45deg);
	}


	/* ==================================================
	   PRIMARY MOBILE MENU
	================================================== */

	.primary-menu {
		display: flex;
		align-items: stretch;
		justify-content: flex-start;
		flex-direction: column;
		flex: 0 0 auto;
		width: 100%;
		height: auto;
		gap: 0;
		margin: 0;
		padding: 12px 26px 20px;
	}

	.primary-menu > li {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.09);
	}

	.primary-menu > li > a {
		position: relative;
		justify-content: space-between;
		width: 100%;
		height: auto;
		min-height: 62px;
		padding: 18px 34px 18px 0;
		font-size: 16px;
		line-height: 1.4;
		white-space: normal;
	}


	/* ==================================================
	   ARROW - ONLY ITEMS WITH SUBMENU
	================================================== */

	.primary-menu > li.menu-item-has-children > a::before {
		content: "";
		position: absolute;
		top: 50%;
		right: 3px;
		width: 10px;
		height: 10px;
		border-top: 1.5px solid currentColor;
		border-right: 1.5px solid currentColor;
		transform: translateY(-50%) rotate(45deg);
		transition:
			right 0.3s ease,
			color 0.3s ease,
			transform 0.3s ease;
	}

	.primary-menu > li.menu-item-has-children > a:hover::before {
		right: 0;
		color: var(--primary);
	}

	/* Hide desktop submenu arrow */
	.primary-menu .menu-item-has-children > a::after {
		display: none;
	}


	/* ==================================================
	   MOBILE SUBMENU
	================================================== */

	.primary-menu .sub-menu {
		position: static;
		display: none;
		min-width: 0;
		margin: 0;
		padding: 0 0 13px 12px;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.primary-menu
.menu-item-has-children.submenu-open
> .sub-menu {
	display: block;
	transform: none;
}

	.primary-menu .sub-menu a {
		padding: 10px 0;
		font-size: 14px;
		color: rgba(255, 255, 255, 0.74);
	}


	/* ==================================================
	   MOBILE MENU FOOTER
	================================================== */

	.mobile-menu-footer {
		display: flex;
		align-items: stretch;
		flex-direction: column;
		gap: 18px;
		margin-top: auto;
		padding: 24px 26px 36px;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}

	.mobile-menu-contact {
		display: flex;
		align-items: center;
		gap: 12px;
		font-family: var(--font-body);
		font-size: 14px;
		line-height: 1.4;
		color: var(--white);
		transition: color 0.3s ease;
	}

	.mobile-menu-contact:hover {
		color: var(--primary);
	}

	.mobile-menu-cta {
		justify-content: space-between;
		width: 100%;
		margin-top: 5px;
	}


	/* ==================================================
	   DARK PAGE OVERLAY
	================================================== */

	.mobile-menu-overlay {
		position: fixed;
		inset: 0;
		z-index: 1001;
		display: block;
		width: 100%;
		height: 100%;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: rgba(0, 0, 0, 0.74);
		backdrop-filter: blur(3px);
		-webkit-backdrop-filter: blur(3px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition:
			opacity 0.35s ease,
			visibility 0.35s ease;
	}

	.site-header.menu-open .mobile-menu-overlay {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	body.menu-active {
		overflow: hidden;
		touch-action: none;
	}

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 575px) {

	.site-header {
		--logo-area-width: 145px;
		--curve-size: 20px;
		--header-height: 66px;

		padding-top: 8px;
	}

	.site-branding {
		padding: 8px 10px;
	}

	.site-branding .custom-logo,
	.site-logo-image {
		max-width: 130px;
	}

	.header-right {
		gap: 7px;
		padding: 9px 10px 9px 12px;
	}

	.header-cta {
		min-height: 42px;
		padding: 8px 13px;
		gap: 6px;
		font-size: 11px;
		white-space: nowrap;
	}

	.header-cta svg {
		width: 14px;
		height: 14px;
	}

	.menu-toggle {
		width: 42px;
		height: 42px;
		border-radius: 10px;
	}

	.menu-toggle span {
		width: 19px;
	}

/* 	.main-navigation {
		width: min(360px, 87vw);
	} */

	.mobile-menu-header {
		padding: 22px 20px 18px;
	}

	.mobile-menu-logo {
		max-width: 180px;
	}

	.mobile-menu-logo .custom-logo {
		max-width: 175px;
	}

	.mobile-menu-close {
		width: 42px;
		height: 42px;
	}

	.primary-menu {
		padding: 8px 20px 18px;
	}

	.primary-menu > li > a {
		min-height: 58px;
		font-size: 15px;
	}

	.mobile-menu-footer {
		gap: 16px;
		padding: 21px 20px 28px;
	}

	.mobile-menu-contact {
		font-size: 13px;
	}

}

/* ==================================================
   VERY SMALL MOBILE
================================================== */

@media (max-width: 390px) {

	.site-header {
		--logo-area-width: 152px;
		--curve-size: 20px;
	}

	.site-branding {
		padding-left: 8px;
		padding-right: 5px;
	}

	.site-branding .custom-logo,
	.site-logo-image {
		max-width: fit-content;
	}

	.header-right {
		gap: 6px;
		padding-left: 8px;
		padding-right: 7px;
	}

	.header-cta {
		padding-inline: 10px;
		font-size: 10px;
	}

	.menu-toggle {
		width: 40px;
		height: 40px;
	}

}

@media (max-width: 374px) {
	.site-branding {
		width: 94%;
	}
}

/* ==================================================
   INNER PAGE HERO
================================================== */

.inner-page-hero-wrapper {
	min-height: unset;
	padding: 28px 30px 30px;
}

.inner-page-hero-content {
	max-width: 520px;
}

/* ==================================================
   BREADCRUMB
================================================== */

.inner-page-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 19px;
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 400;
	line-height: 20px;
	color: var(--white);
}

.inner-page-breadcrumb a {
	color: var(--white);
	transition: color 0.3s ease;
}

.inner-page-breadcrumb a:hover {
	color: var(--primary);
}

.inner-page-breadcrumb > span:first-of-type {
	color: var(--primary);
	font-size: 15px;
	line-height: 1;
}

.inner-page-breadcrumb [aria-current="page"] {
	color: var(--white);
}

/* ==================================================
   BUTTONS
================================================== */

.inner-page-hero-buttons {
	margin-top: 28px;
    display: flex;
    gap: 13px;
    align-items: center;
}

/* ==================================================
   ILLUSTRATION
================================================== */

.inner-page-hero-image {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 200px;
}

.inner-page-hero-image::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(19, 216, 116, 0.25) 0%,
		rgba(19, 216, 116, 0.16) 38%,
		rgba(19, 216, 116, 0.07) 62%,
		transparent 78%
	);
	filter: blur(18px);
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.inner-page-hero-image img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	max-width: 345px;
	height: 195px;
	object-fit: contain;
}

/* ==================================================
   LARGE DESKTOP
================================================== */

@media (max-width: 1199px) {

	.inner-page-hero-wrapper {
		padding-inline: 28px;
	}

	.inner-page-hero-image img {
		max-width: 320px;
	}

}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

	.inner-page-hero-wrapper {
		padding: 42px 28px 32px;
	}

	.inner-page-hero-content {
		max-width: 620px;
		margin-inline: auto;
		text-align: left;
	}

	.inner-page-hero-buttons {
		justify-content: flex-start;
	}

/* 	.inner-page-hero-image {
		min-height: 210px;
		margin-top: 20px;
	}

	.inner-page-hero-image img {
		max-width: 330px;
		height: auto;
	} */
	
	.page-id-154 .inner-page-hero-content h1,
	.page-id-156 .inner-page-hero-content h1,
	.page-id-158 .inner-page-hero-content h1,
	.page-id-135 .inner-page-hero-content h1,
	.page-id-137 .inner-page-hero-content h1,
	.page-id-139 .inner-page-hero-content h1 {
		margin-bottom: 10px;
	}

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

	.inner-page-hero-wrapper {
		padding: 35px 22px 29px;
	}

	.inner-page-breadcrumb {
		margin-bottom: 16px;
	}

	.inner-page-hero-buttons {
		margin-top: 22px;
	}

}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 575px) {

	.inner-page-hero-wrapper {
		padding: 32px 18px 23px;
	}

	.inner-page-hero-content h1 {
		max-width: 100%;
	}

	.inner-page-hero-buttons {
		align-items: stretch;
		flex-direction: column;
		gap: 11px;
	}

	.inner-page-hero-buttons .btn {
		width: 100%;
	}

}

/* ==================================================
   ABOUT GROWTH SECTION
================================================== */

.about-growth-section {
	background: var(--black);
}

/* ==================================================
   SECTION HEADING
================================================== */

.about-growth-heading {
	max-width: 650px;
	margin-right: auto;
	margin-left: auto;
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.about-growth-heading h2 {
	max-width: 610px;
	margin-right: auto;
	margin-left: auto;
}

.about-growth-heading h2 span {
	display: block;
	color: var(--primary);
}

.about-growth-heading p {
	max-width: 590px;
}

.about-growth-heading h2 span.inline {
    display: inline;
}

/* ==================================================
   GRID
================================================== */

.about-growth-grid {
	align-items: stretch;
	margin-top: 30px;
	row-gap: 20px;
}

.about-growth-grid > [class*="col-"] {
	display: flex;
}

/* ==================================================
   CARDS
================================================== */

.about-growth-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	min-height: 134px;
	padding: 22px 20px;
	border: var(--border-primary);
	border-radius: var(--border-radius);
	background: var(--black);
}

.about-growth-card h3 {
	margin-bottom: 3px;
}

.about-growth-card p {
	max-width: 310px;
	margin: 0;
}

/* ==================================================
   LARGE DESKTOP
================================================== */

@media (max-width: 1199px) {

	.about-growth-card {
		min-height: 145px;
		padding: 22px 18px;
	}

}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

	.about-growth-heading {
		max-width: 620px;
	}

	.about-growth-grid {
		margin-top: 28px;
	}

	.about-growth-card {
		min-height: 140px;
	}

	.about-growth-grid > .col-md-12 .about-growth-card p {
		max-width: 500px;
	}

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

	.about-growth-grid {
		margin-top: 25px;
		row-gap: 16px;
	}

	.about-growth-card {
		min-height: 130px;
		padding: 20px 18px;
	}

}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 575px) {

	.about-growth-heading h2 span {
		display: inline;
	}

	.about-growth-grid {
		margin-top: 23px;
	}

	.about-growth-card {
		min-height: 0;
		padding: 21px 17px;
	}

	.about-growth-card p {
		max-width: 100%;
	}

}

/* ==================================================
   PORTFOLIO BUTTON DROPDOWN
================================================== */

.portfolio-button-dropdown {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	width: max-content;
	min-width: 225px;
	max-width: calc(100vw - 24px);
	padding: 9px;
	border: var(--border-primary);
	border-radius: 12px;
	background: #171717;
	box-shadow:
		0 16px 42px rgba(0, 0, 0, 0.5),
		0 0 22px rgba(17, 219, 112, 0.08);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-7px);
	transform-origin: top center;
	transition:
		opacity 0.22s ease,
		visibility 0.22s ease,
		transform 0.22s ease;
}

.portfolio-button-dropdown.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.portfolio-button-dropdown a {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 39px;
	padding: 8px 12px;
	border-radius: 8px;
	color: var(--white);
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	line-height: 20px;
	white-space: nowrap;
	transition:
		color 0.25s ease,
		background-color 0.25s ease,
		padding-left 0.25s ease;
}

.portfolio-button-dropdown a:hover,
.portfolio-button-dropdown a:focus-visible {
	padding-left: 15px;
	background: rgba(17, 219, 112, 0.1);
	color: var(--primary);
}

.portfolio-button-dropdown a:hover::after,
.portfolio-button-dropdown a:focus-visible::after {
	opacity: 1;
	transform: translateX(0);
}

.portfolio-button-dropdown a:focus-visible {
	outline: 1px solid var(--primary);
	outline-offset: -1px;
}

/* Active trigger button */
.js-portfolio-dropdown[aria-expanded="true"] {
	border-color: var(--primary);
	box-shadow: var(--shadow-primary);
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 575px) {

	.portfolio-button-dropdown {
		min-width: 215px;
		padding: 7px;
	}

	.portfolio-button-dropdown a {
		min-height: 40px;
		font-size: 11px;
	}

}

/* ==================================================
   WEBSITE PORTFOLIO BUTTONS
================================================== */

.portfolio-project.has-website-link {
	display: flex;
	align-items: center;
	flex-direction: column;
	overflow: visible;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.portfolio-project-media {
	overflow: hidden;
	width: 100%;
	border: var(--border-primary);
	border-radius: var(--border-radius);
	background: #080808;
}

.portfolio-project-media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 500 / 330;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.portfolio-project.has-website-link:hover
.portfolio-project-media img {
	transform: scale(1.025);
}

.portfolio-website-button {
	min-height: 38px;
	margin-top: 12px;
	padding: 7px 15px;
	font-size: 11px;
	line-height: 18px;
}

.portfolio-website-button svg {
	flex: 0 0 auto;
	width: 15px;
	height: 15px;
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

	.portfolio-website-button {
		margin-top: 11px;
	}

}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 575px) {

	.portfolio-project-media {
		border-radius: 13px;
	}

}

/* ==================================================
   SERVICE SELECTION POPUP
================================================== */

.service-selection-popup {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	background: rgba(0, 0, 0, 0.82);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.3s ease,
		visibility 0.3s ease;
}

.service-selection-popup[hidden] {
	display: none;
}

.service-selection-popup.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

body.service-popup-active {
	overflow: hidden;
}

/* ==================================================
   POPUP DIALOG
================================================== */

.service-selection-dialog {
	position: relative;
	width: 100%;
	max-width: 825px;
	max-height: calc(100vh - 60px);
	padding: 40px 22px 53px;
	overflow-y: auto;
	border: var(--border-primary);
	border-radius: var(--border-radius);
	background:
		radial-gradient(
			circle at 50% 0%,
			rgba(17, 219, 112, 0.07),
			transparent 35%
		),
		var(--black);
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
	transform: translateY(20px) scale(0.97);
	transition: transform 0.3s ease;
}

.service-selection-popup.is-open
.service-selection-dialog {
	transform: translateY(0) scale(1);
}

/* ==================================================
   CLOSE BUTTON
================================================== */

.service-selection-close {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	min-height: 38px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 10px;
	background: #171717;
	color: var(--white);
	cursor: pointer;
}

.service-selection-close span {
	position: absolute;
	width: 17px;
	height: 1.5px;
	border-radius: 2px;
	background: currentColor;
}

.service-selection-close span:first-child {
	transform: rotate(45deg);
}

.service-selection-close span:last-child {
	transform: rotate(-45deg);
}

.service-selection-close:hover {
	border-color: var(--primary);
	background: var(--primary);
	color: var(--black);
}

/* ==================================================
   POPUP HEADING
================================================== */

.service-selection-heading {
	max-width: 580px;
	margin: 0 auto 29px;
	padding: 0 40px;
	text-align: center;
}

.service-selection-heading h2 {
	margin: 0;
	font-size: 30px;
	line-height: 38px;
}

.service-selection-heading h2 span {
	display: block;
}

/* ==================================================
   SERVICE CARDS
================================================== */

.service-selection-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 15px;
}

.service-selection-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 134px;
	padding: 17px 18px 16px;
	border-radius: var(--border-radius);
	background: #171717;
	transition:
		background-color 0.3s ease,
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.service-selection-card:hover {
	background: #1c1c1c;
	transform: translateY(-3px);
	box-shadow: var(--shadow-primary);
}

.service-selection-icon {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 38px;
	height: 38px;
	margin-bottom: 12px;
	color: var(--primary);
}

.service-selection-icon svg {
	display: block;
	width: 38px;
	height: 38px;
}

.service-selection-card h3 {
	margin: 0 0 8px;
	font-size: 16px;
	line-height: 25px;
}

/* ==================================================
   PACKAGE LINKS
================================================== */

.service-selection-link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 8px;
	margin-top: auto;
	color: var(--white);
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 500;
	line-height: 20px;
	transition:
		color 0.3s ease,
		gap 0.3s ease;
}

.service-selection-link svg {
	display: block;
	flex: 0 0 17px;
	color: var(--primary);
}

.service-selection-link:hover {
	gap: 12px;
	color: var(--primary);
}

.service-selection-link:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: 4px;
	border-radius: 2px;
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 767px) {

	.service-selection-popup {
		padding: 20px;
	}

	.service-selection-dialog {
		max-height: calc(100vh - 40px);
		padding: 48px 20px 30px;
	}

	.service-selection-heading {
		margin-bottom: 25px;
		padding: 0 25px;
	}

	.service-selection-heading h2 {
		font-size: 25px;
		line-height: 33px;
	}

	.service-selection-grid {
		grid-template-columns: 1fr;
	}

	.service-selection-card {
		min-height: 130px;
	}

}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 575px) {

	.service-selection-popup {
		padding: 13px;
	}

	.service-selection-dialog {
		max-height: calc(100vh - 26px);
		padding: 48px 15px 22px;
		border-radius: 15px;
	}

	.service-selection-heading {
		margin-bottom: 22px;
		padding: 0 20px;
	}

	.service-selection-heading h2 {
		font-size: 21px;
		line-height: 29px;
	}

	.service-selection-close {
		top: 10px;
		right: 10px;
		width: 34px;
		height: 34px;
		min-height: 34px;
	}

	.service-selection-card {
		padding: 16px;
		border-radius: 13px;
	}

}


/* =========================================================
   FOOTER STYLING START FROM HERE
========================================================= */

/* ==================================================
   SITE FOOTER
================================================== */

.site-footer {
	position: relative;
/* 	padding-top: var(--section-space); */
	background: var(--black);
}

.footer-wrapper {
	position: relative;
	z-index: 1;
	overflow: hidden;
	width: 100%;

	/*
	 * Outer border is drawn by one SVG.
	 */
	border: 0;
	border-radius: 20px;
	background: var(--black);
}

.footer-main-row {
	position: relative;
	z-index: 1;
	margin: 0;
}

.footer-main-row > [class*="col-"] {
	padding: 0;
}

/* ==================================================
   CONTINUOUS FOOTER OUTLINE
================================================== */

.continuous-footer-outline {
	position: absolute;
	z-index: 5;
	display: block;
	width: 0;
	height: 0;
	overflow: visible;
	color: var(--primary);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.continuous-footer-outline.is-ready {
	opacity: 1;
	visibility: visible;
}

.continuous-footer-outline-path {
	fill: none;
	stroke: currentColor;
	stroke-width: 1;
	stroke-linecap: round;
	stroke-linejoin: round;
	vector-effect: non-scaling-stroke;
}

/* ==================================================
   FOOTER CONTENT
================================================== */

.footer-content {
	height: 100%;
	padding: 20px 30px 28px;
}

/* ==================================================
   FOOTER TOP
================================================== */

.footer-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
	flex: 0 1 270px;
	min-width: 0;
}

.footer-brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.footer-brand .custom-logo {
	display: block;
	width: 100%;
	max-width: 225px;
	height: auto;
}

.footer-site-name {
	font-family: var(--font-heading);
	font-size: 22px;
	color: var(--white);
}

/* .footer-brand p {
	max-width: 260px;
	margin-top: 13px;
	font-size: 11px;
	line-height: 17px;
} */

/* ==================================================
   FOOTER CONTACT
================================================== */

.footer-contact {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
	padding-top: 10px;
}

.footer-contact-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--white);
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 20px;
	white-space: nowrap;
	transition: color 0.3s ease;
}

.footer-contact-link:hover {
	color: var(--primary);
}

.footer-contact-separator {
	flex: 0 0 1px;
	width: 1px;
	height: 22px;
	background: rgba(255, 255, 255, 0.75);
}

/* ==================================================
   FOOTER NAVIGATION
================================================== */

.footer-navigation {
	display: grid;
	grid-template-columns:
		0.8fr
		1.6fr
		1.4fr
		0.9fr;
	gap: 14px;
	padding-top: 20px;
}

.footer-column {
	min-width: 0;
}

.footer-column h3 {
	margin-bottom: 8px;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	line-height: 20px;
	color: var(--primary);
}

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

.footer-column li + li {
	margin-top: 2px;
}

.footer-column ul li {
    margin: 0;
}

.footer-column a {
	display: inline-block;
	color: var(--white);
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 400;
	line-height: 19px;
	transition:
		color 0.3s ease,
		transform 0.3s ease;
}

.footer-column a:hover {
	color: var(--primary);
	transform: translateX(3px);
}

/* ==================================================
   FOOTER CTA AREA
================================================== */

.footer-cta-area {
	display: flex;
	flex-direction: column;
	height: 100%;

	/*
	 * Desktop joining borders are drawn by the SVG.
	 */
	border: 0;
}

.footer-buttons {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 13px;
	min-height: 67px;
	padding: 10px 12px 10px 16px;
	border: 0;
}

.footer-buttons .btn {
/* 	min-height: 42px; */
	padding: 8px 19px;
	font-size: 14px;
/* 	line-height: 20px; */
	white-space: nowrap;
}

.footer-cta-card {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	min-height: 260px;
	padding: 45px;
	background: var(--black);
}

/*
 * Inset background card
 */
.footer-cta-card::before {
	content: "";
	position: absolute;
	inset: 28px;
	z-index: 0;
	border-radius: var(--border-radius);
	background:
		linear-gradient(
			rgba(0, 0, 0, 0.08),
			rgba(0, 0, 0, 0.08)
		),
		url("/wp-content/uploads/2026/07/image-44.png")
		center / cover no-repeat,
		#070707;
	pointer-events: none;
}

/*
 * Keep heading above background
 */
.footer-cta-card h2 {
	position: relative;
	z-index: 1;
	margin: 0;
	font-size: 29px;
	line-height: 36px;
	text-align: center;
}

.footer-cta-card h2 span {
	display: block;
}

/* ==================================================
   COPYRIGHT
================================================== */

.footer-copyright {
	padding: 10px 20px 13px;
	text-align: center;
}

.footer-copyright p {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 12px;
	line-height: 18px;
	color: var(--white);
}

/* ==================================================
   LARGE DESKTOP
================================================== */

@media (max-width: 1199px) {

	.footer-content {
		padding-right: 24px;
		padding-left: 24px;
	}

	.footer-top {
		align-items: flex-start;
		flex-direction: column;
		gap: 17px;
	}

	.footer-brand {
		flex-basis: auto;
	}

	.footer-contact {
		justify-content: flex-start;
	}

	.footer-navigation {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 24px;
	}

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

	.footer-buttons .btn {
		width: 100%;
	}

}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

	.site-footer {
/* 		padding-top: 70px; */
	}

	.footer-content {
		padding: 28px;
	}

	.footer-top {
		align-items: center;
		flex-direction: row;
	}

	.footer-navigation {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.footer-cta-area {
		/*
		 * This is an internal separator only.
		 * The complete outer border remains one SVG.
		 */
		border-top: 1px solid rgba(17, 219, 112, 0.45);
		border-left: 0;
	}

	.footer-buttons {
		align-items: center;
		flex-direction: row;
		justify-content: center;
		padding: 13px 20px;
	}

	.footer-buttons .btn {
		width: auto;
	}

	.footer-cta-card {
		min-height: 270px;
		padding: 40px;
	}

	.footer-cta-card::before {
		inset: 24px;
	}

}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {

	.site-footer {
/* 		padding-top: 60px; */
	}

	.footer-wrapper {
		border-radius: 18px;
	}

	.footer-content {
		padding: 25px 22px;
	}

	.footer-top {
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-contact {
		align-items: flex-start;
		flex-direction: column;
		gap: 9px;
	}

	.footer-contact-separator {
		display: none;
	}

	.footer-navigation {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 25px 20px;
	}

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

	.footer-buttons .btn {
		width: 100%;
	}

	.footer-cta-card {
		min-height: 240px;
		padding: 34px;
	}

	.footer-cta-card::before {
		inset: 20px;
		border-radius: 15px;
	}

}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 575px) {

	.site-footer {
/* 		padding-top: 50px; */
	}

	.footer-wrapper {
		border-radius: 15px;
	}

	.footer-content {
		padding: 23px 18px;
	}

	.footer-brand .custom-logo {
		max-width: 190px;
	}

	.footer-navigation {
		grid-template-columns: 1fr;
		gap: 21px;
	}

	.footer-column a {
		font-size: 12px;
		line-height: 21px;
	}

	.footer-buttons {
		padding: 14px 17px;
	}

	.footer-cta-card {
		min-height: 215px;
		padding: 27px;
	}

	.footer-cta-card::before {
		inset: 20px;
		border-radius: 13px;
	}

	.footer-copyright {
		padding-right: 10px;
		padding-left: 10px;
	}

	.footer-copyright p {
		font-size: 9px;
		line-height: 16px;
	}

}

/* =========================================================
   MY CSS END HERE
========================================================= */


/* =========================================================
   Responsive
========================================================= */


/* @media (min-width: 1920px) {

	body {
		zoom: 1.2;
	}

}

@media (min-width: 2520px) {

	body {
		zoom: 1.6;
	}

} */

@media (max-width: 1199px) {
    :root {
        --section-space: 80px;
    }

    .col-lg-1 {
        width: 8.333333%;
    }

    .col-lg-2 {
        width: 16.666667%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-4 {
        width: 33.333333%;
    }

    .col-lg-5 {
        width: 41.666667%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-7 {
        width: 58.333333%;
    }

    .col-lg-8 {
        width: 66.666667%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-10 {
        width: 83.333333%;
    }

    .col-lg-11 {
        width: 91.666667%;
    }

    .col-lg-12 {
        width: 100%;
    }
}

@media (max-width: 991px) {
    :root {
        --section-space: 70px;
    }

    h1,
    .heading-1 {
        font-size: 34px;
        line-height: 40px;
    }

    h2,
    .heading-2,
    .section-title {
        font-size: 28px;
        line-height: 36px;
    }

    .col-md-1 {
        width: 8.333333%;
    }

    .col-md-2 {
        width: 16.666667%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-4 {
        width: 33.333333%;
    }

    .col-md-5 {
        width: 41.666667%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-7 {
        width: 58.333333%;
    }

    .col-md-8 {
        width: 66.666667%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-10 {
        width: 83.333333%;
    }

    .col-md-11 {
        width: 91.666667%;
    }

    .col-md-12 {
        width: 100%;
    }
}

@media (max-width: 767px) {
    :root {
        --container-padding: 15px;
        --section-space: 60px;
    }

    body {
        font-size: 14px;
        line-height: 26px;
    }

    p {
        font-size: 14px;
        line-height: 26px;
    }

    h1,
    .heading-1 {
        font-size: 30px;
        line-height: 38px;
    }

    h2,
    .heading-2,
    .section-title {
        font-size: 26px;
        line-height: 34px;
    }

    h3,
    .heading-3 {
        font-size: 20px;
        line-height: 30px;
    }

    .col-sm-1 {
        width: 8.333333%;
    }

    .col-sm-2 {
        width: 16.666667%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-4 {
        width: 33.333333%;
    }

    .col-sm-5 {
        width: 41.666667%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-7 {
        width: 58.333333%;
    }

    .col-sm-8 {
        width: 66.666667%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-10 {
        width: 83.333333%;
    }

    .col-sm-11 {
        width: 91.666667%;
    }

    .col-sm-12 {
        width: 100%;
    }

    .custom-card {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    :root {
        --section-space: 50px;
    }

    h1,
    .heading-1 {
        font-size: 27px;
        line-height: 35px;
    }

    h2,
    .heading-2,
    .section-title {
        font-size: 24px;
        line-height: 32px;
    }

    h3,
    .heading-3 {
        font-size: 19px;
        line-height: 29px;
    }

    h4,
    .heading-4 {
        font-size: 17px;
        line-height: 27px;
    }

    .row {
        margin-right: -7px;
        margin-left: -7px;
    }

    [class*="col-"] {
        padding-right: 7px;
        padding-left: 7px;
    }

    .col-xs-12 {
        width: 100%;
    }

    .btn,
    .button,
/*     button, */
    input[type="submit"] {
        min-height: 48px;
        padding: 11px 22px;
    }
}

/* ==================================================
   PREMIUM SITE LOADER
================================================== */

.site-loader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100dvh;
	overflow: hidden;
	background:
		radial-gradient(
			circle at 50% 44%,
			rgba(17, 219, 112, 0.08) 0%,
			rgba(17, 219, 112, 0.035) 24%,
			transparent 48%
		),
		#000000;
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	transition:
		opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0.55s ease;
}

.site-loader.is-leaving {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.site-loader.is-hidden {
	display: none;
}


/* ==================================================
   AMBIENT BACKGROUND
================================================== */

.site-loader-ambient {
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(560px, 82vw);
	height: min(560px, 82vw);
	border-radius: 50%;
	background:
		radial-gradient(
			circle,
			rgba(17, 219, 112, 0.14) 0%,
			rgba(17, 219, 112, 0.06) 28%,
			rgba(17, 219, 112, 0.018) 48%,
			transparent 70%
		);
	filter: blur(22px);
	opacity: 0.8;
	transform: translate(-50%, -50%);
	animation:
		site-loader-ambient-pulse
		2.4s ease-in-out infinite;
	pointer-events: none;
}

@keyframes site-loader-ambient-pulse {

	0%,
	100% {
		opacity: 0.55;
		transform:
			translate(-50%, -50%)
			scale(0.94);
	}

	50% {
		opacity: 0.95;
		transform:
			translate(-50%, -50%)
			scale(1.04);
	}

}


/* ==================================================
   LOADER INNER
================================================== */

.site-loader-inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: min(420px, calc(100vw - 40px));
	text-align: center;
}


/* ==================================================
   LOADER BRAND MARK
================================================== */

.site-loader-mark {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 112px;
	height: 112px;
	margin-bottom: 24px;
}

.site-loader-mark-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: rgba(17, 219, 112, 0.16);
	filter: blur(28px);
	transform: translate(-50%, -50%);
	animation:
		site-loader-mark-glow
		1.9s ease-in-out infinite;
}

@keyframes site-loader-mark-glow {

	0%,
	100% {
		opacity: 0.45;
		transform:
			translate(-50%, -50%)
			scale(0.86);
	}

	50% {
		opacity: 1;
		transform:
			translate(-50%, -50%)
			scale(1.12);
	}

}

.site-loader-icon {
	position: relative;
	z-index: 2;
	display: block;
	width: 94px;
	height: 94px;
	overflow: visible;
	filter:
		drop-shadow(
			0 0 14px
			rgba(17, 219, 112, 0.18)
		);
}


/* ==================================================
   SVG FRAME
================================================== */

.site-loader-frame {
	fill: rgba(17, 219, 112, 0.015);
	stroke: var(--primary);
	stroke-width: 1.3;
	stroke-dasharray: 260;
	stroke-dashoffset: 260;
	animation:
		site-loader-frame-draw
		1.35s
		cubic-bezier(0.22, 1, 0.36, 1)
		forwards;
}

@keyframes site-loader-frame-draw {

	to {
		stroke-dashoffset: 0;
	}

}


/* ==================================================
   CIRCUIT ELEMENTS
================================================== */

.site-loader-circuit {
	fill: none;
	stroke: var(--primary);
	stroke-width: 1.4;
	stroke-linecap: round;
	stroke-dasharray: 20;
	stroke-dashoffset: 20;
	opacity: 0.8;
	animation:
		site-loader-circuit-draw
		0.65s ease forwards;
}

.site-loader-circuit:nth-of-type(5) {
	animation-delay: 0.28s;
}

.site-loader-circuit:nth-of-type(6) {
	animation-delay: 0.42s;
}

.site-loader-circuit:nth-of-type(7) {
	animation-delay: 0.56s;
}

@keyframes site-loader-circuit-draw {

	to {
		stroke-dashoffset: 0;
	}

}

.site-loader-node {
	fill: var(--primary);
	opacity: 0;
	transform-box: fill-box;
	transform-origin: center;
	animation:
		site-loader-node-pop
		0.45s
		cubic-bezier(0.34, 1.56, 0.64, 1)
		forwards;
}

.site-loader-node-one {
	animation-delay: 0.28s;
}

.site-loader-node-two {
	animation-delay: 0.45s;
}

.site-loader-node-three {
	animation-delay: 0.62s;
}

@keyframes site-loader-node-pop {

	0% {
		opacity: 0;
		transform: scale(0);
	}

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

}


/* ==================================================
   CODE SYMBOL
================================================== */

.site-loader-code {
	fill: none;
	stroke: var(--white);
	stroke-width: 4;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 58;
	stroke-dashoffset: 58;
	filter:
		drop-shadow(
			0 0 8px
			rgba(255, 255, 255, 0.12)
		);
	animation:
		site-loader-code-draw
		0.72s
		cubic-bezier(0.22, 1, 0.36, 1)
		forwards;
}

.site-loader-code-left {
	animation-delay: 0.48s;
}

.site-loader-code-center {
	stroke: var(--primary);
	animation-delay: 0.62s;
}

.site-loader-code-right {
	animation-delay: 0.76s;
}

@keyframes site-loader-code-draw {

	to {
		stroke-dashoffset: 0;
	}

}


/* ==================================================
   BRAND NAME
================================================== */

.site-loader-brand {
	display: flex;
	align-items: baseline;
	justify-content: center;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 30px;
	opacity: 0;
	transform: translateY(8px);
	animation:
		site-loader-brand-enter
		0.65s
		0.72s
		cubic-bezier(0.22, 1, 0.36, 1)
		forwards;
}

.site-loader-brand-main,
.site-loader-brand-accent {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.015em;
}

.site-loader-brand-main {
	color: var(--white);
}

.site-loader-brand-accent {
	color: var(--primary);
}

@keyframes site-loader-brand-enter {

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

}


/* ==================================================
   LOADING STATUS
================================================== */

.site-loader-status {
	width: min(300px, 100%);
	opacity: 0;
	transform: translateY(6px);
	animation:
		site-loader-status-enter
		0.35s
		0.12s
		cubic-bezier(0.22, 1, 0.36, 1)
		forwards;
}

@keyframes site-loader-status-enter {

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

}

.site-loader-progress {
	position: relative;
	width: 100%;
	height: 2px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
}

.site-loader-progress-bar {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 0%;
	height: 100%;
	border-radius: inherit;
	background:
		linear-gradient(
			90deg,
			#0b8847 0%,
			#11db70 55%,
			#8effbd 100%
		);
	box-shadow:
		0 0 12px rgba(17, 219, 112, 0.55);

	transition:
		width 0.08s linear;
}

.site-loader-progress-bar::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--primary);
	box-shadow:
		0 0 10px rgba(17, 219, 112, 0.9),
		0 0 22px rgba(17, 219, 112, 0.4);
	transform: translate(50%, -50%);
}


/* ==================================================
   LOADING META
================================================== */

.site-loader-progress-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 10px;
}

.site-loader-label,
.site-loader-percentage {
	font-family: var(--font-body);
	font-size: 10px;
	font-weight: 500;
	line-height: 18px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.site-loader-label {
	color: rgba(255, 255, 255, 0.62);
}

.site-loader-percentage {
	min-width: 30px;
	color: var(--primary);
	text-align: right;
}


/* ==================================================
   LOADER COMPLETION
================================================== */

.site-loader.is-complete
.site-loader-progress-bar {
	box-shadow:
		0 0 18px rgba(17, 219, 112, 0.8);
}

.site-loader.is-complete
.site-loader-mark {
	animation:
		site-loader-complete-mark
		0.45s
		cubic-bezier(0.22, 1, 0.36, 1)
		forwards;
}

@keyframes site-loader-complete-mark {

	50% {
		transform: scale(1.07);
	}

	100% {
		transform: scale(1);
	}

}


/* ==================================================
   LOCK PAGE WHILE LOADING
================================================== */

body.site-loading {
	overflow: hidden;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 767px) {

	.site-loader-inner {
		width: min(360px, calc(100vw - 36px));
	}

	.site-loader-mark {
		width: 102px;
		height: 102px;
		margin-bottom: 21px;
	}

	.site-loader-icon {
		width: 86px;
		height: 86px;
	}

	.site-loader-brand {
		margin-bottom: 26px;
	}

	.site-loader-brand-main,
	.site-loader-brand-accent {
		font-size: 21px;
	}

	.site-loader-status {
		width: min(275px, 100%);
	}
	
	.hero-image {
    	display: none !important;
	}

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 575px) {

	.site-loader-inner {
		width: calc(100vw - 30px);
	}

	.site-loader-mark {
		width: 92px;
		height: 92px;
		margin-bottom: 18px;
	}

	.site-loader-icon {
		width: 78px;
		height: 78px;
	}

	.site-loader-brand {
		gap: 7px;
		margin-bottom: 24px;
	}

	.site-loader-brand-main,
	.site-loader-brand-accent {
		font-size: 18px;
	}

	.site-loader-status {
		width: min(250px, 100%);
	}

	.site-loader-label,
	.site-loader-percentage {
		font-size: 9px;
		line-height: 16px;
	}

}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

	.site-loader,
	.site-loader *,
	.site-loader *::before,
	.site-loader *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

}