/* --- CSS Variables (cleaned) --- */
:root{
	/* Typography */
	--font-family: "Poppins", Arial, sans-serif;

	/* Primary palette */
	--color-accent: #e71560;
	--color-link: var(--color-accent);
	--color-link-hover: #000;

	/* Text & UI */
	--color-primary: #fff;
	--color-text: #212529;
	--color-muted: #6c757d;
	--color-border: #e9ecef;
	--color-btn: #fff;

	/* Backgrounds */
	--bg-primary: #ffffff;
	--bg-secondary: #f8f9fa;
	--bg-trinary: #ffffff;
	--bg-tertiary: #e6e6e6;
	--bg-quaternary: #f8f9fa;
	--bg-navbar: #fff;
	--bg-footer: #f1f1f1;
	--bg-dropdown: #fff;
	--bg-banner: #f5f5fa;

	/* Buttons */
	--bg-btn: #e71560;
	--bg-btn-hover: #000;
	--color-btn-hover: #fff;

	/* Misc */
	--color-banner: var(--color-accent);
	--color-dropdown: #212529;

	/* Breakpoints */
	--breakpoint-xs: 0;
	--breakpoint-sm: 576px;
	--breakpoint-md: 768px;
	--breakpoint-lg: 992px;
	--breakpoint-xl: 1200px;
}

[data-theme="dark"]:root{
	/* Primary palette overrides for dark theme */
	--color-accent: #e71560;

	/* Text & UI */
	--color-primary: #fff;
	--color-text: rgba(255,255,255,0.9);
	--color-muted: rgba(255,255,255,0.6);
	--color-border: #333;
	--color-btn: #fff;

	/* Backgrounds */
	--bg-primary: #000000;
	--bg-secondary: #111;
	--bg-trinary: #333333;
	--bg-tertiary: #2a2a2a;
	--bg-quaternary: #1c1c1c;
	--bg-navbar: #000;
	--bg-footer: #000;
	--bg-dropdown: #000;
	--bg-banner: rgb(14,3,18);

	/* Buttons */
	--bg-btn: #e71560;
	--bg-btn-hover: #000;
	--color-btn-hover: #fff;

	/* Misc */
	--color-banner: var(--color-accent);
	--color-dropdown: #fff;
}

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

/* --- HTML & Body --- */
html {
	font-family: var(--font-family);
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	font-size: 16px;
}

body {
	margin: 0;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.8;
	color: var(--color-primary);
	text-align: left;
	background-color: var(--bg-primary);
	overflow-x:hidden
}

body.menu-show {
	overflow: hidden;
	position: fixed;
	height: 100%;
	width: 100%;
}

body.menu-show navbar{
	background-color: var(--bg-navbar);
}

body.auth{
	background-image: url(../images/background.jpg);
	background-size: cover;
}

body.auth navbar{
	position: relative;
}


h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
	line-height: 1.5;
	color: var(--color-primary);
	font-weight: 400;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 0.5rem;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
}

/* --- Lists --- */
ol,
ul,
dl {
	margin-top: 0;
	margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
	margin-bottom: 0;
}

/* --- Block Elements --- */
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
	display: block;
}

/* --- Misc --- */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
	background-color: var(--color-accent);
}

abbr[title],
abbr[data-original-title] {
	text-decoration: underline dotted;
	cursor: help;
	border-bottom: 0;
	text-decoration-skip-ink: none;
}

address {
	margin-bottom: 1rem;
	font-style: normal;
	line-height: inherit;
}

dt {
	font-weight: 700;
}
dd {
	margin-bottom: 0.5rem;
	margin-left: 0;
}
blockquote {
	margin: 0 0 1rem;
}
b,
strong {
	font-weight: bolder;
}
small {
	font-size: 80%;
}
sub,
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}

/* --- Links --- */

a {
	color: var(--color-link);
	text-decoration: none;
	background-color: transparent;
}
a:hover,
a:focus {
	color: var(--color-link-hover);
	-webkit-transition: 0.3s all ease;
	-o-transition: 0.3s all ease;
	transition: 0.3s all ease;
	color: var(--color-primary);
	text-decoration: none;
	outline: none !important;
}
a:not([href]):not([tabindex]) {
	color: inherit;
	text-decoration: none;
}
a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
	color: inherit;
	text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
	outline: 0;
}

a {
	color: var(--color-link);
	text-decoration: none;
	background-color: transparent;
}

i:hover,
i:focus {
	color: inherit;
	outline: none !important;
	border: none;
}

/* --- Code & Pre --- */
pre,
code,
kbd,
samp {
	font-family: var(--font-family-monospace);
	font-size: 1em;
}
pre {
	margin-top: 0;
	margin-bottom: 1rem;
	overflow: auto;
}

/* --- Images & SVG --- */
img {
	vertical-align: middle;
	border-style: none;
}
.img,
.blog-img,
.user-img {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

svg {
	overflow: hidden;
	vertical-align: middle;
}

/* --- Tables --- */
table {
	border-collapse: collapse;
}
caption {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	color: var(--color-muted);
	text-align: left;
	caption-side: bottom;
}
th {
	text-align: inherit;
}

/* --- Forms --- */
label {
	display: inline-block;
	margin-bottom: 0.5rem;
}
button {
	border-radius: 0;
}
button:focus {
	outline: 1px dotted;
	outline: 5px auto -webkit-focus-ring-color;
}
input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}
button,
input {
	overflow: visible;
}
button,
select {
	text-transform: none;
}
select {
	word-wrap: normal;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
	cursor: pointer;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	padding: 0;
	border-style: none;
}
input[type="radio"],
input[type="checkbox"] {
	box-sizing: border-box;
	padding: 0;
}
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
	-webkit-appearance: listbox;
}
textarea {
	overflow: auto;
	resize: vertical;
}
fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0;
}
legend {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	line-height: inherit;
	color: inherit;
	white-space: normal;
}
progress {
	vertical-align: baseline;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
[type="search"] {
	outline-offset: -2px;
	-webkit-appearance: none;
}
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button;
}
output {
	display: inline-block;
}
summary {
	display: list-item;
	cursor: pointer;
}
template {
	display: none;
}
[hidden] {
	display: none !important;
}

/* --- Headings --- */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.5;
	color: var(--color-primary);
}
h1,
.h1 {
	font-size: 2.5rem;
}
h2,
.h2 {
	font-size: 2rem;
}
h3,
.h3 {
	font-size: 1.75rem;
}
h4,
.h4 {
	font-size: 1.5rem;
}
h5,
.h5 {
	font-size: 1.25rem;
}
h6,
.h6 {
	font-size: 1rem;
}

/* --- Loader Styles --- */
#loader {
	position: fixed;
	width: 96px;
	height: 96px;
	left: 50%;
	top: 50%;
	fill: var(--color-accent);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: var(--bg-primary);
	-webkit-box-shadow: 0px 24px 64px var(--color-border);
	box-shadow: 0px 24px 64px var(--color-border);
	border-radius: 16px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.2s ease-out, visibility 0s linear 0.2s;
	-o-transition: opacity 0.2s ease-out, visibility 0s linear 0.2s;
	transition: opacity 0.2s ease-out, visibility 0s linear 0.2s;
	z-index: 1000;
}

#loader.fullscreen {
	padding: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

#loader.show {
	-webkit-transition: opacity 0.4s ease-out, visibility 0s linear 0s;
	-o-transition: opacity 0.4s ease-out, visibility 0s linear 0s;
	transition: opacity 0.4s ease-out, visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}

#loader .circular {
	-webkit-animation: loader-rotate 2s linear infinite;
	animation: loader-rotate 2s linear infinite;
	position: absolute;
	left: calc(50% - 24px);
	top: calc(50% - 24px);
	display: block;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
}

#loader .path {
	stroke-dasharray: 1, 200;
	stroke-dashoffset: 0;
	-webkit-animation: loader-dash 1.5s ease-in-out infinite;
	animation: loader-dash 1.5s ease-in-out infinite;
	stroke-linecap: round;
}


@-webkit-keyframes loader-rotate {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes loader-rotate {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes loader-dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -35px;
	}
	100% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -136px;
	}
}

@keyframes loader-dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -35px;
	}
	100% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -136px;
	}
}

header {
	position: relative;
	width:100%;
	height: 100vh;
}

/* --- SVG Styles --- */
i {
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--color-accent);
	fill: var(--color-accent);
}

i:hover {
	color: var(--color-primary);
	fill: var(--color-primary);
}

svg {
	fill: inherit;
	height: 1em;
	width: 1em;
}

.collapse:not(.show) {
	display: none;
}

/* --- Dropdown Menu Styles --- */
.dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	float: left;
	min-width: 10rem;
	padding: 20px;
	font-size: 1rem;
	color: var(--color-dropdown);
	text-align: left;
	list-style: none;
	background-color: var(--bg-dropdown);
	background-clip: padding-box;
	border: none;
	border-radius: 0.25rem;
}

.dropdown.full-menu {
	min-width: 100%;
	max-height: 100vh;
	padding-top: 40px;
}

.dropdown .menu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(100px, 200px));
	grid-auto-flow: row;
	gap: 1rem 2rem;
	list-style: none;
}


.dropdown.show {
	display: block;
}

.dropdown-left {
	right: auto;
	left: 0;
}

.dropdown-right {
	right: 0;
	left: auto;
}

.dropdown-divider {
	border-top: 1px solid var(--color-border);
}
.dropdown-item {
	color: var(--color-dropdown);
	background-color: var(--bg-dropdown);
}
.dropdown-item:hover,
.dropdown-item:focus {
	color: var(--color-link-hover);
	background-color: var(--bg-secondary);
}
.dropdown-item.active,
.dropdown-item:active {
	color: var(--color-btn);
	background-color: var(--color-accent);
}
.dropdown-item.disabled,
.dropdown-item:disabled {
	color: var(--color-muted);
	background-color: transparent;
}
.dropdown-header {
	color: var(--color-muted);
}
.dropdown-item-text {
	color: var(--color-dropdown);
}


/* --- Navbar Styles --- */
navbar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	/* height: 100px; */
	background: transparent;
	/* padding: 1rem 0rem; */
	-webkit-transition: 0.4s all ease-out;
	-o-transition: 0.4s all ease-out;
	transition: 0.4s all ease-out;
}

navbar .navbar-brand {
	display: inline-block;
	color: var(--color-navbar);
	margin-right: 40px;
	padding: 1rem 2rem;
	font-weight: 900;
	font-size: 24px;
	text-transform: uppercase;
	line-height: inherit;
	white-space: nowrap;
}

navbar nav {
	position: relative;
	z-index: -1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: row;
	flex-direction: row;
	justify-content: space-between;
	gap: 30px;
	list-style: none;
	margin: 0px;	
	flex-grow: 1;
	padding: 0rem 2rem;
	max-height: calc(100vh - 75px);
}

navbar .nav-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: row;
	flex-direction: row;
	gap: 30px;
	list-style: none;
	margin: 0px;
	padding: 0px;
	z-index: 1;
}

navbar .nav-list .nav-item {
	list-style: none;
}

.nav-link {
	color: var(--color-navbar);
	font-weight: 400;
	padding: 0px;
}
.nav-link:hover,
.nav-link:focus {
	text-decoration: none;
}
.nav-link.disabled {
	color: var(--color-muted);
	pointer-events: none;
	cursor: default;
}

navbar nav > .nav-item .nav-link.active,
navbar nav > .nav-item .nav-link.active span:before,
navbar nav > .nav-item.active > a {
	color: var(--color-accent);
}

.navbar-toggler,
.navbar-toggler:focus {
	display: block;
	font-size: 26px !important;
	border: none;
	outline: none;
	color: var(--color-primary);
	fill: var(--color-primary);
	cursor: pointer;
	padding-right: 2rem;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 0.1em;
	background: transparent;
}

navbar .navbar-toggler:hover {
	color: var(--color-accent);
	fill: var(--color-accent);
	text-decoration: none;
	outline: none !important;
}

navbar.fixed:not(.absolute) {
	position: fixed;
	left: 0;
	top: 0;
	background: var(--bg-navbar);
	-webkit-box-shadow: 0 0 10px 0 var(--color-border);
	box-shadow: 0 0 10px 0 var(--color-border);
}

.nav-list .nav-item .dropdown {
	/* z-index: -1; */
}


@media (min-width: 992px) {
	.nav-list .nav-item .dropdown {
		position: fixed;
		top: 90px;
		left: 0;
	}

	navbar .nav-list {
		align-items: center;
	}
}

@media (max-width: 991.99px) {
	navbar nav {
		display:none;
		gap: 20px;
		padding: 4rem 2rem;
		width: 100%;
		flex-direction: column;
		background: var(--bg-navbar);
		overflow: auto;
	}

	navbar nav.show {
		display: flex;
	}


	navbar .nav-list {
		flex-direction: column;
		gap: 20px;
	}
	
	navbar .nav-list .dropdown.full-menu {
		position: relative;
		min-width: 100%;
		max-height: 100%;
		padding: 0;
		padding-top: 2rem;
	}
	navbar .nav-list .dropdown.full-menu .menu-grid {
		padding: 0;
		margin-left:24px
	}

	navbar .nav-list.nav-btns {
		flex-direction: row;
	}
	.navbar-brand img {
		width: 125px;
	}
}

/* --- Nav Styles --- */
nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: row;
	flex-direction: row;
	gap: 30px;
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.services:hover,
.progress-bar,
.progress-bar:after,
.project .overlay {
	background-color: var(--color-accent) !important;
	color: var(--color-btn);
}


/* --- Button Styles --- */
.btn {
	display: inline-block;
	font-weight: 600;
	color: var(--color-btn);
	text-align: center;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: 0.4rem 0.8rem;
	font-size: 1.2rem;
	line-height: 1.5;
	border-radius: 0.25rem;
	-webkit-transition: color 0.15s ease-in-out,
		background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
		-webkit-box-shadow 0.15s ease-in-out;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	-o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
		-webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
	.btn {
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}
}
.btn:hover {
	color: #212529;
	text-decoration: none;
}
.btn:focus,
.btn.focus {
	outline: 0;
	-webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn.disabled,
.btn:disabled {
	opacity: 0.65;
}

.btn.btn-primary {
	background-color: var(--bg-btn) ;
	color: var(--color-btn);
	border: 1px solid var(--bg-btn) ;
}

.btn.btn-primary > a {
	color: var(--color-btn);
}

.btn.btn-primary:hover {
	border: 1px solid var(--bg-btn);
}
.btn.btn-primary:hover,
.btn.btn-primary:hover > a {
	background-color: var(--bg-btn-hover);
	color: var(--color-btn-hover);
}

.btn-outline-primary {
	background-color: var(--bg-primary);
	color: var(--color-accent);
	fill: var(--color-accent);
	border: 2px solid var(--color-accent);
}

.btn-outline-primary:hover {
	color: var(--bg-btn-hover);
	background-color: var(--color-accent);
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
	color: var(--color-accent);
	background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
	color: var(--color-btn);
	background-color: var(--color-accent);
	border-color: var(--color-accent);
}

/* --- Misc Highlighted Color Styles --- */
.media .ftco-icon span,
.ftco-counter .text strong.number,
.ftco-counter .ftco-number,
.blog-entry .text .heading a:hover,
.blog-entry .text .heading a:focus,
.blog-entry .text .heading a:active,
.blog-entry .meta span,
.blog-entry .meta a,
.blog-entry .meta a:hover,
.comment-list li .comment-body .meta,
.categories li a:hover,
.categories li a:focus,
.sidelink li a:hover,
.sidelink li a:focus {
	color: var(--color-primary);
}

.counter-wrap span {
	font-size: 20px;
	font-weight: 600;
	color: var(--color-primary);
}
.counter-wrap span.number {
	color: var(--color-accent);
}

.box .icon {
	width: 100px;
	height: 100px;
	background: rgba(255, 255, 255, 0.1);
	margin: 0 auto 2em auto;
	border-radius: 50%;
}
.box .icon i {
	font-size: 30px;
}
.contact-info p a {
	color: #fff;
}
.box h3 {
	font-size: 17px;
	font-weight: 500;
	text-transform: uppercase;
}

/* --- Footer Styles --- */
footer {
	display: flex;
	flex-wrap: wrap;
	background: var(--bg-footer);
	color: var(--color-footer);
	padding: 80px 20px;
	gap: 40px;
	justify-content: center;
}
.footer-small-nav > li a:hover,
.footer-small-nav > li a:focus {
	color: var(--color-accent) !important;
}
footer .footer-container {
	width: 300px;
}
@media (max-width: 1200px) {
	footer .footer-container {
		width: 260px;
	}
}
@media (max-width: 992px) {
	footer .footer-container {
		width: 100%;
	}
}
footer .footer-container ul li a,
footer .footer-container ul li a span,
.ftco-counter .text span {
	color: var(--color-muted);
}
footer .footer-container h2 {
	color: var(--color-footer);
	margin-bottom: 40px;
	font-size: 22px;
	font-weight: 600;
}
footer .footer-container ul {
	list-style: none;
	padding: 0;
}
footer .footer-container ul li {
	margin-bottom: 10px;
}
footer .footer-container ul li a,
footer .footer-container ul li a span {
	color: var(--color-muted);
}
footer .footer-container .btn-primary {
	background: var(--color-btn) !important;
	border: 2px solid var(--color-btn) !important;
}
footer .footer-container .btn-primary:hover {
	background: var(--color-btn);
	border: 2px solid var(--color-btn) !important;
}
footer p {
	color: var(--color-footer);
}
footer a {
	color: var(--color-footer);
	fill: var(--color-footer);
}
footer a:hover {
	color: var(--color-btn);
}

.footer-social {
	display: flex;
	padding-left: 0;
	list-style: none;
	gap: 15px;
}
.footer-social li {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 50px;
	width: 50px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	font-size: 26px;
}
.footer-social li a {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 26px;
}
@media (max-width: 768px) {
	footer .footer-container {
		width: 100%;
	}
}

/* --- Project Styles --- */
.project .text h3 a,
.project .text span {
	text-shadow: 0 0 5px var(--color-border);
}
.project .overlay {
	background-color: var(--color-accent) !important;
	color: var(--color-accent);
}

.banner {
	position: relative;
	z-index: 0;
	color: var(--color-banner);
	border-bottom: 1px solid var(--color-border);
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.slide-container {
	height: 100vh;
	width:100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	text-align: center;
}

.banner-slide {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.banner-slide.show {
	animation: slideLeft 0.7s;
}
.banner-slide:not(.show) {
	display: none;
	animation: slideRight 0.7s;
}
.banner-slide.show.prev {
	animation: slideRight 0.7s;
}
.banner-slide.next:not(.show) {
	animation: slideLeft 0.7s;
}

.banner-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.banner-content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 20px;
	text-shadow: 0 0 20px #000;
	z-index: 1;
}
.banner-content h2 {
	font-size: 2.5rem;
	color: var(--color-accent);
	font-weight: 500;
}
.banner-content p, .banner-content h1 {
	font-size: 1.5rem;
	color: var(--color-primary);
	max-width:600px
}

.banner-slide-next,
.banner-slide-prev {
	color: var(--color-accent);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	outline: none;
	border: none;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	cursor: pointer;
	z-index: 2;
	transition: background 0.2s;
}

.banner-slide-prev {
	left: 24px;
}
.banner-slide-next {
	right: 24px;
}
.banner-slide-next:hover,
.banner-slide-prev:hover {
	background: var(--color-accent);
	color: var(--color-btn-hover) !important;
}

/* Unified slide animation for both outgoing and incoming slides */
@keyframes slideInLeft {
	from {
		transform: translateX(100%);
		opacity: 1;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}
@keyframes slideOutLeft {
	from {
		transform: translateX(0);
		opacity: 1;
	}
	to {
		transform: translateX(-100%);
		opacity: 1;
	}
}
@keyframes slideInRight {
	from {
		transform: translateX(-100%);
		opacity: 1;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}
@keyframes slideOutRight {
	from {
		transform: translateX(0);
		opacity: 1;
	}
	to {
		transform: translateX(100%);
		opacity: 1;
	}
}

.banner-slide.show.next {
	animation: slideInLeft 0.7s forwards;
	z-index: 2;
}
.banner-slide.hide.next {
	animation: slideOutLeft 0.7s forwards;
	z-index: 1;
}
.banner-slide.show.prev {
	animation: slideInRight 0.7s forwards;
	z-index: 2;
}
.banner-slide.hide.prev {
	animation: slideOutRight 0.7s forwards;
	z-index: 1;
}

@media (max-width: 567px) {
	.banner-content h2 {
		font-size: 2rem;
		color: var(--color-accent);
	}
	.banner-content p {
		font-size: 1.5rem;
		color: var(--color-primary);
	}
}


/* --- Counter Styles --- */
.ftco-counter .text strong.number {
	color: var(--color-primary);
	font-weight: 700;
	font-size: 30px;
	display: block;
}
.ftco-counter .text span {
	color: var(--color-muted);
	display: block;
	font-size: 16px;
}
.ftco-counter .ftco-number {
	color: var(--color-primary);
	display: block;
	font-size: 72px;
	font-weight: bold;
}


section {
	position: relative;
	padding: 100px 20px 120px 20px;
	background-color: var(--bg-primary);
}

section:nth-of-type(odd) {
	background-color: var(--bg-secondary);
}
section .section-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
}

section h2,
section .h2 {
	font-size: 50px;
	font-weight: 700;
}

section p {
	color: #999999;
}
section .section-header {
	position: relative;
	padding-bottom: 3em;
	text-align: center;
}

.section-header .big {
	position: absolute;
	top: 0px;
	left: 0;
	right: 0px;
	font-size: 7vw;
	color: rgba(255, 255, 255, 0.1);
	font-weight: 900;
}

.about-container {
	padding: 0px 20px;
}
.about-container .section-header {
	text-align: left;
}

.services {
	padding: 2em;
	width: 275px;
	background: rgba(255, 255, 255, 0.1);
	-webkit-box-shadow: 0px 20px 69px -27px rgba(0, 0, 0, 0.17);
	-moz-box-shadow: 0px 20px 69px -27px rgba(0, 0, 0, 0.17);
	box-shadow: 0px 20px 69px -27px rgba(0, 0, 0, 0.17);
	text-align: center;
}

.services:hover h3 {
	color: #000;
}

.services:hover hr {
	background-color: #e71560;
}

@media (max-width: 768px) {
	.services {
		width: 100%;
	}
	.project {
		width: 100%;
	}
}

/* --- Project Styles --- */
.project {
	display: flex;
	justify-content: center;
	align-items: center;
	/* flex-grow: 1; */
	/* height: 360px; */
	position: relative;
}

.project > img {
	width: auto;
	height: 350px;
	object-fit: cover;
}

.project .overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	opacity: 0;
	background: var(--color-accent);
	transition: all 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	/* height: 360px; */
}

@media (max-width: 767.98px) {
	.project {
		width: 100%;
		min-width: 100% !important;
	}
	.project-1 {
		display: none;
	}
	.project .overlay {
		opacity: 0.2;
	}
}
@media (max-width: 767.98px) {
	.project {
		width: 100%;
		min-width: 100% !important;
	}
	.project-1 {
		display: none;
	}
	.project .overlay {
		opacity: 0.2;
	}
}

.project .text {
	max-width: 80%;
	z-index: 1;
	opacity: 0;
	transition: all 0.3s ease;
}

.project .text h3 {
	font-size: 20px;
}

.project .text h3 a {
	color: #fff;
}

.project .text span {
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 12px;
	font-weight: 600;
}

.project:hover .overlay,
.project:focus .overlay {
	opacity: 0.9;
}

.project:hover .text,
.project:focus .text {
	opacity: 1;
}

@media (max-width: 767.98px) {
	.project .text {
		opacity: 1;
	}
	.project .text span {
		color: rgba(255, 255, 255, 0.8);
	}
}

.auth-container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: calc(100vh - 76px);
	padding: 20px;
}

.auth-form {
	display: flex;
	flex-direction: column;
	padding: 40px 20px;
	background: rgba(0, 0, 0, 0.8);
	border: 2px solid #920586;
	border-radius: 12px;
	box-shadow: 0 0 20px #ff00bf, 0 0 40px #ff00ea;
	gap: 20px;
	position: relative;
	width: 420px;
	max-width: 420px;
}

.loading-bar {
	width: 0%;
	height: 4px;
	background: linear-gradient(90deg, #00ffff, #ff00c8);
	transition: width 2s ease;
	z-index: 9999;
}
.checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	margin: 0px;
}
.validationError {
	color: red;
	font-size: 10px;
}

section#sportsbook {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}
section#about-section img{
	max-height: 760px;
}

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

.d-flex {
	display: flex;
}
.d-none {
	display: none;
}

@media (min-width: 992px) {
	.d-none-lg {
		display: none !important;
	}
	.d-block-lg {
		display: block !important;
	}
	.d-flex-lg {
		display: flex !important;
	}
}

.flex-row {
	-webkit-box-orient: horizontal !important;
	-webkit-box-direction: normal !important;
	-ms-flex-direction: row !important;
	flex-direction: row !important;
}

.flex-column {
	-webkit-box-orient: vertical !important;
	-webkit-box-direction: normal !important;
	-ms-flex-direction: column !important;
	flex-direction: column !important;
}

.flex-row-reverse {
	-webkit-box-orient: horizontal !important;
	-webkit-box-direction: reverse !important;
	-ms-flex-direction: row-reverse !important;
	flex-direction: row-reverse !important;
}

.flex-column-reverse {
	-webkit-box-orient: vertical !important;
	-webkit-box-direction: reverse !important;
	-ms-flex-direction: column-reverse !important;
	flex-direction: column-reverse !important;
}

.flex-wrap {
	-ms-flex-wrap: wrap !important;
	flex-wrap: wrap !important;
}

.flex-nowrap {
	-ms-flex-wrap: nowrap !important;
	flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
	-ms-flex-wrap: wrap-reverse !important;
	flex-wrap: wrap-reverse !important;
}

.flex-fill {
	-webkit-box-flex: 1 !important;
	-ms-flex: 1 1 auto !important;
	flex: 1 1 auto !important;
}

.flex-grow-0 {
	-webkit-box-flex: 0 !important;
	-ms-flex-positive: 0 !important;
	flex-grow: 0 !important;
}

.flex-grow-1 {
	-webkit-box-flex: 1 !important;
	-ms-flex-positive: 1 !important;
	flex-grow: 1 !important;
}

.flex-shrink-0 {
	-ms-flex-negative: 0 !important;
	flex-shrink: 0 !important;
}

.flex-shrink-1 {
	-ms-flex-negative: 1 !important;
	flex-shrink: 1 !important;
}

.justify-content-start {
	-webkit-box-pack: start !important;
	-ms-flex-pack: start !important;
	justify-content: flex-start !important;
}

.justify-content-end {
	-webkit-box-pack: end !important;
	-ms-flex-pack: end !important;
	justify-content: flex-end !important;
}

.justify-content-center {
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
}

.justify-content-between {
	-webkit-box-pack: justify !important;
	-ms-flex-pack: justify !important;
	justify-content: space-between !important;
}

.justify-content-around {
	-ms-flex-pack: distribute !important;
	justify-content: space-around !important;
}

.align-items-start {
	-webkit-box-align: start !important;
	-ms-flex-align: start !important;
	align-items: flex-start !important;
}

.align-items-end {
	-webkit-box-align: end !important;
	-ms-flex-align: end !important;
	align-items: flex-end !important;
}

.align-items-center {
	-webkit-box-align: center !important;
	-ms-flex-align: center !important;
	align-items: center !important;
}

.align-items-baseline {
	-webkit-box-align: baseline !important;
	-ms-flex-align: baseline !important;
	align-items: baseline !important;
}

.align-items-stretch {
	-webkit-box-align: stretch !important;
	-ms-flex-align: stretch !important;
	align-items: stretch !important;
}

.align-content-start {
	-ms-flex-line-pack: start !important;
	align-content: flex-start !important;
}

.align-content-end {
	-ms-flex-line-pack: end !important;
	align-content: flex-end !important;
}

.align-content-center {
	-ms-flex-line-pack: center !important;
	align-content: center !important;
}

.align-content-between {
	-ms-flex-line-pack: justify !important;
	align-content: space-between !important;
}

.align-content-around {
	-ms-flex-line-pack: distribute !important;
	align-content: space-around !important;
}

.align-content-stretch {
	-ms-flex-line-pack: stretch !important;
	align-content: stretch !important;
}

.align-self-auto {
	-ms-flex-item-align: auto !important;
	-ms-grid-row-align: auto !important;
	align-self: auto !important;
}

.align-self-start {
	-ms-flex-item-align: start !important;
	align-self: flex-start !important;
}

.align-self-end {
	-ms-flex-item-align: end !important;
	align-self: flex-end !important;
}

.align-self-center {
	-ms-flex-item-align: center !important;
	-ms-grid-row-align: center !important;
	align-self: center !important;
}

.align-self-baseline {
	-ms-flex-item-align: baseline !important;
	align-self: baseline !important;
}

.align-self-stretch {
	-ms-flex-item-align: stretch !important;
	-ms-grid-row-align: stretch !important;
	align-self: stretch !important;
}

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

/* Width utility classes */
.w-200 {
	width: 200px !important;
}
.w-250 {
	width: 250px !important;
}
.w-300 {
	width: 300px !important;
}
.w-400 {
	width: 400px !important;
}
.mw-400 {
	width: 400px !important;
}
.w-500 {
	width: 500px !important;
}
.mw-500 {
	width: 500px !important;
}
.w-600 {
	width: 600px !important;
}

.bg-media {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

/* #ai-chat {
	position: fixed;
} */

.button-round {
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

#chat-toggle {
	position: fixed;
	bottom: 18px;
	right: 18px;
	padding: 0px;
	z-index: 1;
	font-size: 2rem;
}

/* Chat container */
#chat-container {
	visibility: hidden;
	background-color: var(--bg-trinary);
	position: fixed;
	bottom: 15px;
	right: 15px;
	width: 300px;
	height: calc(100vh - 85px);
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	z-index: 1;
}

/* Chat header */
#chat-header {
	display: flex;
	justify-content: space-between;
	background-color: var(--bg-secondary);
	padding: 15px;
	font-size: 16px;
	font-weight: 500;
	color: var(--color-primary);
}

/* Chat header link */
#chat-header a{
	font-size:2rem;
	color: var(--color-primary);
}

#chat-header a:hover{
	color: var(--color-accent);
}

/* Chat body */
#chat-body {
	height: calc(100vh - 170px) !important;
}

/* Chat messages */
#chat-body {
	display: flex;
	flex-direction: column;
	gap: 36px;
	padding-bottom: 60px;
	overflow-y: auto;
	height: calc(100vh - 97px);
}

/* Chat input */
#chat-input {
	display: flex;
	position: absolute;
	bottom: 0px;
	width: 100%;
}

/* message input area uses theme */
#chat-input .messageArea {
	width: 100%;
	padding: 10px;
	border: none;
	outline: none;
	resize: none;
	background-color: var(--bg-quaternary);
	color: var(--color-text);
}

/* input button uses theme */
#chat-input button {
	border: none !important;
	border-radius: 0;
	padding: 10px;
	cursor: pointer;
	background-color: var(--bg-secondary);
	color: var(--color-text);
}

/* Messages */
.message {
	word-wrap: break-word;
	word-break: break-word;
	border-radius: 8px;
	margin-right: 10px;
}

/* user message background uses theme */
.message.user {
	max-width: 70%;
	margin-left: auto;
}
.message .user {
	background-color: var(--bg-tertiary);
	padding: 10px;
}

/* assistant message */
.message.assistant {
	margin-left: 10px;
}

/* textarea general */
textarea {
	background-color: var(--bg-quaternary);
	color: var(--color-text);
}

/* code-tools use existing variable */
.code-tools {
	position: relative;
	display: flex;
	justify-content: space-between;
	background-color: var(--bg-secondary);
	padding: 10px;
}