/* -------------------------------------------

Name: 		Ruizarch
Version:    1.0
Developer:	Nazar Miller (millerDigitalDesign)
Portfolio:  https://themeforest.net/user/millerdigitaldesign/portfolio?ref=MillerDigitalDesign

p.s. I am available for Freelance hire (UI design, web development). email: miller.themes@gmail.com

------------------------------------------- */
/*--------------------------------------------

1. common
    - main
    - typography
    - link
    - button
    - form
    - breadcrumbs
    - backgrounds
    - spaces
2. components
    - preloader
    - cursor
    - hidden elements
    - scrollbar
    - frame
    - menu button
    - menu 
    - banner
    - circle text
    - lines
    - dodecahedron
    - about
    - partners
    - services
    - team
    - social icons
    - revievs
    - blog
    - footer
    - portfolio
    - map
    - accordion
    - 404
    - images
    - page transitions


--------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css);

/* -------------------------------------------

Color Palette Variables

------------------------------------------- */
:root {
	/* Primary Color Palette */
	--grape: #2c2c2c;
	--mischka: #e8e8e8;
	--salt-box: #707070;
	--rum: #808080;
	--baltic-sea: #0a0a0a;
	--voodoo: #505050;
	--mid-gray: #2a2a2a;
	--ship-gray: #1a1a1a;
	--mountain-mist: #98959e;
	--amethyst-smoke: #a0a0a0;

	/* RGBA Variations */
	--grape-rgb: rgba(44, 44, 44, 1);
	--mischka-rgb: rgba(232, 232, 232, 1);
	--salt-box-rgb: rgba(112, 112, 112, 1);
	--rum-rgb: rgba(128, 128, 128, 1);
	--baltic-sea-rgb: rgba(10, 10, 10, 1);
	--voodoo-rgb: rgba(80, 80, 80, 1);
	--mid-gray-rgb: rgba(42, 42, 42, 1);
	--ship-gray-rgb: rgba(26, 26, 26, 1);
	--mountain-mist-rgb: rgba(152, 149, 158, 1);
	--amethyst-smoke-rgb: rgba(160, 160, 160, 1);

	/* Semantic Color Mapping */
	--primary-dark: var(--grape);
	--primary-light: var(--mischka);
	--secondary-dark: var(--voodoo);
	--secondary-medium: var(--salt-box);
	--accent: var(--amethyst-smoke);
	--text-dark: var(--baltic-sea);
	--text-medium: var(--ship-gray);
	--text-light: var(--mountain-mist);
	--background-light: var(--mischka);
	--background-dark: var(--baltic-sea);
}

/* -------------------------------------------

main

------------------------------------------- */
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html,
body {
	padding: 0;
	margin: 0;
	font-family: "Outfit", sans-serif;
	font-size: 16px;
	font-weight: 300;
	color: var(--text-medium);
	background-color: var(--mischka);
	line-height: 150%;
	-ms-scroll-chaining: none;
	overscroll-behavior: none;
	/* Safari-specific scroll fixes */
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
	html,
	body {
		font-size: 15px;
	}
}

*::-moz-selection {
	color: #ffffff;
	background-color: var(--accent);
}

*::selection {
	color: #ffffff;
	background-color: var(--accent);
}

/* Ensure text is selectable */
p, h1, h2, h3, h4, h5, h6, span, div, article, section, a {
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

/* Disable selection only for buttons and controls */
button, .mil-button, .mil-icon-button, input[type="button"], input[type="submit"] {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.mil-wrapper {
	position: relative;
	overflow: hidden;
	max-width: 100%;
}

.container {
	pointer-events: all;
}

.mil-relative {
	position: relative;
}

.mil-o-hidden {
	overflow: hidden;
}

.mil-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.mil-vert-between {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	height: 100%;
}

@media screen and (max-width: 992px) {
	.mil-mobile-hidden {
		display: none;
	}
}

section {
	position: relative;
	overflow: hidden;
}

/* -------------------------------------------

typography

------------------------------------------- */
h1,
.mil-h1,
h2,
.mil-h12,
h3,
.mil-h3,
h4,
.mil-h4,
h5,
.mil-h5,
h6,
.mil-h6 {
	font-family: "Outfit", sans-serif;
	color: var(--text-dark);
	font-weight: 500;
	line-height: 120%;
}
@media screen and (max-width: 768px) {
	h1 br,
	.mil-h1 br,
	h2 br,
	.mil-h12 br,
	h3 br,
	.mil-h3 br,
	h4 br,
	.mil-h4 br,
	h5 br,
	.mil-h5 br,
	h6 br,
	.mil-h6 br {
		display: none;
	}
}

h1,
.mil-h1 {
	font-size: 86px;
}
@media screen and (max-width: 1400px) {
	h1,
	.mil-h1 {
		font-size: 74px;
	}
}
@media screen and (max-width: 1200px) {
	h1,
	.mil-h1 {
		font-size: 72px;
	}
}
@media screen and (max-width: 992px) {
	h1,
	.mil-h1 {
		font-size: 58px;
	}
}
@media screen and (max-width: 768px) {
	h1,
	.mil-h1 {
		font-size: 34px;
	}
}

h2,
.mil-h2 {
	font-size: 68px;
	line-height: 120%;
}
@media screen and (max-width: 1200px) {
	h2,
	.mil-h2 {
		font-size: 56px;
	}
}
@media screen and (max-width: 992px) {
	h2,
	.mil-h2 {
		font-size: 44px;
	}
}
@media screen and (max-width: 768px) {
	h2,
	.mil-h2 {
		font-size: 36px;
	}
}

h3,
.mil-h3 {
	font-size: 42px;
}
@media screen and (max-width: 1200px) {
	h3,
	.mil-h3 {
		font-size: 39px;
	}
}
@media screen and (max-width: 992px) {
	h3,
	.mil-h3 {
		font-size: 36px;
	}
}
@media screen and (max-width: 768px) {
	h3,
	.mil-h3 {
		font-size: 30px;
	}
}

h4,
.mil-h4 {
	font-size: 28px;
}
@media screen and (max-width: 1200px) {
	h4,
	.mil-h4 {
		font-size: 26px;
	}
}
@media screen and (max-width: 992px) {
	h4,
	.mil-h4 {
		font-size: 24px;
	}
}
@media screen and (max-width: 768px) {
	h4,
	.mil-h4 {
		font-size: 22px;
	}
}

h5,
.mil-h5 {
	font-size: 20px;
	line-height: 150%;
}
@media screen and (max-width: 768px) {
	h5,
	.mil-h5 {
		font-size: 18px;
	}
}

h6,
.mil-h6 {
	font-size: 18px;
	line-height: 150%;
}
@media screen and (max-width: 1200px) {
	h6,
	.mil-h6 {
		font-size: 17px;
	}
}
@media screen and (max-width: 992px) {
	h6,
	.mil-h6 {
		font-size: 16px;
	}
}
@media screen and (max-width: 768px) {
	h6,
	.mil-h6 {
		font-size: 21px;
	}
}

.mil-no-wrap {
	white-space: nowrap;
}

blockquote {
	padding: 60px;
	background-color: rgba(152, 149, 158, 0.1);
	font-size: 18px;
	color: var(--text-dark);
	font-style: italic;
	border-left: solid 4px var(--accent);
}
@media screen and (max-width: 768px) {
	blockquote {
		padding: 30px;
		font-size: 16px;
	}
}

.mil-text-sm {
	font-size: 15px;
}

.mil-text-lg {
	font-size: 18px;
	line-height: 170%;
}

.mil-text-xl {
	font-size: 22px;
	line-height: 180%;
}
@media screen and (max-width: 768px) {
	.mil-text-xl {
		font-size: 20px;
	}
}

.mil-upper {
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 2px;
}

.mil-bold {
	font-weight: 500;
}

.mil-thin {
	font-weight: 100;
}

a {
	color: inherit;
	text-decoration: none;
}

.mil-complex-title {
	line-height: normal;
}

.mil-accent {
	color: var(--accent);
}

.mil-light {
	color: var(--mischka) !important;
}
.mil-light a {
	color: var(--mischka) !important;
}

.mil-muted {
	color: var(--text-light);
}

.mil-dark {
	color: var(--text-dark);
}

.mil-light-soft {
	color: var(--mountain-mist);
}

.mil-dark-soft {
	color: var(--text-medium);
}

.mil-marker {
	background-color: var(--accent);
	padding: 0 5px;
}

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

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

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

@media screen and (max-width: 576px) {
	.mil-sm-center {
		text-align: center;
	}
}

.mil-suptitle {
	position: relative;
	display: block;
	margin-bottom: 60px;
}
.mil-suptitle:before {
	content: "";
	position: absolute;
	right: calc(100% + 30px);
	top: 10px;
	width: 600px;
	height: 1px;
	background-color: var(--mischka);
	opacity: 0.2;
}
.mil-suptitle.mil-suptitle-right {
	text-align: right;
}
.mil-suptitle.mil-suptitle-right:before {
	left: calc(100% + 30px);
}
@media screen and (max-width: 768px) {
	.mil-suptitle.mil-suptitle-right {
		text-align: center;
	}
	.mil-suptitle.mil-suptitle-right:before {
		display: none;
	}
}
.mil-suptitle.mil-suptitle-dark:before {
	background-color: var(--text-dark);
	opacity: 0.1;
}
@media screen and (max-width: 768px) {
	.mil-suptitle {
		margin-bottom: 60px;
	}
}

.mil-divider {
	width: 100%;
	height: 1px;
	background-color: rgba(152, 149, 158, 0.2);
}

.mil-img-frame {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-bottom: 140%;
}
.mil-img-frame img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

/* -------------------------------------------

link

------------------------------------------- */
.mil-link {
	cursor: pointer;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 12px;
}
.mil-link svg {
	margin-left: 15px;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	padding: 10px;
	background-color: rgba(160, 160, 160, 0.2);
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-link svg path {
	fill: var(--mischka);
}
.mil-link.mil-accent svg {
	background-color: rgba(160, 160, 160, 0.2);
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-link.mil-accent svg path {
	fill: var(--accent);
}
.mil-link.mil-dark svg {
	background-color: rgba(152, 149, 158, 0.2);
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-link.mil-dark svg path {
	fill: var(--text-dark);
}
.mil-link:hover svg {
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}
.mil-link.mil-down-arrow svg {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.mil-link.mil-down-arrow:hover svg {
	-webkit-transform: scale(1.15) rotate(90deg);
	transform: scale(1.15) rotate(90deg);
}
.mil-link.mil-icon-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.mil-link.mil-icon-left svg {
	margin-left: 0;
	margin-right: 15px;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.mil-link.mil-icon-left:hover svg {
	-webkit-transform: scale(1.15) rotate(180deg);
	transform: scale(1.15) rotate(180deg);
}

/* -------------------------------------------

button

------------------------------------------- */
.mil-button {
	cursor: pointer;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: none;
	letter-spacing: 2px;
	font-size: 12px;
	background-color: #fff;
	color: #000;
	border-radius: 70px;
	padding: 0 15px 0 50px;
	height: 70px;
	text-transform: uppercase;
	font-weight: 500;
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-button span {
	white-space: nowrap;
}
.mil-button svg {
	margin-left: 30px;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	padding: 10px;
	background-color: #000;
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-button svg path {
	fill: #fff;
}
.mil-button.mil-icon-button {
	padding: 15px;
}
.mil-button.mil-icon-button svg {
	margin-left: 0;
}
.mil-button.mil-icon-button-sm {
	padding: 0;
	height: 40px;
}
.mil-button.mil-icon-button-sm svg {
	margin-left: 0;
	background-color: #fff;
}
.mil-button.mil-icon-button-sm svg path {
	fill: #000;
}
.mil-button:hover {
	-webkit-transform: scale(1.015);
	transform: scale(1.015);
	-webkit-filter: brightness(110%);
	filter: brightness(110%);
}
.mil-button:hover svg {
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}
.mil-button.mil-arrow-down svg {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.mil-button.mil-arrow-down:hover {
	-webkit-transform: scale(1.015);
	transform: scale(1.015);
	-webkit-filter: brightness(110%);
	filter: brightness(110%);
}
.mil-button.mil-arrow-down:hover svg {
	-webkit-transform: scale(1.15) rotate(90deg);
	transform: scale(1.15) rotate(90deg);
}
@media screen and (max-width: 992px) {
	.mil-button {
		height: 60px;
		padding: 0 10px 0 40px;
	}
	.mil-button svg {
		margin-left: 25px;
	}
	.mil-services-button {
		height: 70px;
		padding: 0 15px 0 55px;
		font-size: 14px;
	}
	.mil-services-button svg {
		margin-left: 35px;
		width: 45px;
		height: 45px;
		padding: 12px;
	}
}

/* Services button - larger size */
.mil-services-button {
	height: 80px;
	padding: 0 20px 0 60px;
	font-size: 14px;
	letter-spacing: 2.5px;
}
.mil-services-button svg {
	margin-left: 35px;
	width: 50px;
	height: 50px;
	padding: 12px;
}

/* -------------------------------------------

form

------------------------------------------- */
input,
textarea {
	position: relative;
	height: 70px;
	padding: 0 30px;
	width: 100%;
	font-size: 12px;
	letter-spacing: 2px;
	font-weight: 500;
	font-family: "Outfit", sans-serif;
	color: var(--text-dark);
	border: none;
	border-bottom: solid 1px rgba(112, 112, 112, 0.3);
	margin-bottom: 30px;
}
input:focus,
textarea:focus {
	outline: inherit;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
	color: var(--text-medium);
}
input::-moz-placeholder,
textarea::-moz-placeholder {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
	color: var(--text-medium);
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
	color: var(--text-medium);
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
	color: var(--text-medium);
}
input::placeholder,
textarea::placeholder {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
	color: var(--text-medium);
}

textarea {
	padding: 15px 30px;
	height: 300px;
}

/* Select dropdown styling */
select {
	position: relative;
	height: 70px;
	padding: 0 30px;
	width: 100%;
	font-size: 16px;
	letter-spacing: 2px;
	font-weight: 500;
	font-family: "Outfit", sans-serif;
	color: var(--text-dark);
	border: none;
	border-bottom: solid 1px rgba(112, 112, 112, 0.3);
	margin-bottom: 30px;
	background-color: transparent;
	cursor: pointer;
}

select:focus {
	outline: inherit;
}

select option {
	font-size: 16px;
	font-weight: 500;
	color: var(--text-dark);
	background-color: var(--background-light);
	padding: 12px 16px;
	text-transform: none;
	letter-spacing: 1px;
}

/* -------------------------------------------

breadcrumbs

------------------------------------------- */
.mil-breadcrumbs {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}
.mil-breadcrumbs:before {
	content: "";
	position: absolute;
	right: calc(100% + 30px);
	top: 10px;
	width: 100vw;
	height: 1px;
	background-color: rgba(152, 149, 158, 0.2);
}
.mil-breadcrumbs li {
	list-style-type: none;
}
.mil-breadcrumbs li:after {
	content: "/";
	margin: 0 15px;
	color: var(--text-dark);
}
.mil-breadcrumbs li a {
	color: var(--text-dark);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
	font-size: 12px;
	white-space: nowrap;
	-webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-breadcrumbs li a:hover {
	color: var(--accent);
}
.mil-breadcrumbs li:last-child {
	margin-right: 0;
	cursor: not-allowed;
}
.mil-breadcrumbs li:last-child a {
	opacity: 0.4;
	pointer-events: none;
}
.mil-breadcrumbs li:last-child:after {
	display: none;
}
.mil-breadcrumbs.mil-light:before {
	background-color: rgba(160, 160, 160, 0.1);
}
.mil-breadcrumbs.mil-light li:after {
	color: var(--mischka);
}
.mil-breadcrumbs.mil-light li a:hover {
	color: var(--accent) !important;
}
.mil-breadcrumbs.mil-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/* -------------------------------------------

backgrounds

------------------------------------------- */
.mil-dark-bg {
	position: relative;
}
.mil-dark-bg:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	pointer-events: none;
	z-index: 2;
	-webkit-backdrop-filter: invert(100%);
	backdrop-filter: invert(100%);
}
.mil-dark-bg .mi-invert-fix {
	height: 100%;
	position: relative;
	pointer-events: none;
	z-index: 3;
}
.mil-dark-bg .mi-invert-fix .container {
	pointer-events: all;
}

.mil-soft-bg {
	background-color: var(--background-light);
}

/* -------------------------------------------

spaces

------------------------------------------- */
.mil-mr-30 {
	margin-right: 30px;
}

.mil-mb-5 {
	margin-bottom: 5px;
}

.mil-mb-10 {
	margin-bottom: 10px;
}

.mil-mb-15 {
	margin-bottom: 15px;
}

.mil-mb-20 {
	margin-bottom: 15px;
}

.mil-mb-30 {
	margin-bottom: 30px;
}

.mil-mb-60 {
	margin-bottom: 60px;
}

.mil-mb-90 {
	margin-bottom: 90px;
}

.mil-mb-120 {
	margin-bottom: 120px;
}
@media screen and (max-width: 992px) {
	.mil-mb-120 {
		margin-bottom: 90px;
	}
}

.mil-mt-suptitle-offset {
	margin-top: 70px;
}
@media screen and (max-width: 992px) {
	.mil-mt-suptitle-offset {
		margin-top: 30px;
	}
}

.mil-p-120-120 {
	padding-top: 120px;
	padding-bottom: 120px;
}
@media screen and (max-width: 992px) {
	.mil-p-120-120 {
		padding-top: 90px;
		padding-bottom: 90px;
	}
}

.mil-p-120-90 {
	padding-top: 120px;
	padding-bottom: 90px;
}
@media screen and (max-width: 992px) {
	.mil-p-120-90 {
		padding-top: 90px;
		padding-bottom: 60px;
	}
}

.mil-p-0-120 {
	padding-bottom: 120px;
}
@media screen and (max-width: 992px) {
	.mil-p-0-120 {
		padding-bottom: 90px;
	}
}

.mil-p-120-0 {
	padding-top: 120px;
}
@media screen and (max-width: 992px) {
	.mil-p-120-0 {
		padding-top: 90px;
	}
}

.mil-p-120-60 {
	padding-top: 80px;
	padding-bottom: 40px;
}
@media screen and (max-width: 992px) {
	.mil-p-120-60 {
		padding-top: 60px;
		padding-bottom: 20px;
	}
}

.mil-p-90-90 {
	padding-top: 90px;
	padding-bottom: 90px;
}
@media screen and (max-width: 992px) {
	.mil-p-90-90 {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

.mil-p-90-120 {
	padding-top: 90px;
	padding-bottom: 120px;
}
@media screen and (max-width: 992px) {
	.mil-p-90-120 {
		padding-top: 60px;
		padding-bottom: 90px;
	}
}

.mil-p-0-90 {
	padding-bottom: 90px;
}
@media screen and (max-width: 992px) {
	.mil-p-0-90 {
		padding-bottom: 60px;
	}
}

.mil-p-0-30 {
	padding-bottom: 30px;
}
@media screen and (max-width: 992px) {
	.mil-p-0-30 {
		padding-bottom: 0;
	}
}

.mil-p-120-30 {
	padding-top: 120px;
	padding-bottom: 30px;
}
@media screen and (max-width: 992px) {
	.mil-p-120-30 {
		padding-top: 90px;
		padding-bottom: 0;
	}
}

.mil-adaptive-right {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
@media screen and (max-width: 992px) {
	.mil-adaptive-right {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}

.mil-btn-space {
	margin-right: 30px;
}
@media screen and (max-width: 500px) {
	.mil-btn-space {
		margin-right: 50px;
		margin-bottom: 30px;
	}
}

/* -------------------------------------------

preloader

------------------------------------------- */
.mil-preloader {
	position: fixed;
	z-index: 9;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--background-dark);
}
.mil-preloader .mil-preloader-animation {
	opacity: 0;
	position: relative;
	height: 100vh;
	color: var(--mischka);
}
.mil-preloader .mil-preloader-animation .mil-pos-abs {
	position: absolute;
	height: 100vh;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.mil-preloader .mil-preloader-animation .mil-pos-abs p {
	opacity: 0;
	margin-right: 15px;
}
@media screen and (max-width: 992px) {
	.mil-preloader .mil-preloader-animation .mil-pos-abs {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.mil-preloader .mil-preloader-animation .mil-pos-abs p {
		margin-right: 0;
		margin-bottom: 10px;
	}
}
.mil-preloader .mil-preloader-animation .mil-pos-abs .mil-reveal-frame {
	position: relative;
	padding: 0 30px;
}
.mil-preloader
	.mil-preloader-animation
	.mil-pos-abs
	.mil-reveal-frame
	.mil-reveal-box {
	z-index: 4;
	position: absolute;
	opacity: 0;
	height: 100%;
	background-color: var(--secondary-dark);
}
.mil-preloader.mil-hidden {
	pointer-events: none;
}

/* -------------------------------------------

hidden elements

------------------------------------------- */
.mil-hidden-elements .mil-dodecahedron,
.mil-hidden-elements .mil-lines,
.mil-hidden-elements .mil-arrow {
	display: none;
}

/* -------------------------------------------

scrollbar

------------------------------------------- */
::-webkit-scrollbar {
	display: none;
}

.mil-progress-track {
	position: fixed;
	z-index: 10;
	top: 0;
	right: 0;
	width: 4px;
	height: 100%;
	background-color: var(--background-dark);
}
.mil-progress-track .mil-progress {
	width: 4px;
	height: 0;
	background-color: var(--accent);
}
@media screen and (max-width: 992px) {
	.mil-progress-track {
		display: none;
	}
}

/* -------------------------------------------

frame

------------------------------------------- */
.mil-logo {
	font-size: 42px;
	font-weight: 500;
	line-height: 100%;
}

/* Logo container with image and text */
.mil-logo-container {
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
}

.logo-image {
	width: 42px;
	height: auto;
	z-index: 3;
	position: relative;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.logo-text {
	font-size: inherit;
	font-weight: inherit;
	margin-left: -3px;
	transition: transform 0.5s ease, opacity 0.5s ease;
	z-index: 1;
	position: relative;
	display: inline-block;
}

/* Scroll animation - text slides left behind the logo smoothly */
body.scrolling .logo-text {
	transform: translateX(-45px);
	opacity: 0;
	transition: transform 0.4s ease, opacity 0.3s ease;
}

body.scrolling .logo-image {
	transform: scale(1.02);
}

@media screen and (max-width: 992px) {
	.mil-logo {
		font-size: 36px;
	}
	
	.logo-image {
		width: 36px;
	}
	
	body.scrolling .logo-text {
		transform: translateX(-38px);
	}
}

@media screen and (max-width: 768px) {
	.mil-logo {
		font-size: 28px;
	}
	
	.logo-image {
		width: 28px;
	}
	
	.logo-text {
		margin-left: -2px;
	}
	
	body.scrolling .logo-text {
		transform: translateX(-30px);
	}
}

@media screen and (max-width: 480px) {
	.mil-logo {
		font-size: 24px;
	}
	
	.logo-image {
		width: 24px;
	}
	
	body.scrolling .logo-text {
		transform: translateX(-26px);
	}
}
@media screen and (max-width: 992px) {
	.mil-logo {
		font-size: 36px;
	}
}

.mil-frame {
	padding: 50px 60px 60px 60px;
	position: fixed;
	z-index: 2;
	pointer-events: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 1200px) {
	.mil-frame {
		padding: 30px;
	}
}
@media screen and (max-width: 1200px) {
	.mil-frame {
		padding: 0;
		z-index: 999;
		height: 90px;
	}
}
@media screen and (max-width: 1200px) {
	.mil-frame .mil-frame-top {
		height: 90px;
		background-color: rgba(0, 0, 0, 0.95);
		border-bottom: solid 1px rgba(255, 255, 255, 0.1);
		padding: 0 30px;
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
	}
	.mil-frame .mil-frame-top .mil-logo {
		color: var(--mischka);
	}
	.mil-frame .mil-frame-top .mil-menu-btn span,
	.mil-frame .mil-frame-top .mil-menu-btn span:after,
	.mil-frame .mil-frame-top .mil-menu-btn span:before {
		background: var(--mischka);
	}
}
.mil-frame .mil-frame-bottom {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
@media screen and (max-width: 1200px) {
	.mil-frame .mil-frame-bottom {
		display: none;
	}
}
.mil-frame .mil-frame-bottom .mil-current-page {
	pointer-events: none;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 12px;
	width: 300px;
	color: var(--text-dark);
	-webkit-transform: rotate(-90deg) translateX(138px) translateY(-138px);
	transform: rotate(-90deg) translateX(138px) translateY(-138px);
}
.mil-frame .mil-frame-bottom .mil-back-to-top {
	width: 300px;
	-webkit-transform: rotate(-90deg) translateX(130px) translateY(130px);
	transform: rotate(-90deg) translateX(130px) translateY(130px);
	pointer-events: all;
}

.mil-frame-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.mil-frame-top .mil-logo {
	pointer-events: all;
	color: var(--text-dark);
}

/* -------------------------------------------

menu button

------------------------------------------- */
.mil-menu-btn {
	pointer-events: all;
	height: 28px;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
@media screen and (max-width: 992px) {
	.mil-menu-btn {
		-webkit-transform: scale(0.85);
		transform: scale(0.85);
	}
}
.mil-menu-btn span,
.mil-menu-btn span:after,
.mil-menu-btn span:before {
	content: "";
	display: block;
	width: 28px;
	height: 2.5px;
	background: var(--text-dark);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: inherit;
	transition: inherit;
}
.mil-menu-btn span {
	position: relative;
}
.mil-menu-btn span:after,
.mil-menu-btn span:before {
	position: absolute;
}
.mil-menu-btn span:before {
	top: -9px;
}
.mil-menu-btn span:after {
	width: 18px;
	top: 9px;
}
.mil-menu-btn.mil-active span {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.mil-menu-btn.mil-active span:before {
	-webkit-transform: translate(0px, 9px) rotate(-90deg);
	transform: translate(0px, 9px) rotate(-90deg);
}
.mil-menu-btn.mil-active span:after {
	opacity: 0;
	width: 24px;
	-webkit-transform: translate(0px, -9px) rotate(-90deg);
	transform: translate(0px, -9px) rotate(-90deg);
}

/* -------------------------------------------

menu

------------------------------------------- */
.mil-menu-frame {
	position: fixed;
	z-index: 9;
	width: 100%;
	height: 100vh;
	background-color: var(--background-dark);
	opacity: 0;
	pointer-events: none;
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-menu-frame .container {
	pointer-events: none;
}
.mil-menu-frame .mil-frame-top {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 50px 60px;
}
@media screen and (max-width: 1200px) {
	.mil-menu-frame .mil-frame-top {
		display: none;
	}
}
.mil-menu-frame .mil-frame-top .mil-logo {
	color: var(--mischka);
}
.mil-menu-frame .mil-frame-top .mil-menu-btn span,
.mil-menu-frame .mil-frame-top .mil-menu-btn span:after,
.mil-menu-frame .mil-frame-top .mil-menu-btn span:before {
	background-color: var(--mischka);
}
.mil-menu-frame .mil-main-menu {
	-webkit-transform: translateX(-30px);
	transform: translateX(-30px);
	opacity: 0;
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
@media screen and (max-width: 1200px) {
	.mil-menu-frame .mil-main-menu {
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
}
.mil-menu-frame .mil-menu-right-frame {
	padding-left: 60px;
	position: relative;
	height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	border-left: solid 1px rgba(152, 149, 158, 0.2);
	opacity: 0;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-menu-frame .mil-menu-right-frame .mil-menu-right {
	padding-bottom: 60px;
}
.mil-menu-frame .mil-menu-right-frame .mil-animation-in {
	position: absolute;
	top: -320px;
	right: 0;
	opacity: 0;
	-webkit-transform: translateY(-60px);
	transform: translateY(-60px);
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
@media screen and (max-width: 1200px) {
	.mil-menu-frame .mil-menu-right-frame {
		display: none;
	}
}
@media screen and (max-height: 800px) {
	.mil-menu-frame .mil-menu-right-frame {
		display: none;
	}
}
.mil-menu-frame.mil-active {
	opacity: 1;
	pointer-events: all;
}
.mil-menu-frame.mil-active .container {
	pointer-events: all;
}
.mil-menu-frame.mil-active .mil-main-menu {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}
.mil-menu-frame.mil-active .mil-menu-right-frame {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 0.6s;
	transition-delay: 0.6s;
}
.mil-menu-frame.mil-active .mil-menu-right-frame .mil-animation-in {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 0.8s;
	transition-delay: 0.8s;
}

.mil-menu-list li {
	list-style-type: none;
	margin-bottom: 15px;
}
.mil-menu-list li:last-child {
	margin-bottom: 0;
}
.mil-menu-list li a {
	display: block;
	-webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-menu-list li a:hover {
	-webkit-transform: translateX(5px);
	transform: translateX(5px);
	color: var(--accent);
}
.mil-menu-list.mil-hori-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.mil-menu-list.mil-hori-list li {
	margin-bottom: 0;
	margin-right: 30px;
}
.mil-menu-list.mil-dark li a {
	color: var(--text-dark);
}

.mil-main-menu {
	height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.mil-main-menu ul {
	padding: 0;
	margin: 0;
}
.mil-main-menu ul li {
	list-style-type: none;
	margin-bottom: 40px;
}
.mil-main-menu ul li:last-child {
	margin-bottom: 0;
}
.mil-main-menu ul li a {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	font-size: 34px;
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
@media screen and (max-width: 992px) {
	.mil-main-menu ul li a {
		font-size: 26px;
	}
}
.mil-main-menu ul li a:before {
	content: "";
	position: absolute;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(160, 160, 160, 0.3);
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-main-menu ul li a:hover {
	color: var(--mischka);
}
.mil-main-menu ul li a.mil-active {
	padding-left: 25px;
}
.mil-main-menu ul li a.mil-active:before {
	-webkit-transform: scale(1);
	transform: scale(1);
	background-color: var(--accent);
}
.mil-main-menu ul li.mil-active > a {
	color: var(--accent);
}
.mil-main-menu ul li.mil-active > a:hover {
	color: var(--accent) !important;
	-webkit-filter: brightness(110%);
	filter: brightness(110%);
}
.mil-main-menu ul li.mil-has-children > a:hover {
	color: var(--mischka);
	padding-left: 25px;
}
.mil-main-menu ul li.mil-has-children > a:hover:before {
	-webkit-transform: scale(1);
	transform: scale(1);
}
.mil-main-menu ul li.mil-has-children ul {
	padding-left: 25px;
	overflow: hidden;
	max-height: 0;
	-webkit-transition: 0.6s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.6s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-main-menu ul li.mil-has-children ul li {
	margin-bottom: 5px;
}
.mil-main-menu ul li.mil-has-children ul li:first-child {
	margin-top: 40px;
}
.mil-main-menu ul li.mil-has-children ul li a {
	display: block;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 2px;
	font-weight: 500;
	text-transform: uppercase;
}
.mil-main-menu ul li.mil-has-children ul li a:before {
	display: none;
}
.mil-main-menu ul li.mil-has-children ul li a:hover {
	color: rgba(255, 255, 255, 0.8);
	-webkit-transform: translateX(5px);
	transform: translateX(5px);
}
.mil-main-menu ul li.mil-has-children ul.mil-active {
	max-height: 200px;
}
@media screen and (max-width: 1200px) {
	.mil-main-menu {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.mil-main-menu ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.mil-main-menu ul li {
		margin-bottom: 30px;
	}
	.mil-main-menu ul li a {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.mil-main-menu ul li a:before {
		display: none;
	}
	.mil-main-menu ul li a.mil-active {
		padding-left: 0 !important;
	}
	.mil-main-menu ul li.mil-has-children ul {
		padding-left: 0;
	}
	.mil-main-menu ul li.mil-has-children ul li:first-child {
		margin-top: 30px;
	}
}

/* -------------------------------------------

banner

------------------------------------------- */
.mil-banner {
	height: 100vh;
}
.mil-banner .container {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.mil-banner .mil-banner-content {
	width: 100%;
	padding-bottom: 120px;
	position: relative;
}
@media screen and (max-width: 992px) {
	.mil-banner .mil-banner-content {
		padding-bottom: 90px;
	}
}
.mil-banner .mil-lines-place {
	position: absolute;
	left: 0;
	bottom: calc(100% + 120px);
}

.mil-inner-banner .mil-banner-content {
	padding: 150px 0 0 0;
}
@media screen and (max-width: 1200px) {
	.mil-inner-banner .mil-banner-content {
		padding: 180px 0 0 0;
	}
}

.mil-banner-personal {
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.1);
}
.mil-banner-personal .mil-banner-content {
	position: relative;
	padding-top: 90px;
}
@media screen and (max-width: 992px) {
	.mil-banner-personal .mil-banner-content {
		padding-top: 180px;
	}
}
.mil-banner-personal .mil-banner-content .mil-personal-text {
	margin-bottom: 300px;
}
@media screen and (max-width: 992px) {
	.mil-banner-personal .mil-banner-content .mil-personal-text {
		margin-bottom: 80px;
		text-align: center;
	}
}
.mil-banner-personal .mil-banner-content .mil-banner-panel {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 60px 0 90px;
	background-color: var(--background-light);
	height: 180px;
	position: absolute;
	top: calc(100vh - 180px);
	left: 0;
	width: 100%;
}
@media screen and (max-width: 992px) {
	.mil-banner-personal .mil-banner-content .mil-banner-panel {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		height: auto;
		padding: 60px 30px;
	}
	.mil-banner-personal .mil-banner-content .mil-banner-panel h5 {
		margin-bottom: 60px;
		text-align: center;
		width: 80%;
	}
}
.mil-banner-personal .mil-banner-content .mil-banner-panel .mil-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.mil-banner-personal
	.mil-banner-content
	.mil-banner-panel
	.mil-right
	.mil-social-frame {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 30px;
	padding: 0 50px;
	background-color: rgba(0, 0, 0, 0.1);
	height: 70px;
	border-radius: 70px;
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-banner-personal
	.mil-banner-content
	.mil-banner-panel
	.mil-right
	.mil-social-frame:hover {
	-webkit-transform: scale(1.015);
	transform: scale(1.015);
}
@media screen and (max-width: 992px) {
	.mil-banner-personal .mil-banner-content .mil-banner-panel .mil-right {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.mil-banner-personal
		.mil-banner-content
		.mil-banner-panel
		.mil-right
		.mil-social-frame {
		margin-right: 0;
		margin-bottom: 30px;
		height: 60px;
	}
}
.mil-banner-personal .mil-banner-content .mil-banner-panel .mil-button {
	margin: 0 !important;
}
@media screen and (max-width: 992px) {
	.mil-banner-personal .mil-banner-content .mil-banner-panel {
		bottom: 0;
		top: auto;
	}
}
@media screen and (max-width: 768px) {
	.mil-banner-personal .mil-banner-content .mil-banner-panel {
		position: static;
		margin-bottom: 90px;
	}
}
@media screen and (max-width: 992px) {
	.mil-banner-personal {
		height: auto;
	}
}

.mil-portrait-frame {
	position: relative;
}
.mil-portrait-frame img {
	position: relative;
	bottom: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}
.mil-portrait-frame .mil-nimbus {
	background: radial-gradient(
		50% 50% at 50% 50%,
		var(--accent) 0%,
		rgba(160, 160, 160, 0) 100%
	);
	width: 100%;
	padding-bottom: 100%;
	position: absolute;
	opacity: 0.6;
}
@media screen and (max-width: 768px) {
	.mil-portrait-frame {
		height: 400px;
	}
	.mil-portrait-frame img {
		-o-object-fit: cover;
		object-fit: cover;
		-o-object-position: top;
		object-position: top;
	}
}

/* -------------------------------------------

circle text

------------------------------------------- */
.mil-circle-text {
	position: absolute;
	right: 0;
	bottom: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 140px;
	height: 140px;
	perspective: 200px;
}

/* 3D Cube Scroll Button */
.mil-cube-container {
	position: relative;
	width: 60px;
	height: 60px;
	transform-style: preserve-3d;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.mil-cube-container:hover {
	transform: rotateY(45deg) rotateX(15deg) scale(1.1);
}

.mil-cube {
	position: relative;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	animation: cubeFloat 6s ease-in-out infinite;
}

.mil-cube-face {
	position: absolute;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--accent), var(--secondary-dark));
	border: 2px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 9px;
	font-weight: 600;
	color: white;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: all 0.3s ease;
}

.mil-cube-face.front {
	transform: translateZ(30px);
}

.mil-cube-face.back {
	transform: rotateY(180deg) translateZ(30px);
}

.mil-cube-face.right {
	transform: rotateY(90deg) translateZ(30px);
}

.mil-cube-face.left {
	transform: rotateY(-90deg) translateZ(30px);
}

.mil-cube-face.top {
	transform: rotateX(90deg) translateZ(30px);
}

.mil-cube-face.bottom {
	transform: rotateX(-90deg) translateZ(30px);
}

.mil-cube-container:hover .mil-cube-face {
	background: linear-gradient(135deg, var(--mischka), var(--accent));
	color: var(--text-dark);
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Hide the old circular elements */
.mil-circle-text .mil-ct-svg {
	display: none;
}

.mil-circle-text .mil-button {
	display: none;
}

/* Cube floating animation */
@keyframes cubeFloat {
	0%,
	100% {
		transform: translateY(0px) rotateY(0deg);
	}
	50% {
		transform: translateY(-8px) rotateY(90deg);
	}
}

/* Responsive design */
@media screen and (max-width: 992px) {
	.mil-circle-text {
		display: none;
	}
}

/* -------------------------------------------

lines

------------------------------------------- */
@-webkit-keyframes move {
	from {
		-webkit-transform: translateY(-75px);
		transform: translateY(-75px);
	}
	50% {
		-webkit-transform: translateY(75px);
		transform: translateY(75px);
	}
	to {
		-webkit-transform: translateY(-75px);
		transform: translateY(-75px);
	}
}
@keyframes move {
	from {
		-webkit-transform: translateY(-75px);
		transform: translateY(-75px);
	}
	50% {
		-webkit-transform: translateY(75px);
		transform: translateY(75px);
	}
	to {
		-webkit-transform: translateY(-75px);
		transform: translateY(-75px);
	}
}
.mil-lines-place .mil-lines {
	opacity: 0.05;
	pointer-events: none;
}
@media screen and (max-width: 992px) {
	.mil-lines-place .mil-lines {
		display: none;
	}
}
.mil-lines-place .mil-lines path,
.mil-lines-place .mil-lines rect,
.mil-lines-place .mil-lines line {
	stroke: var(--text-dark);
}
.mil-lines-place .mil-lines .mil-move {
	-webkit-animation: move 10s linear infinite;
	animation: move 10s linear infinite;
}
.mil-lines-place.mil-light .mil-lines {
	opacity: 0.2;
}
.mil-lines-place.mil-light .mil-lines path,
.mil-lines-place.mil-light .mil-lines rect,
.mil-lines-place.mil-light .mil-lines line {
	stroke: var(--mischka);
}

/* -------------------------------------------

dodecahedron

------------------------------------------- */
.mil-animation-frame {
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	-webkit-animation: jump 10s linear infinite;
	animation: jump 10s linear infinite;
	pointer-events: none;
}

.mil-animation {
	position: absolute;
	display: inline-block;
	width: 300px;
	height: 300px;
	opacity: 0.2;
	pointer-events: none;
}

.mil-position-1 {
	top: 100px;
	right: 100px;
}
.mil-position-1 .mil-pentagon div {
	border-top: 0.1px solid var(--mischka);
}

.mil-position-2 {
	top: -60px;
	left: 15%;
}
.mil-position-2 .mil-pentagon div {
	border-top: 1px solid var(--mischka);
}
.mil-position-2 .mil-dodecahedron {
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}
@media screen and (max-width: 1400px) {
	.mil-position-2 {
		display: none;
	}
}

.mil-position-3 {
	bottom: -100px;
	right: 35%;
}
.mil-position-3 .mil-pentagon div {
	border-top: 1px solid var(--mischka);
}
.mil-position-3 .mil-dodecahedron {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
@media screen and (max-width: 1400px) {
	.mil-position-3 {
		display: none;
	}
}

.mil-position-4 {
	top: -60px;
	right: 20%;
}
.mil-position-4 .mil-pentagon div {
	border-top: 0.1px solid var(--mischka);
}
.mil-position-4 .mil-dodecahedron {
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}
@media screen and (max-width: 1400px) {
	.mil-position-4 {
		display: none;
	}
}
.mil-position-4.mil-dark .mil-pentagon div {
	border-top: 0.1px solid var(--text-dark);
}

.mil-dodecahedron {
	position: relative;
	left: 100px;
	top: 40px;
	width: 100px;
	height: 223px;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-animation: rotate 100s infinite linear;
	animation: rotate 100s infinite linear;
}
@-webkit-keyframes rotate {
	from {
		-webkit-transform: rotateX(0deg) rotateY(360deg) rotateZ(360deg);
		transform: rotateX(0deg) rotateY(360deg) rotateZ(360deg);
	}
	to {
		-webkit-transform: rotateX(360deg) rotateY(0deg) rotateZ(-360deg);
		transform: rotateX(360deg) rotateY(0deg) rotateZ(-360deg);
	}
}
@keyframes rotate {
	from {
		-webkit-transform: rotateX(0deg) rotateY(360deg) rotateZ(360deg);
		transform: rotateX(0deg) rotateY(360deg) rotateZ(360deg);
	}
	to {
		-webkit-transform: rotateX(360deg) rotateY(0deg) rotateZ(-360deg);
		transform: rotateX(360deg) rotateY(0deg) rotateZ(-360deg);
	}
}

.mil-pentagon {
	position: absolute;
	width: 100px;
}
.mil-pentagon:nth-child(1) {
	-webkit-transform: rotateY(0.2turn) translateZ(69px) rotateX(26.5deg);
	transform: rotateY(0.2turn) translateZ(69px) rotateX(26.5deg);
}
.mil-pentagon:nth-child(6) {
	bottom: 0;
	-webkit-transform: rotateY(0.2turn) translateZ(-69px) rotateX(206.5deg);
	transform: rotateY(0.2turn) translateZ(-69px) rotateX(206.5deg);
}
.mil-pentagon:nth-child(2) {
	-webkit-transform: rotateY(0.4turn) translateZ(69px) rotateX(26.5deg);
	transform: rotateY(0.4turn) translateZ(69px) rotateX(26.5deg);
}
.mil-pentagon:nth-child(7) {
	bottom: 0;
	-webkit-transform: rotateY(0.4turn) translateZ(-69px) rotateX(206.5deg);
	transform: rotateY(0.4turn) translateZ(-69px) rotateX(206.5deg);
}
.mil-pentagon:nth-child(3) {
	-webkit-transform: rotateY(0.6turn) translateZ(69px) rotateX(26.5deg);
	transform: rotateY(0.6turn) translateZ(69px) rotateX(26.5deg);
}
.mil-pentagon:nth-child(8) {
	bottom: 0;
	-webkit-transform: rotateY(0.6turn) translateZ(-69px) rotateX(206.5deg);
	transform: rotateY(0.6turn) translateZ(-69px) rotateX(206.5deg);
}
.mil-pentagon:nth-child(4) {
	-webkit-transform: rotateY(0.8turn) translateZ(69px) rotateX(26.5deg);
	transform: rotateY(0.8turn) translateZ(69px) rotateX(26.5deg);
}
.mil-pentagon:nth-child(9) {
	bottom: 0;
	-webkit-transform: rotateY(0.8turn) translateZ(-69px) rotateX(206.5deg);
	transform: rotateY(0.8turn) translateZ(-69px) rotateX(206.5deg);
}
.mil-pentagon:nth-child(5) {
	-webkit-transform: rotateY(1turn) translateZ(69px) rotateX(26.5deg);
	transform: rotateY(1turn) translateZ(69px) rotateX(26.5deg);
}
.mil-pentagon:nth-child(10) {
	bottom: 0;
	-webkit-transform: rotateY(1turn) translateZ(-69px) rotateX(206.5deg);
	transform: rotateY(1turn) translateZ(-69px) rotateX(206.5deg);
}
.mil-pentagon:nth-child(11) {
	-webkit-transform: translateZ(69px) rotateX(-90deg);
	transform: translateZ(69px) rotateX(-90deg);
}
.mil-pentagon:nth-child(12) {
	bottom: 0;
	-webkit-transform: translateZ(-69px) rotateX(90deg);
	transform: translateZ(-69px) rotateX(90deg);
}
.mil-pentagon div {
	position: absolute;
	width: 100px;
	height: 69px;
	-webkit-transform-origin: bottom;
	transform-origin: bottom;
}
.mil-pentagon div:nth-child(1) {
	-webkit-transform: rotate(0.2turn);
	transform: rotate(0.2turn);
}
.mil-pentagon div:nth-child(2) {
	-webkit-transform: rotate(0.4turn);
	transform: rotate(0.4turn);
}
.mil-pentagon div:nth-child(3) {
	-webkit-transform: rotate(0.6turn);
	transform: rotate(0.6turn);
}
.mil-pentagon div:nth-child(4) {
	-webkit-transform: rotate(0.8turn);
	transform: rotate(0.8turn);
}
.mil-pentagon div:nth-child(5) {
	-webkit-transform: rotate(1turn);
	transform: rotate(1turn);
}

@-webkit-keyframes jump {
	0% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	50% {
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
	100% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
}

@keyframes jump {
	0% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	50% {
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
	100% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
}
/* -------------------------------------------

about

------------------------------------------- */
.mil-about-quote {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.mil-about-quote .mil-avatar {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	position: relative;
}
.mil-about-quote .mil-avatar:after {
	content: ' " ';
	color: rgb(0, 0, 0);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #c0c0c0;
	position: absolute;
	bottom: 0;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 12px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 36px;
}
.mil-about-quote .mil-avatar img {
	border-radius: 50%;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top;
	object-position: top;
}
.mil-about-quote .mil-quote {
	padding-left: 30px;
	width: calc(100% - 90px);
}
@media screen and (max-width: 992px) {
	.mil-about-quote .mil-avatar {
		width: 70px;
		height: 70px;
	}
	.mil-about-quote .mil-avatar:after {
		padding-top: 7px;
		width: 25px;
		height: 25px;
		font-size: 24px;
	}
	.mil-about-quote .mil-quote {
		font-size: 16px;
		padding-left: 30px;
		width: calc(100% - 70px);
	}
}

.mil-about-photo {
	position: relative;
}
.mil-about-photo .mil-lines-place {
	position: absolute;
	top: -120px;
	left: -27%;
}

/* -------------------------------------------

partners

------------------------------------------- */
.mil-infinite-show .swiper-wrapper {
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}

.mil-partner-frame {
	display: block;
}
.mil-partner-frame img {
	width: 100%;
}

/* -------------------------------------------

services

------------------------------------------- */
.mil-complex-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.mil-complex-text .mil-button {
	margin-left: 30px;
}
@media screen and (max-width: 768px) {
	.mil-complex-text {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.mil-complex-text .mil-button {
		margin-left: 0;
		margin-top: 60px;
	}
}

.mil-text-image {
	height: 80px;
	width: 250px;
	display: inline-block;
	overflow: hidden;
	border-radius: 70px;
	margin-right: 30px;
}
.mil-text-image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top;
	object-position: top;
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-text-image:hover img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}
@media screen and (max-width: 768px) {
	.mil-text-image {
		display: none;
	}
}

.mil-service-card-sm {
	position: relative;
	display: block;
	padding: 60px 30px;
}
.mil-service-card-sm p {
	opacity: 0;
	-webkit-transform: translateY(10px);
	transform: translateY(10px);
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-service-card-sm .mil-button {
	-webkit-transform: scale(0.3);
	transform: scale(0.3);
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	opacity: 0.4;
}
.mil-service-card-sm:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 4px;
	width: 0;
	background-color: #c0c0c0;
	-webkit-transition: 0.6s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.6s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-service-card-sm:hover p {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.mil-service-card-sm:hover .mil-button {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
	opacity: 1;
}
.mil-service-card-sm:hover:before {
	width: 100%;
}
@media screen and (max-width: 992px) {
	.mil-service-card-sm p {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	.mil-service-card-sm .mil-button {
		-webkit-transform: scale(1);
		transform: scale(1);
		-webkit-filter: grayscale(0);
		filter: grayscale(0);
		opacity: 1;
	}
}

.mil-services-grid {
	border-top: solid 1px rgba(255, 255, 255, 0.1);
}
.mil-services-grid .mil-services-grid-item {
	border-right: solid 1px rgba(255, 255, 255, 0.1);
}
.mil-services-grid .mil-services-grid-item:first-child {
	border-left: solid 1px rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 992px) {
	.mil-services-grid {
		padding-bottom: 90px;
	}
	.mil-services-grid .mil-services-grid-item {
		border-bottom: solid 1px rgba(255, 255, 255, 0.1);
	}
	.mil-services-grid .mil-services-grid-item:nth-child(3) {
		border-left: solid 1px rgba(255, 255, 255, 0.1);
	}
}
@media screen and (max-width: 768px) {
	.mil-services-grid {
		padding-bottom: 90px;
	}
	.mil-services-grid .mil-services-grid-item {
		border-left: solid 1px rgba(255, 255, 255, 0.1);
		border-bottom: solid 1px rgba(255, 255, 255, 0.1);
	}
}

.mil-service-card-lg {
	display: block;
}
.mil-service-card-lg .mil-descr {
	padding-right: 30px;
}
.mil-service-card-lg.mil-offset {
	margin-top: 60px;
	margin-bottom: 60px;
}
@media screen and (max-width: 992px) {
	.mil-service-card-lg.mil-offset {
		margin-top: 0;
	}
}

/* Integration Section Styles - Floating Scattered Layout */
.section.integration {
	padding: 120px 0;
	background-color: #0a0a0a;
	position: relative;
	overflow: hidden;
	min-height: 100vh;
}

.integration-wrap {
	position: relative;
}

.integration-top {
	text-align: center;
	margin-bottom: 80px;
	position: relative;
	z-index: 10;
}

.top-short-title-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	opacity: 1;
}

.vratical-line-wrap {
	display: flex;
	align-items: center;
	margin: 0 20px;
}

.vratical-line {
	width: 50px;
	height: 1px;
	background: linear-gradient(90deg, transparent, #c0c0c0, transparent);
}

.vratical-line._01 {
	background: linear-gradient(90deg, #c0c0c0, transparent);
}

.point {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #c0c0c0;
	margin: 0 10px;
	animation: pulse 2s infinite;
}

.short-title-wrap .text-01 {
	font-size: 14px;
	font-weight: 600;
	color: #c0c0c0;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.heading-wrap.integration-heading {
	max-width: 800px;
	margin: 0 auto;
}

.h1-heading-title {
	font-size: 3.5rem;
	font-weight: 300;
	color: #ffffff;
	line-height: 1.2;
	margin: 0;
	opacity: 1;
}

.integration-01-main {
	position: relative;
	height: 600px;
	overflow: hidden;
	opacity: 1;
	width: 100%;
}

.integration-01-wrap {
	position: relative;
	width: 100%;
	height: 100%;
}

.integration-01-list {
	position: absolute;
	animation: floatUpDown 6s ease-in-out infinite;
}

/* Individual logo positioning - completely scattered */
.integration-01-list.single-logo.logo-1 {
	top: 15%;
	left: 8%;
	animation: floatUpDown 7.2s ease-in-out infinite;
}

.integration-01-list.single-logo.logo-2 {
	top: 72%;
	left: 85%;
	animation: floatUpDown 5.8s ease-in-out infinite reverse;
}

.integration-01-list.single-logo.logo-3 {
	top: 35%;
	left: 12%;
	animation: floatUpDown 9.1s ease-in-out infinite;
}

.integration-01-list.single-logo.logo-4 {
	top: 68%;
	left: 45%;
	animation: floatUpDown 6.3s ease-in-out infinite reverse;
}

.integration-01-list.single-logo.logo-5 {
	top: 22%;
	left: 75%;
	animation: floatUpDown 8.7s ease-in-out infinite;
}

.integration-01-list.single-logo.logo-6 {
	top: 55%;
	left: 25%;
	animation: floatUpDown 7.9s ease-in-out infinite reverse;
}

.integration-01-list.single-logo.logo-7 {
	top: 8%;
	left: 52%;
	animation: floatUpDown 10.4s ease-in-out infinite;
}

.integration-01-list.single-logo.logo-8 {
	top: 85%;
	left: 18%;
	animation: floatUpDown 5.5s ease-in-out infinite reverse;
}

.integration-01-list.single-logo.logo-9 {
	top: 42%;
	left: 88%;
	animation: floatUpDown 11.2s ease-in-out infinite;
}

.integration-01-list.single-logo.logo-10 {
	top: 78%;
	left: 62%;
	animation: floatUpDown 6.8s ease-in-out infinite reverse;
}

.integration-01-list.single-logo.logo-11 {
	top: 28%;
	left: 35%;
	animation: floatUpDown 9.6s ease-in-out infinite;
}

.integration-01-list.single-logo.logo-12 {
	top: 65%;
	left: 8%;
	animation: floatUpDown 7.1s ease-in-out infinite reverse;
}

.integration-01-list.single-logo.logo-13 {
	top: 12%;
	left: 28%;
	animation: floatUpDown 8.4s ease-in-out infinite;
}

.integration-01-list.single-logo.logo-14 {
	top: 48%;
	left: 65%;
	animation: floatUpDown 6.7s ease-in-out infinite reverse;
}

.integration-01-logo {
	width: 100px;
	height: 100px;
	object-fit: contain;
	transition: all 0.4s ease;
	filter: grayscale(0.3) opacity(0.8);
	background: rgba(255, 255, 255, 0.03);
	border-radius: 16px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	display: block;
	margin: 25px 0;
}

.integration-01-logo:hover {
	filter: grayscale(0) opacity(1);
	transform: scale(1.15) rotate(5deg);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(192, 192, 192, 0.2);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.integration-01-logo._1 {
	opacity: 0.9;
}
.integration-01-logo._2 {
	opacity: 0.8;
}
.integration-01-logo._3 {
	opacity: 0.85;
}
.integration-01-logo._4 {
	opacity: 0.9;
}
.integration-01-logo._5 {
	opacity: 0.8;
}
.integration-01-logo._6 {
	opacity: 0.85;
}
.integration-01-logo._7 {
	opacity: 0.9;
}

/* Enhanced Integration Animations with artistic movement */
@keyframes floatUpDown {
	0%,
	100% {
		transform: translateY(0px) translateX(0px) rotate(0deg);
	}
	25% {
		transform: translateY(-20px) translateX(8px) rotate(2deg);
	}
	50% {
		transform: translateY(-8px) translateX(-5px) rotate(-1deg);
	}
	75% {
		transform: translateY(-25px) translateX(12px) rotate(3deg);
	}
}

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

@keyframes fadeInScale {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.7;
		transform: scale(1.2);
	}
}

/* Additional scattered logos positioning */
.integration-01-list:nth-child(8) {
	top: 20%;
	right: 10%;
	animation: floatUpDown 8.5s ease-in-out infinite;
}

.integration-01-list:nth-child(9) {
	top: 50%;
	left: 35%;
	animation: floatUpDown 6s ease-in-out infinite reverse;
}

.integration-01-list:nth-child(10) {
	top: 75%;
	right: 30%;
	animation: floatUpDown 7s ease-in-out infinite;
}

.integration-01-list:nth-child(11) {
	top: 30%;
	left: 70%;
	animation: floatUpDown 9s ease-in-out infinite reverse;
}

.integration-01-list:nth-child(12) {
	top: 65%;
	left: 60%;
	animation: floatUpDown 5.5s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 992px) {
	.section.integration {
		padding: 80px 0;
		min-height: 80vh;
	}

	.integration-01-main {
		height: 500px;
	}

	.h1-heading-title {
		font-size: 2.5rem;
	}

	.integration-01-logo {
		width: 80px;
		height: 80px;
		padding: 15px;
		margin: 20px 0;
	}

	/* Individual logo positioning for tablet */
	.integration-01-list.single-logo.logo-1 {
		top: 18%;
		left: 5%;
	}

	.integration-01-list.single-logo.logo-2 {
		top: 75%;
		left: 82%;
	}

	.integration-01-list.single-logo.logo-3 {
		top: 38%;
		left: 8%;
	}

	.integration-01-list.single-logo.logo-4 {
		top: 65%;
		left: 48%;
	}

	.integration-01-list.single-logo.logo-5 {
		top: 12%;
		left: 72%;
	}

	.integration-01-list.single-logo.logo-6 {
		top: 52%;
		left: 22%;
	}

	.integration-01-list.single-logo.logo-7 {
		top: 5%;
		left: 45%;
	}

	.integration-01-list.single-logo.logo-8 {
		top: 82%;
		left: 15%;
	}

	.integration-01-list.single-logo.logo-9 {
		top: 25%;
		left: 85%;
	}

	.integration-01-list.single-logo.logo-10 {
		top: 88%;
		left: 65%;
	}

	.integration-01-list.single-logo.logo-11 {
		top: 32%;
		left: 35%;
	}

	.integration-01-list.single-logo.logo-12 {
		top: 58%;
		left: 78%;
	}

	.integration-01-list.single-logo.logo-13 {
		top: 15%;
		left: 25%;
	}

	.integration-01-list.single-logo.logo-14 {
		top: 72%;
		left: 88%;
	}

	@keyframes floatUpDown {
		0%,
		100% {
			transform: translateY(0px) translateX(0px);
		}
		50% {
			transform: translateY(-10px) translateX(3px);
		}
	}
}

@media (max-width: 768px) {
	.integration-01-main {
		height: 400px;
	}

	.integration-01-logo {
		width: 70px;
		height: 70px;
		padding: 12px;
		margin: 15px 0;
	}

	.h1-heading-title {
		font-size: 2rem;
		line-height: 1.3;
	}

	.vratical-line {
		width: 30px;
	}

	.short-title-wrap .text-01 {
		font-size: 12px;
	}

	/* Individual logo positioning for mobile */
	.integration-01-list.single-logo.logo-1 {
		top: 20%;
		left: 8%;
	}

	.integration-01-list.single-logo.logo-2 {
		top: 75%;
		left: 72%;
	}

	.integration-01-list.single-logo.logo-3 {
		top: 45%;
		left: 5%;
	}

	.integration-01-list.single-logo.logo-4 {
		top: 15%;
		left: 65%;
	}

	.integration-01-list.single-logo.logo-5 {
		top: 60%;
		left: 35%;
	}

	.integration-01-list.single-logo.logo-6 {
		top: 35%;
		left: 75%;
	}

	.integration-01-list.single-logo.logo-7 {
		top: 5%;
		left: 40%;
	}

	.integration-01-list.single-logo.logo-8 {
		top: 85%;
		left: 15%;
	}

	/* Hide extra logos on mobile for better performance */
	.integration-01-list.single-logo.logo-9,
	.integration-01-list.single-logo.logo-10,
	.integration-01-list.single-logo.logo-11,
	.integration-01-list.single-logo.logo-12,
	.integration-01-list.single-logo.logo-13,
	.integration-01-list.single-logo.logo-14 {
		display: none;
	}
}
@media screen and (max-width: 992px) {
	.mil-service-card-lg {
		margin-bottom: 60px;
	}
}
.mil-service-card-lg.mil-other-card {
	overflow: hidden;
	position: relative;
	border: solid 1px rgb(229, 229, 229);
	padding: 60px;
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-service-card-lg.mil-other-card .mil-descr {
	padding-right: 0;
}
.mil-service-card-lg.mil-other-card:hover {
	background-color: var(--accent);
}
.mil-service-card-lg.mil-other-card:hover .mil-link svg {
	background-color: var(--primary-dark);
}
.mil-service-card-lg.mil-other-card:hover .mil-link svg path {
	fill: var(--mischka);
}
@media screen and (max-width: 1200px) {
	.mil-service-card-lg.mil-other-card {
		padding: 30px;
	}
}

.mil-service-list li {
	border-bottom: solid 1px rgba(255, 255, 255, 0.1);
	list-style-type: none;
	padding: 15px 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
	font-size: 12px;
}
.mil-service-list li:first-child {
	border-top: solid 1px rgba(255, 255, 255, 0.1);
}
.mil-service-list.mil-light li {
	color: rgba(255, 255, 255, 0.6);
}
.mil-service-list.mil-dark li {
	border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
.mil-service-list.mil-dark li:first-child {
	border-top: solid 1px rgba(0, 0, 0, 0.1);
}

/* -------------------------------------------

team

------------------------------------------- */
.mil-team-card {
	position: relative;
	overflow: hidden;
	padding-bottom: 130%;
}
.mil-team-card:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 4px;
	width: 0;
	background-color: #c0c0c0;
	-webkit-transition: 0.6s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.6s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-team-card img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top;
	object-position: top;
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-team-card.mil-offset-card {
	-webkit-transform: translateY(60px);
	transform: translateY(60px);
}
@media screen and (max-width: 992px) {
	.mil-team-card.mil-offset-card {
		-webkit-transform: none;
		transform: none;
	}
}
.mil-team-card .mil-description {
	opacity: 0;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.8);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 60px 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	pointer-events: none;
	-webkit-transition: 0.6s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.6s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-team-card .mil-description .mil-secrc-text {
	opacity: 0;
	-webkit-transform: translateY(15px);
	transform: translateY(15px);
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}
.mil-team-card .mil-description .mil-secrc-text a {
	color: rgb(255, 255, 255);
	-webkit-transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-team-card .mil-description .mil-secrc-text a:hover {
	color: #c0c0c0;
}
.mil-team-card:hover img {
	-webkit-transform: scale(1);
	transform: scale(1);
}
.mil-team-card:hover:after {
	width: 100%;
}
.mil-team-card:hover .mil-description {
	opacity: 1;
	pointer-events: all;
}
.mil-team-card:hover .mil-description .mil-secrc-text {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.mil-team-list {
	position: relative;
}
.mil-team-list .mil-lines-place {
	position: absolute;
	top: -120px;
	left: -22.5%;
}

/* -------------------------------------------

social icons

------------------------------------------- */
.mil-social-icons {
	padding: 0;
	margin: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.mil-social-icons.mil-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.mil-social-icons li {
	list-style-type: none;
	margin-right: 15px;
}
.mil-social-icons li:last-child {
	margin-right: 0;
}
.mil-social-icons li a {
	color: rgb(255, 255, 255);
	font-size: 18px;
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-social-icons li a:hover {
	color: #c0c0c0;
}
.mil-social-icons.mil-dark li a {
	color: rgb(0, 0, 0);
}
.mil-social-icons.mil-dark li a:hover {
	color: #c0c0c0;
}

/* -------------------------------------------

revievs

------------------------------------------- */
.mil-revi-pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
@media screen and (max-width: 992px) {
	.mil-revi-pagination {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}
.mil-revi-pagination .swiper-pagination-bullet {
	padding: 0;
	width: 110px;
	height: 110px;
	padding: 10px;
	opacity: 1;
	border: none;
	background-color: transparent;
	margin: 0 !important;
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1) !important;
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1) !important;
}
@media screen and (max-width: 992px) {
	.mil-revi-pagination .swiper-pagination-bullet {
		width: 90px;
		height: 90px;
	}
}
.mil-revi-pagination .swiper-pagination-bullet:nth-child(2n) {
	margin-top: 30px !important;
}
@media screen and (max-width: 992px) {
	.mil-revi-pagination .swiper-pagination-bullet:nth-child(2n) {
		margin-top: 0 !important;
	}
}
.mil-revi-pagination .swiper-pagination-bullet:hover {
	-webkit-box-shadow: inset 0 0 0 4px rgb(255, 255, 255);
	box-shadow: inset 0 0 0 4px rgb(255, 255, 255);
}
.mil-revi-pagination .swiper-pagination-bullet .mil-custom-dot {
	background-color: red;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background-size: cover;
	background-position: top;
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1) !important;
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1) !important;
}
@media screen and (max-width: 992px) {
	.mil-revi-pagination .swiper-pagination-bullet .mil-custom-dot {
		width: 70px;
		height: 70px;
	}
}
.mil-revi-pagination .swiper-pagination-bullet .mil-custom-dot.mil-slide-1 {
	background-image: url(../img/faces/customers/1.jpg);
}
.mil-revi-pagination .swiper-pagination-bullet .mil-custom-dot.mil-slide-2 {
	background-image: url(../img/faces/customers/2.jpg);
}
.mil-revi-pagination .swiper-pagination-bullet .mil-custom-dot.mil-slide-3 {
	background-image: url(../img/faces/customers/3.jpg);
}
.mil-revi-pagination .swiper-pagination-bullet .mil-custom-dot.mil-slide-4 {
	background-image: url(../img/faces/customers/4.jpg);
}
.mil-revi-pagination .swiper-pagination-bullet .mil-custom-dot.mil-slide-5 {
	background-image: url(../img/faces/customers/5.jpg);
}
.mil-revi-pagination .swiper-pagination-bullet .mil-custom-dot.mil-slide-6 {
	background-image: url(../img/faces/customers/6.jpg);
}
.mil-revi-pagination .swiper-pagination-bullet .mil-custom-dot.mil-slide-7 {
	background-image: url(../img/faces/customers/7.jpg);
}
.mil-revi-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	-webkit-box-shadow: inset 0 0 0 4px var(--accent);
	box-shadow: inset 0 0 0 4px var(--accent);
}

.mil-quote-icon {
	display: block;
	margin: 0 auto;
	width: 40px;
	height: 40px;
	margin-bottom: 15px;
}
.mil-quote-icon path {
	fill: var(--accent);
}

.mil-slider-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.mil-slider-nav .mil-slider-arrow {
	width: 40px;
	height: 40px;
	padding: 10px;
	background-color: var(--primary-dark);
	border-radius: 50%;
	cursor: pointer;
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-slider-nav .mil-slider-arrow svg path {
	fill: var(--accent);
}
.mil-slider-nav .mil-slider-arrow.mil-prev {
	margin-right: 10px;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.mil-slider-nav .mil-slider-arrow.swiper-button-disabled {
	opacity: 0.1;
	cursor: not-allowed;
}
.mil-slider-nav .mil-slider-arrow:hover {
	-webkit-transform: scale(1.15);
	transform: scale(1.15);
}
.mil-slider-nav .mil-slider-arrow:hover.mil-prev {
	-webkit-transform: rotate(180deg) scale(1.15);
	transform: rotate(180deg) scale(1.15);
}
.mil-slider-nav.mil-reviews-nav {
	position: absolute;
	top: 160px;
	left: 0;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
@media screen and (max-width: 992px) {
	.mil-slider-nav.mil-reviews-nav {
		top: 0;
	}
}
.mil-slider-nav.mil-soft .mil-slider-arrow {
	background-color: var(--background-light);
}
.mil-slider-nav.mil-soft .mil-slider-arrow svg path {
	fill: var(--text-dark);
}

/* -------------------------------------------

blog

------------------------------------------- */
.mil-blog-card {
	display: block;
	border-radius: 12px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.mil-blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.mil-blog-card .mil-cover-frame {
	position: relative;
	overflow: hidden;
	padding-bottom: 60%;
	margin-bottom: 30px;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	background: #f8f9fa;
}
.mil-blog-card .mil-cover-frame img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-blog-card .mil-post-descr {
	padding: 25px 25px 25px 25px;
}
.mil-blog-card .mil-post-descr .mil-post-text {
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.mil-blog-card:hover .mil-cover-frame img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

/* Enhanced blog image styles for custom PNG images */
.mil-blog-card .mil-cover-frame img[src*=".png"] {
	-webkit-filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

/* Blog post header image styles */
.mil-blog-post-image {
	width: 100%;
	height: auto;
	max-height: 400px;
	-o-object-fit: contain;
	object-fit: contain;
	border-radius: 8px;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	padding: 20px;
	-webkit-filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}



.mil-blog-card.mil-blog-card-hori {
	padding-top: 60px;
	border-top: solid 1px rgb(229, 229, 229);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.mil-blog-card.mil-blog-card-hori .mil-cover-frame {
	margin-bottom: 0;
	width: 450px;
	padding-bottom: 27%;
}
.mil-blog-card.mil-blog-card-hori .mil-post-descr {
	width: calc(100% - 450px);
	padding: 0;
	padding-left: 60px;
}
@media screen and (max-width: 992px) {
	.mil-blog-card.mil-blog-card-hori {
		display: block;
		padding-top: 0;
		border: none;
	}
	.mil-blog-card.mil-blog-card-hori .mil-cover-frame {
		width: 100%;
		padding-bottom: 65%;
	}
	.mil-blog-card.mil-blog-card-hori .mil-post-descr {
		width: 100%;
		padding: 25px;
	}
}

.mil-labels {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0;
}
.mil-labels .mil-label {
	margin-right: 15px;
}
.mil-labels .mil-label:last-child {
	margin-right: 0;
}

.mil-pagination {
	padding-top: 60px;
	border-top: solid 1px rgba(0, 0, 0, 0.1);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 20px;
	gap: 20px;
}

.mil-pagination-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.mil-pagination-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.mil-pagination-text {
	font-size: 14px;
	color: rgba(0, 0, 0, 0.6);
	font-weight: 500;
}

.mil-pagination-btn {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 500;
	border-radius: 25px;
	background-color: rgba(0, 0, 0, 0.05);
	color: rgb(0, 0, 0);
	text-decoration: none;
	transition: all 0.3s ease;
	gap: 8px;
}

.mil-pagination-btn:hover {
	background-color: var(--accent);
	color: white;
	transform: translateY(-2px);
}

.mil-pagination-btn.mil-active {
	background-color: var(--accent);
}

.mil-category-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.mil-category-list li {
	list-style-type: none;
	margin-right: 10px;
}
.mil-category-list li:last-child {
	margin-right: 0;
}
.mil-category-list li a {
	height: 40px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: transparent;
	padding: 0 20px;
	border-radius: 40px;
	color: rgb(0, 0, 0);
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 2px;
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-category-list li a:hover {
	background-color: var(--background-light);
}
.mil-category-list li a.mil-active {
	background-color: var(--accent);
}
@media screen and (max-width: 768px) {
	.mil-category-list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.mil-category-list li {
		margin-right: 0;
		margin-bottom: 10px;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.mil-category-list li:last-child {
		margin-bottom: 0;
	}
	.mil-category-list li a {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}

/* -------------------------------------------

footer

------------------------------------------- */
.mil-footer-section {
	position: relative;
}

.mil-footer-brand {
	max-width: 100%;
}

.mil-footer-logo {
	font-size: 48px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.95);
	letter-spacing: -1px;
}

.mil-footer-tagline {
	font-size: 16px;
	line-height: 1.6;
	max-width: 320px;
}

.mil-footer-contact {
	margin-top: 10px;
}

.mil-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.mil-contact-icon {
	font-size: 16px;
	color: var(--accent);
	margin-top: 2px;
	min-width: 16px;
}

.mil-contact-label {
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	min-width: 60px;
}

.mil-contact-link {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: color 0.3s ease;
}

.mil-contact-link:hover {
	color: var(--accent);
}

.mil-contact-text {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.4;
}

.mil-footer-title {
	font-size: 18px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Footer Navigation */
.mil-footer-menu {
	margin-bottom: 0;
}

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

.mil-footer-menu ul li {
	list-style-type: none;
	margin-bottom: 15px;
}

.mil-footer-menu ul li a {
	display: inline-block;
	font-weight: 400;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0, 0, 0.3642, 1);
	position: relative;
}

.mil-footer-menu ul li a:hover {
	color: rgba(255, 255, 255, 1);
	transform: translateX(5px);
}

.mil-footer-menu ul li a::before {
	content: "";
	position: absolute;
	left: -15px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 1px;
	background: var(--accent);
	transition: width 0.3s ease;
}

.mil-footer-menu ul li a:hover::before {
	width: 10px;
}

.mil-footer-menu ul li.mil-active a {
	color: var(--accent);
}

.mil-footer-menu ul li.mil-active a:hover {
	transform: none;
}

@media screen and (max-width: 768px) {
	.mil-footer-menu ul li a {
		font-size: 15px;
	}
	.mil-footer-logo {
		font-size: 36px;
	}
	.mil-footer-tagline {
		font-size: 15px;
	}
}

/* Social Links */
.mil-social-links {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.mil-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 18px;
}

.mil-social-link:hover {
	background: var(--accent);
	color: var(--text-dark);
	transform: translateY(-2px);
}

/* Footer Bottom */
.mil-footer-bottom {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mil-copyright {
	margin: 0;
	font-size: 14px;
}

.mil-footer-links {
	display: flex;
	align-items: center;
	gap: 15px;
	justify-content: flex-end;
}

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

.mil-footer-link:hover {
	color: var(--accent);
}

.mil-separator {
	color: rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 768px) {
	.mil-footer-bottom {
		margin-top: 40px;
		padding-top: 30px;
	}

	.mil-footer-links {
		justify-content: flex-start;
		margin-top: 15px;
	}

	.mil-social-links {
		justify-content: flex-start;
	}
}

/* Legacy footer styles for backwards compatibility */

/* -------------------------------------------

Contact Page Styles

------------------------------------------- */
.mil-contact-hero {
	background: var(--mischka);
}

.mil-contact-intro .mil-text-lg {
	font-size: 18px;
	line-height: 1.6;
	color: var(--salt-box);
}

.mil-contact-stats {
	margin-top: 20px;
}

.mil-stat-item h4 {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 8px;
}

.mil-stat-item p {
	font-size: 14px;
	color: var(--salt-box);
	margin: 0;
}

.mil-contact-grid {
	padding-left: 30px;
}

@media screen and (max-width: 992px) {
	.mil-contact-grid {
		padding-left: 0;
		margin-top: 50px;
	}
}

.mil-contact-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 25px 20px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 1px solid rgba(0, 0, 0, 0.04);
	height: 100%;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.mil-contact-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), #c8c8c8);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

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

.mil-contact-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mil-contact-card-icon {
	width: 50px;
	height: 50px;
	background: var(--accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
	color: white;
	font-size: 20px;
	transition: all 0.3s ease;
}

.mil-contact-card:hover .mil-contact-card-icon {
	transform: scale(1.1);
}

.mil-contact-card h5 {
	font-size: 17px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 12px;
}

.mil-contact-info {
	font-size: 14px;
	color: var(--salt-box);
	margin-bottom: 18px;
	line-height: 1.5;
}

.mil-contact-link {
	font-size: 13px;
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.mil-contact-link:hover {
	color: var(--text-dark);
}

.mil-contact-link i {
	margin-left: 6px;
	font-size: 11px;
	transition: transform 0.3s ease;
}

.mil-contact-card:hover .mil-contact-link i {
	transform: translateX(3px);
}

/* Map Section */
.mil-map-section {
	padding: 80px 0;
	background: var(--mischka);
}

.mil-map-container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.mil-map-overlay {
	position: absolute;
	bottom: 30px;
	left: 30px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 25px;
	border-radius: 12px;
	max-width: 280px;
}

.mil-map-info h5 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--text-dark);
}

.mil-map-info p {
	font-size: 14px;
	color: var(--salt-box);
	margin-bottom: 15px;
	line-height: 1.4;
}

.mil-link-map {
	font-size: 14px;
	color: var(--accent);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.mil-link-map:hover {
	color: var(--text-dark);
}

.mil-link-map i {
	margin-left: 5px;
	font-size: 12px;
}

/* Contact Form Styles */
.mil-contact-form {
	max-width: 100%;
}

.mil-input-group {
	position: relative;
}

.mil-form-label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.mil-input {
	width: 100%;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 16px 20px;
	font-size: 16px;
	color: rgba(255, 255, 255, 0.9);
	transition: all 0.3s ease;
	font-family: inherit;
}

.mil-input:focus {
	outline: none;
	border-color: var(--accent);
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 0 0 3px rgba(160, 160, 160, 0.1);
}

.mil-input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.mil-textarea {
	min-height: 120px;
	resize: vertical;
}

.mil-form-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 40px;
}

.mil-form-privacy {
	flex: 1;
	margin-right: 30px;
}

.mil-form-privacy p {
	font-size: 14px;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.mil-form-submit {
	flex-shrink: 0;
}

.mil-button-light {
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.mil-button-light:hover {
	background: var(--accent);
	color: var(--text-dark);
	border-color: var(--accent);
}

.mil-form-response {
	margin-top: 30px;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
}

.mil-alert {
	padding: 15px 20px;
	border-radius: 8px;
	margin: 0;
}

.mil-alert.mil-success {
	background: rgba(40, 167, 69, 0.1);
	border: 1px solid rgba(40, 167, 69, 0.3);
	color: #28a745;
}

.mil-alert.mil-info {
	background: rgba(23, 162, 184, 0.1);
	border: 1px solid rgba(23, 162, 184, 0.3);
	color: #17a2b8;
}

.mil-alert p {
	margin: 0;
	font-size: 14px;
}

@media screen and (max-width: 768px) {
	.mil-form-footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.mil-form-privacy {
		margin-right: 0;
	}

	.mil-contact-card {
		padding: 25px 20px;
	}

	.mil-map-overlay {
		position: static;
		margin-top: 20px;
		max-width: none;
	}
}

.mil-subscribe-form {
	position: relative;
	height: 70px;
	width: 100%;
}
.mil-subscribe-form input {
	height: 100%;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.1);
	color: rgb(0, 0, 0);
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	border: none;
	border-radius: 70px;
	padding: 0 0 0 50px;
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-subscribe-form input::-webkit-input-placeholder {
	color: rgb(128, 128, 128);
	font-family: "Outfit", sans-serif;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.mil-subscribe-form input::-moz-placeholder {
	color: rgb(128, 128, 128);
	font-family: "Outfit", sans-serif;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.mil-subscribe-form input:-ms-input-placeholder {
	color: rgb(128, 128, 128);
	font-family: "Outfit", sans-serif;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.mil-subscribe-form input::-ms-input-placeholder {
	color: rgb(128, 128, 128);
	font-family: "Outfit", sans-serif;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.mil-subscribe-form input::placeholder {
	color: rgb(128, 128, 128);
	font-family: "Outfit", sans-serif;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.mil-subscribe-form input:focus {
	background-color: var(--mischka);
	outline: inherit;
}
.mil-subscribe-form input:hover {
	background-color: var(--mischka);
}
.mil-subscribe-form .mil-button {
	position: absolute;
	top: 15px;
	right: 15px;
}
.mil-subscribe-form.mil-subscribe-form-2 input {
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.1);
}

/* -------------------------------------------

portfolio

------------------------------------------- */
.mil-portfolio-item {
	display: block;
}
.mil-portfolio-item .mil-cover-frame {
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}
.mil-portfolio-item .mil-cover-frame .mil-cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.mil-portfolio-item .mil-cover-frame .mil-cover img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-portfolio-item .mil-cover-frame.mil-vert {
	padding-bottom: 130%;
}
.mil-portfolio-item .mil-cover-frame.mil-hori {
	padding-bottom: 65%;
}
.mil-portfolio-item:hover .mil-cover-frame .mil-cover img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}
.mil-portfolio-item.mil-slider-item .mil-cover-frame {
	margin-bottom: 30px;
	height: calc(100vh - 360px);
}
@media screen and (max-width: 992px) {
	.mil-portfolio-item.mil-slider-item .mil-cover-frame {
		height: auto;
		padding-bottom: 100%;
	}
}
.mil-portfolio-item.mil-slider-item .mil-descr {
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 180px;
	background-color: var(--background-light);
	padding: 0 60px;
}
@media screen and (max-width: 992px) {
	.mil-portfolio-item.mil-slider-item .mil-descr {
		padding: 30px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		height: auto;
	}
	.mil-portfolio-item.mil-slider-item .mil-descr .mil-descr-text {
		margin-bottom: 30px;
	}
}
.mil-portfolio-item.mil-slider-item:hover .mil-cover-frame .mil-cover img {
	-webkit-transform: none;
	transform: none;
}

/* -------------------------------------------

Polaroid Development Portfolio Effect

------------------------------------------- */

.mil-polaroid-gallery {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	position: relative;
}

.mil-polaroid-gallery::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23000000" opacity="0.02"/></svg>')
		repeat;
	background-size: 50px 50px;
	pointer-events: none;
}

.mil-polaroid-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 60px;
	padding: 0 20px;
}

@media screen and (max-width: 768px) {
	.mil-polaroid-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 0 10px;
	}
}

.mil-polaroid-card {
	position: relative;
	margin: 0 auto;
	max-width: 450px;
	opacity: 0;
	transform: translateY(50px) rotateX(15deg);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	animation: fadeInUp 0.8s ease-out forwards;
}

.mil-polaroid-card.mil-polaroid-developed {
	opacity: 1;
	transform: translateY(0) rotateX(0deg);
}

.mil-polaroid-photo {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	padding: 20px 20px 30px 20px;
	transform-style: preserve-3d;
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
}

.mil-polaroid-photo::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.1) 0%,
		transparent 50%
	);
	pointer-events: none;
	z-index: 2;
}

.mil-polaroid-photo:hover {
	transform: translateY(-10px) rotateY(5deg) rotateX(5deg);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 25px rgba(0, 0, 0, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mil-polaroid-image {
	position: relative;
	width: 100%;
	height: 280px;
	border-radius: 8px;
	overflow: hidden;
	background: #ffffff;
	margin-bottom: 25px;
}

.mil-polaroid-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	filter: contrast(0%) brightness(200%) saturate(0%);
}

.mil-polaroid-developed .mil-polaroid-image img {
	filter: contrast(100%) brightness(100%) saturate(100%);
}

.mil-polaroid-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		rgba(255, 255, 255, 0.9) 0%,
		rgba(255, 255, 255, 0.7) 30%,
		rgba(255, 255, 255, 0.3) 60%,
		transparent 100%
	);
	opacity: 1;
	transition: opacity 3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	pointer-events: none;
}

.mil-polaroid-developed .mil-polaroid-overlay {
	opacity: 0;
}

.mil-polaroid-caption {
	text-align: center;
	padding: 0 10px;
}

.mil-polaroid-labels {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}

.mil-polaroid-category,
.mil-polaroid-year {
	background: var(--accent);
	color: white;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mil-polaroid-year {
	background: var(--text-dark);
	transition-delay: 0.2s;
}

.mil-polaroid-developed .mil-polaroid-category,
.mil-polaroid-developed .mil-polaroid-year {
	opacity: 1;
	transform: translateY(0);
}

.mil-polaroid-title {
	font-size: 20px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 12px;
	line-height: 1.3;
	opacity: 0;
	transform: translateY(20px);
	transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transition-delay: 0.4s;
}

.mil-polaroid-developed .mil-polaroid-title {
	opacity: 1;
	transform: translateY(0);
}

.mil-polaroid-description {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 20px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transition-delay: 0.6s;
}

.mil-polaroid-developed .mil-polaroid-description {
	opacity: 1;
	transform: translateY(0);
}

.mil-polaroid-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--accent);
	color: white;
	padding: 12px 24px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(20px) scale(0.9);
	transition: all 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transition-delay: 0.8s;
}

.mil-polaroid-developed .mil-polaroid-link {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.mil-polaroid-link:hover {
	background: var(--text-dark);
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mil-polaroid-link svg {
	width: 16px;
	height: 16px;
	fill: currentColor;
	transition: transform 0.3s ease;
}

.mil-polaroid-link:hover svg {
	transform: translateX(3px);
}

/* Status tags for projects */
.mil-polaroid-status {
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 3;
	opacity: 0;
	transform: translateY(-10px) scale(0.8);
	transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transition-delay: 1s;
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mil-polaroid-developed .mil-polaroid-status {
	opacity: 1;
	transform: translateY(0) scale(1);
}

.mil-status-live {
	background: linear-gradient(135deg, #28a745, #20c997);
	color: white;
	animation: pulse-green 2s infinite;
}

.mil-status-development {
	background: linear-gradient(135deg, #fd7e14, #ffc107);
	color: white;
	animation: pulse-orange 2s infinite;
}

@keyframes pulse-green {
	0%,
	100% {
		box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
	}
	50% {
		box-shadow: 0 4px 25px rgba(40, 167, 69, 0.5);
	}
}

@keyframes pulse-orange {
	0%,
	100% {
		box-shadow: 0 4px 15px rgba(253, 126, 20, 0.3);
	}
	50% {
		box-shadow: 0 4px 25px rgba(253, 126, 20, 0.5);
	}
}

/* Portfolio legend styles */
.mil-portfolio-legend {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 20px;
}

.mil-legend-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.mil-legend-badge {
	padding: 4px 10px;
	border-radius: 15px;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.mil-legend-live {
	background: linear-gradient(135deg, #28a745, #20c997);
	color: white;
}

.mil-legend-development {
	background: linear-gradient(135deg, #fd7e14, #ffc107);
	color: white;
}

.mil-legend-text {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

@media screen and (max-width: 576px) {
	.mil-portfolio-legend {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}

	.mil-legend-item {
		flex-direction: column;
		text-align: center;
		gap: 5px;
	}
}

/* Polaroid development animation keyframes */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(50px) rotateX(15deg);
	}
	to {
		opacity: 1;
		transform: translateY(0) rotateX(0deg);
	}
}

/* Scattered rotation effect for variation */
.mil-polaroid-card:nth-child(2n) {
	transform: translateY(50px) rotateZ(-2deg);
}

.mil-polaroid-card:nth-child(3n) {
	transform: translateY(50px) rotateZ(1deg);
}

.mil-polaroid-card:nth-child(4n) {
	transform: translateY(50px) rotateZ(-1deg);
}

.mil-polaroid-card.mil-polaroid-developed:nth-child(2n) {
	transform: translateY(0) rotateZ(-2deg);
}

.mil-polaroid-card.mil-polaroid-developed:nth-child(3n) {
	transform: translateY(0) rotateZ(1deg);
}

.mil-polaroid-card.mil-polaroid-developed:nth-child(4n) {
	transform: translateY(0) rotateZ(-1deg);
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
	.mil-polaroid-grid {
		grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
		gap: 40px;
	}

	.mil-polaroid-image {
		height: 250px;
	}

	.mil-polaroid-title {
		font-size: 18px;
	}
}

@media screen and (max-width: 576px) {
	.mil-polaroid-grid {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 0;
	}

	.mil-polaroid-card {
		max-width: 100%;
	}

	.mil-polaroid-photo {
		padding: 15px 15px 20px 15px;
	}

	.mil-polaroid-image {
		height: 220px;
		margin-bottom: 20px;
	}

	.mil-polaroid-title {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.mil-polaroid-description {
		font-size: 13px;
		margin-bottom: 15px;
	}
}

/* -------------------------------------------

Enhanced Portfolio Page Sections

------------------------------------------- */

/* Portfolio Hero Section */
.mil-portfolio-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

.mil-portfolio-hero .mil-banner-content {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mil-hero-animation {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 60vh;
	padding: 40px 0;
}

.mil-portfolio-hero-title {
	position: relative;
	display: inline-block;
	text-align: center;
	margin-bottom: 50px;
	width: 100%;
}

.mil-title-decoration {
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	animation: slideInRight 1s ease-out 0.8s forwards;
	z-index: 10;
}

.mil-camera-icon {
	width: 50px;
	height: 50px;
	background: var(--accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	animation: bounce 2s infinite 2s;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	position: relative;
	margin: 0 auto;
}

.mil-camera-icon svg {
	width: 24px;
	height: 24px;
}

.mil-hero-stats {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	margin-bottom: 40px;
	opacity: 0;
	animation: fadeInUp 0.8s ease-out 1.2s forwards;
	padding: 30px 0;
}

.mil-stat-item {
	text-align: center;
	min-width: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.mil-stat-number {
	display: block;
	font-size: 32px;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 8px;
	line-height: 1;
}

.mil-stat-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: var(--text-medium);
	font-weight: 500;
	line-height: 1.2;
	max-width: 100px;
}

.mil-stat-divider {
	width: 1px;
	height: 50px;
	background: var(--accent);
	opacity: 0.3;
	flex-shrink: 0;
}

/* Hero CTA Button Section */
.mil-hero-cta {
	position: absolute;
	bottom: 40px;
	left: 0;
	right: 0;
	z-index: 10;
	opacity: 1;
}

.mil-hero-button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: #fff;
	color: #000;
	padding: 18px 36px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
}

.mil-hero-button::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s ease;
}

.mil-hero-button:hover::before {
	left: 100%;
}

.mil-hero-button:hover {
	background: #f8f8f8;
	color: #000;
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.mil-hero-button svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
	transition: transform 0.3s ease;
}

.mil-hero-button:hover svg {
	transform: translateY(3px);
}

/* Floating Background Elements */
.mil-portfolio-bg-animation {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	z-index: 1;
}

.mil-floating-element {
	position: absolute;
	background: var(--accent);
	opacity: 0.1;
	border-radius: 50%;
}

.mil-float-1 {
	width: 100px;
	height: 100px;
	top: 20%;
	left: 10%;
	animation: float 6s ease-in-out infinite;
}

.mil-float-2 {
	width: 60px;
	height: 60px;
	top: 60%;
	right: 15%;
	animation: float 8s ease-in-out infinite reverse;
}

.mil-float-3 {
	width: 80px;
	height: 80px;
	bottom: 20%;
	left: 70%;
	animation: float 7s ease-in-out infinite 2s;
}

/* Portfolio Intro Section */
.mil-portfolio-intro {
	background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
	position: relative;
	color: white;
	overflow: hidden;
}

.mil-portfolio-intro::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></svg>')
		repeat;
	background-size: 80px 80px;
	pointer-events: none;
}

.mil-portfolio-intro .mil-suptitle-dark {
	color: var(--accent);
}

.mil-portfolio-intro .mil-text-lg {
	color: rgba(255, 255, 255, 0.8);
}

.mil-feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-top: 40px;
}

.mil-feature-item {
	text-align: center;
	padding: 40px 30px;
	border-radius: 16px;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.1) 0%,
		rgba(255, 255, 255, 0.05) 100%
	);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.mil-feature-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transition: left 0.5s ease;
}

.mil-feature-item:hover::before {
	left: 100%;
}

.mil-feature-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.15) 0%,
		rgba(255, 255, 255, 0.08) 100%
	);
	border-color: rgba(255, 255, 255, 0.2);
}

.mil-feature-icon {
	width: 70px;
	height: 70px;
	background: var(--accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	color: white;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(160, 160, 160, 0.3);
}

.mil-feature-item:hover .mil-feature-icon {
	background: white;
	color: var(--text-dark);
	transform: scale(1.1);
	box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

.mil-feature-icon svg {
	width: 28px;
	height: 28px;
}

.mil-feature-item h5 {
	margin-bottom: 15px;
	color: white;
	font-weight: 600;
}

.mil-feature-item p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	margin: 0;
	line-height: 1.6;
}

/* Portfolio CTA Section */
.mil-portfolio-cta {
	position: relative;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mil-cta-content {
	max-width: 600px;
	margin: 0 auto;
}

.mil-cta-icon {
	width: 80px;
	height: 80px;
	background: var(--accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
	color: white;
	position: relative;
}

.mil-cta-icon::before {
	content: "";
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	border: 2px solid var(--accent);
	border-radius: 50%;
	opacity: 0.3;
	animation: pulse 2s infinite;
}

.mil-cta-icon svg {
	width: 32px;
	height: 32px;
}

.mil-cta-features {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.mil-cta-feature {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	color: var(--text-dark);
}

.mil-cta-check {
	width: 20px;
	height: 20px;
	background: var(--accent);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: bold;
}

.mil-cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.mil-cta-primary {
	background: #fff;
	color: #000;
	padding: 15px 30px;
	border-radius: 50px;
}

.mil-cta-primary:hover {
	background: #fff;
	color: #000;
	filter: brightness(95%);
	transform: translateY(-2px);
}

.mil-cta-secondary {
	font-weight: 500;
}

/* Animations */
@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.05);
		opacity: 0.7;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

/* Responsive Design for Enhanced Sections */
@media screen and (max-width: 768px) {
	.mil-title-decoration {
		position: static;
		transform: none;
		margin: 20px auto 0;
		opacity: 1;
		animation: none;
	}

	.mil-camera-icon {
		width: 40px;
		height: 40px;
	}

	.mil-camera-icon svg {
		width: 20px;
		height: 20px;
	}

	.mil-hero-stats {
		flex-direction: column;
		gap: 25px;
		padding: 20px 0;
	}

	.mil-hero-cta {
		bottom: 20px;
	}

	.mil-hero-button {
		padding: 15px 30px;
		font-size: 15px;
	}

	.mil-hero-button svg {
		width: 18px;
		height: 18px;
	}

	.mil-stat-item {
		min-width: auto;
		width: 100%;
	}

	.mil-stat-number {
		font-size: 28px;
	}

	.mil-stat-label {
		font-size: 12px;
		max-width: none;
	}

	.mil-stat-divider {
		width: 80px;
		height: 1px;
	}

	.mil-feature-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.mil-cta-features {
		flex-direction: column;
		gap: 15px;
	}

	.mil-cta-buttons {
		flex-direction: column;
		gap: 15px;
	}
}

@media screen and (max-width: 576px) {
	.mil-portfolio-hero {
		min-height: 80vh;
		padding: 60px 0;
	}

	.mil-hero-animation {
		min-height: auto;
		padding: 20px 0;
	}

	.mil-portfolio-hero-title {
		margin-bottom: 30px;
	}

	.mil-hero-stats {
		gap: 20px;
		padding: 15px 0;
	}

	.mil-stat-number {
		font-size: 24px;
	}

	.mil-stat-label {
		font-size: 11px;
		letter-spacing: 0.6px;
	}

	.mil-stat-divider {
		width: 60px;
	}

	.mil-hero-cta {
		bottom: 15px;
	}

	.mil-hero-button {
		padding: 12px 24px;
		font-size: 14px;
		gap: 8px;
	}

	.mil-hero-button svg {
		width: 16px;
		height: 16px;
	}
}

.swiper-slide .mil-portfolio-item .mil-descr {
	pointer-events: none;
}
.swiper-slide.swiper-slide-active .mil-portfolio-item .mil-descr {
	pointer-events: all;
}

.mil-portfolio {
	position: relative;
}
.mil-portfolio .mil-lines-place {
	position: absolute;
	left: 40.7%;
}
.mil-portfolio .mil-lines-place.mil-lines-long {
	top: 1289px;
}

.mil-portfolio-slider-frame {
	z-index: 0;
	padding-top: 150px;
}
@media screen and (max-width: 992px) {
	.mil-portfolio-slider-frame {
		padding-top: 180px;
	}
}

.mil-portfolio-nav {
	background-color: var(--background-light);
	width: 100%;
	padding: 0 60px;
	height: 180px;
	position: absolute;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.mil-portfolio-nav .mil-portfolio-btns-frame {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 15px;
	height: 70px;
	border-radius: 70px;
	background-color: var(--mischka);
}
@media screen and (max-width: 1200px) {
	.mil-portfolio-nav {
		position: static;
		height: auto;
		padding: 30px 0 90px;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		background-color: var(--mischka);
	}
	.mil-portfolio-nav .mil-portfolio-btns-frame {
		width: 100%;
		height: auto;
		padding: 0;
	}
}

.swiper-portfolio-pagination {
	white-space: nowrap;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 0 15px;
}

.mil-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	height: 120px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: solid 1px rgba(0, 0, 0, 0.1);
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 2px;
	font-weight: 500;
}
@media screen and (max-width: 768px) {
	.mil-info {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		height: auto;
		padding: 30px;
	}
}

.mil-works-nav {
	padding-top: 60px;
	border-top: solid 1px rgba(0, 0, 0, 0.1);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.mil-works-nav .mil-disabled {
	opacity: 0.2;
	cursor: not-allowed;
}
@media screen and (max-width: 768px) {
	.mil-works-nav {
		padding-top: 0;
		border-top: none;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.mil-works-nav .mil-link {
		display: none;
	}
	.mil-works-nav .mil-link:last-child {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
}

/***************************

map

***************************/
.mil-map-frame {
	background-color: var(--background-light);
	pointer-events: all;
	height: 600px;
	position: relative;
	overflow: hidden;
}
.mil-map-frame .mil-map {
	position: absolute;
	top: -25%;
	left: -25%;
	width: 150%;
	height: 150%;
	-webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
	transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-map-frame .mil-map iframe {
	width: 100%;
	height: 100%;
}
/* -------------------------------------------

accordion

------------------------------------------- */
.mil-accordion-group {
	border-bottom: solid 1px rgba(0, 0, 0, 0.2);
	margin-bottom: 30px;
}
.mil-accordion-group .mil-accordion-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	cursor: pointer;
	margin-bottom: 30px;
}
.mil-accordion-group .mil-accordion-menu .mil-symbol {
	border-radius: 50%;
	width: 40px;
	height: 40px;
	color: var(--text-dark);
	background-color: var(--background-light);
	font-size: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
}
.mil-accordion-group .mil-accordion-menu .mil-symbol .mil-plus,
.mil-accordion-group .mil-accordion-menu .mil-symbol .mil-minus {
	position: absolute;
}
.mil-accordion-group .mil-accordion-menu .mil-symbol .mil-minus {
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
}
.mil-accordion-group .mil-accordion-menu .mil-accordion-head {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
	color: rgb(0, 0, 0);
}

.mil-accordion-content {
	height: 0;
	overflow: hidden;
}

/***************************

404

***************************/
.mil-404-banner .mil-animation-frame {
	z-index: 2;
}

.mil-404-frame {
	padding-top: 100px;
	height: 100vh;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.mil-404-text {
	display: block;
	text-align: center;
	color: rgb(255, 255, 255);
}

.mil-scale-frame {
	-webkit-transform: scale(2.3);
	transform: scale(2.3);
	text-align: center;
	margin-bottom: 90px;
}
@media screen and (max-width: 530px) {
	.mil-scale-frame {
		-webkit-transform: scale(1.3);
		transform: scale(1.3);
		margin-bottom: 50px;
	}
}

.mil-404 {
	position: relative;
	color: rgb(255, 255, 255);
	font-size: 6em;
	font-weight: 500;
	animation: glitch-skew 1s infinite linear alternate-reverse;
}
.mil-404::before {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	left: 2px;
	text-shadow: -2px 0 var(--accent);
	clip: rect(44px, 450px, 56px, 0);
	animation: glitch-anim 5s infinite linear alternate-reverse;
}
.mil-404::after {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	left: -2px;
	text-shadow: -2px 0 rgb(153, 153, 153), 2px 2px rgb(229, 229, 229);
	animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@-webkit-keyframes glitch-anim {
	0% {
		clip: rect(49px, 9999px, 31px, 0);
		-webkit-transform: skew(0.04deg);
		transform: skew(0.04deg);
	}
	5% {
		clip: rect(63px, 9999px, 92px, 0);
		-webkit-transform: skew(0.18deg);
		transform: skew(0.18deg);
	}
	10% {
		clip: rect(86px, 9999px, 74px, 0);
		-webkit-transform: skew(0.4deg);
		transform: skew(0.4deg);
	}
	15% {
		clip: rect(85px, 9999px, 19px, 0);
		-webkit-transform: skew(0.57deg);
		transform: skew(0.57deg);
	}
	20% {
		clip: rect(64px, 9999px, 75px, 0);
		-webkit-transform: skew(0.96deg);
		transform: skew(0.96deg);
	}
	25% {
		clip: rect(77px, 9999px, 17px, 0);
		-webkit-transform: skew(0.61deg);
		transform: skew(0.61deg);
	}
	30% {
		clip: rect(16px, 9999px, 76px, 0);
		-webkit-transform: skew(0.81deg);
		transform: skew(0.81deg);
	}
	35% {
		clip: rect(5px, 9999px, 61px, 0);
		-webkit-transform: skew(0.56deg);
		transform: skew(0.56deg);
	}
	40% {
		clip: rect(79px, 9999px, 81px, 0);
		-webkit-transform: skew(0.05deg);
		transform: skew(0.05deg);
	}
	45% {
		clip: rect(20px, 9999px, 97px, 0);
		-webkit-transform: skew(0.56deg);
		transform: skew(0.56deg);
	}
	50% {
		clip: rect(33px, 9999px, 100px, 0);
		-webkit-transform: skew(0.16deg);
		transform: skew(0.16deg);
	}
	55% {
		clip: rect(19px, 9999px, 76px, 0);
		-webkit-transform: skew(0.93deg);
		transform: skew(0.93deg);
	}
	60% {
		clip: rect(29px, 9999px, 59px, 0);
		-webkit-transform: skew(0.58deg);
		transform: skew(0.58deg);
	}
	65% {
		clip: rect(19px, 9999px, 95px, 0);
		-webkit-transform: skew(0.83deg);
		transform: skew(0.83deg);
	}
	70% {
		clip: rect(88px, 9999px, 30px, 0);
		-webkit-transform: skew(0.39deg);
		transform: skew(0.39deg);
	}
	75% {
		clip: rect(43px, 9999px, 45px, 0);
		-webkit-transform: skew(0.6deg);
		transform: skew(0.6deg);
	}
	80% {
		clip: rect(30px, 9999px, 4px, 0);
		-webkit-transform: skew(0.89deg);
		transform: skew(0.89deg);
	}
	85% {
		clip: rect(4px, 9999px, 96px, 0);
		-webkit-transform: skew(1deg);
		transform: skew(1deg);
	}
	90% {
		clip: rect(4px, 9999px, 91px, 0);
		-webkit-transform: skew(0.2deg);
		transform: skew(0.2deg);
	}
	95% {
		clip: rect(48px, 9999px, 80px, 0);
		-webkit-transform: skew(0.41deg);
		transform: skew(0.41deg);
	}
	100% {
		clip: rect(10px, 9999px, 58px, 0);
		-webkit-transform: skew(0.91deg);
		transform: skew(0.91deg);
	}
}

@keyframes glitch-anim {
	0% {
		clip: rect(49px, 9999px, 31px, 0);
		-webkit-transform: skew(0.04deg);
		transform: skew(0.04deg);
	}
	5% {
		clip: rect(63px, 9999px, 92px, 0);
		-webkit-transform: skew(0.18deg);
		transform: skew(0.18deg);
	}
	10% {
		clip: rect(86px, 9999px, 74px, 0);
		-webkit-transform: skew(0.4deg);
		transform: skew(0.4deg);
	}
	15% {
		clip: rect(85px, 9999px, 19px, 0);
		-webkit-transform: skew(0.57deg);
		transform: skew(0.57deg);
	}
	20% {
		clip: rect(64px, 9999px, 75px, 0);
		-webkit-transform: skew(0.96deg);
		transform: skew(0.96deg);
	}
	25% {
		clip: rect(77px, 9999px, 17px, 0);
		-webkit-transform: skew(0.61deg);
		transform: skew(0.61deg);
	}
	30% {
		clip: rect(16px, 9999px, 76px, 0);
		-webkit-transform: skew(0.81deg);
		transform: skew(0.81deg);
	}
	35% {
		clip: rect(5px, 9999px, 61px, 0);
		-webkit-transform: skew(0.56deg);
		transform: skew(0.56deg);
	}
	40% {
		clip: rect(79px, 9999px, 81px, 0);
		-webkit-transform: skew(0.05deg);
		transform: skew(0.05deg);
	}
	45% {
		clip: rect(20px, 9999px, 97px, 0);
		-webkit-transform: skew(0.56deg);
		transform: skew(0.56deg);
	}
	50% {
		clip: rect(33px, 9999px, 100px, 0);
		-webkit-transform: skew(0.16deg);
		transform: skew(0.16deg);
	}
	55% {
		clip: rect(19px, 9999px, 76px, 0);
		-webkit-transform: skew(0.93deg);
		transform: skew(0.93deg);
	}
	60% {
		clip: rect(29px, 9999px, 59px, 0);
		-webkit-transform: skew(0.58deg);
		transform: skew(0.58deg);
	}
	65% {
		clip: rect(19px, 9999px, 95px, 0);
		-webkit-transform: skew(0.83deg);
		transform: skew(0.83deg);
	}
	70% {
		clip: rect(88px, 9999px, 30px, 0);
		-webkit-transform: skew(0.39deg);
		transform: skew(0.39deg);
	}
	75% {
		clip: rect(43px, 9999px, 45px, 0);
		-webkit-transform: skew(0.6deg);
		transform: skew(0.6deg);
	}
	80% {
		clip: rect(30px, 9999px, 4px, 0);
		-webkit-transform: skew(0.89deg);
		transform: skew(0.89deg);
	}
	85% {
		clip: rect(4px, 9999px, 96px, 0);
		-webkit-transform: skew(1deg);
		transform: skew(1deg);
	}
	90% {
		clip: rect(4px, 9999px, 91px, 0);
		-webkit-transform: skew(0.2deg);
		transform: skew(0.2deg);
	}
	95% {
		clip: rect(48px, 9999px, 80px, 0);
		-webkit-transform: skew(0.41deg);
		transform: skew(0.41deg);
	}
	100% {
		clip: rect(10px, 9999px, 58px, 0);
		-webkit-transform: skew(0.91deg);
		transform: skew(0.91deg);
	}
}

@-webkit-keyframes glitch-anim2 {
	0% {
		clip: rect(97px, 9999px, 84px, 0);
		-webkit-transform: skew(0.55deg);
		transform: skew(0.55deg);
	}
	5% {
		clip: rect(82px, 9999px, 21px, 0);
		-webkit-transform: skew(0.04deg);
		transform: skew(0.04deg);
	}
	10% {
		clip: rect(51px, 9999px, 99px, 0);
		-webkit-transform: skew(0.93deg);
		transform: skew(0.93deg);
	}
	15% {
		clip: rect(42px, 9999px, 97px, 0);
		-webkit-transform: skew(0.03deg);
		transform: skew(0.03deg);
	}
	20% {
		clip: rect(27px, 9999px, 25px, 0);
		-webkit-transform: skew(0.86deg);
		transform: skew(0.86deg);
	}
	25% {
		clip: rect(69px, 9999px, 5px, 0);
		-webkit-transform: skew(0.95deg);
		transform: skew(0.95deg);
	}
	30% {
		clip: rect(38px, 9999px, 67px, 0);
		-webkit-transform: skew(0.33deg);
		transform: skew(0.33deg);
	}
	35% {
		clip: rect(8px, 9999px, 90px, 0);
		-webkit-transform: skew(0.67deg);
		transform: skew(0.67deg);
	}
	40% {
		clip: rect(34px, 9999px, 31px, 0);
		-webkit-transform: skew(0.33deg);
		transform: skew(0.33deg);
	}
	45% {
		clip: rect(1px, 9999px, 25px, 0);
		-webkit-transform: skew(0.71deg);
		transform: skew(0.71deg);
	}
	50% {
		clip: rect(45px, 9999px, 40px, 0);
		-webkit-transform: skew(0.38deg);
		transform: skew(0.38deg);
	}
	55% {
		clip: rect(84px, 9999px, 96px, 0);
		-webkit-transform: skew(0.3deg);
		transform: skew(0.3deg);
	}
	60% {
		clip: rect(68px, 9999px, 59px, 0);
		-webkit-transform: skew(0.35deg);
		transform: skew(0.35deg);
	}
	65% {
		clip: rect(93px, 9999px, 48px, 0);
		-webkit-transform: skew(0.25deg);
		transform: skew(0.25deg);
	}
	70% {
		clip: rect(19px, 9999px, 40px, 0);
		-webkit-transform: skew(0.97deg);
		transform: skew(0.97deg);
	}
	75% {
		clip: rect(76px, 9999px, 56px, 0);
		-webkit-transform: skew(0.79deg);
		transform: skew(0.79deg);
	}
	80% {
		clip: rect(22px, 9999px, 82px, 0);
		-webkit-transform: skew(0.48deg);
		transform: skew(0.48deg);
	}
	85% {
		clip: rect(30px, 9999px, 63px, 0);
		-webkit-transform: skew(0.91deg);
		transform: skew(0.91deg);
	}
	90% {
		clip: rect(68px, 9999px, 44px, 0);
		-webkit-transform: skew(0.4deg);
		transform: skew(0.4deg);
	}
	95% {
		clip: rect(12px, 9999px, 36px, 0);
		-webkit-transform: skew(0.61deg);
		transform: skew(0.61deg);
	}
	100% {
		clip: rect(24px, 9999px, 5px, 0);
		-webkit-transform: skew(0.96deg);
		transform: skew(0.96deg);
	}
}
@keyframes glitch-anim2 {
	0% {
		clip: rect(97px, 9999px, 84px, 0);
		-webkit-transform: skew(0.55deg);
		transform: skew(0.55deg);
	}
	5% {
		clip: rect(82px, 9999px, 21px, 0);
		-webkit-transform: skew(0.04deg);
		transform: skew(0.04deg);
	}
	10% {
		clip: rect(51px, 9999px, 99px, 0);
		-webkit-transform: skew(0.93deg);
		transform: skew(0.93deg);
	}
	15% {
		clip: rect(42px, 9999px, 97px, 0);
		-webkit-transform: skew(0.03deg);
		transform: skew(0.03deg);
	}
	20% {
		clip: rect(27px, 9999px, 25px, 0);
		-webkit-transform: skew(0.86deg);
		transform: skew(0.86deg);
	}
	25% {
		clip: rect(69px, 9999px, 5px, 0);
		-webkit-transform: skew(0.95deg);
		transform: skew(0.95deg);
	}
	30% {
		clip: rect(38px, 9999px, 67px, 0);
		-webkit-transform: skew(0.33deg);
		transform: skew(0.33deg);
	}
	35% {
		clip: rect(8px, 9999px, 90px, 0);
		-webkit-transform: skew(0.67deg);
		transform: skew(0.67deg);
	}
	40% {
		clip: rect(34px, 9999px, 31px, 0);
		-webkit-transform: skew(0.33deg);
		transform: skew(0.33deg);
	}
	45% {
		clip: rect(1px, 9999px, 25px, 0);
		-webkit-transform: skew(0.71deg);
		transform: skew(0.71deg);
	}
	50% {
		clip: rect(45px, 9999px, 40px, 0);
		-webkit-transform: skew(0.38deg);
		transform: skew(0.38deg);
	}
	55% {
		clip: rect(84px, 9999px, 96px, 0);
		-webkit-transform: skew(0.3deg);
		transform: skew(0.3deg);
	}
	60% {
		clip: rect(68px, 9999px, 59px, 0);
		-webkit-transform: skew(0.35deg);
		transform: skew(0.35deg);
	}
	65% {
		clip: rect(93px, 9999px, 48px, 0);
		-webkit-transform: skew(0.25deg);
		transform: skew(0.25deg);
	}
	70% {
		clip: rect(19px, 9999px, 40px, 0);
		-webkit-transform: skew(0.97deg);
		transform: skew(0.97deg);
	}
	75% {
		clip: rect(76px, 9999px, 56px, 0);
		-webkit-transform: skew(0.79deg);
		transform: skew(0.79deg);
	}
	80% {
		clip: rect(22px, 9999px, 82px, 0);
		-webkit-transform: skew(0.48deg);
		transform: skew(0.48deg);
	}
	85% {
		clip: rect(30px, 9999px, 63px, 0);
		-webkit-transform: skew(0.91deg);
		transform: skew(0.91deg);
	}
	90% {
		clip: rect(68px, 9999px, 44px, 0);
		-webkit-transform: skew(0.4deg);
		transform: skew(0.4deg);
	}
	95% {
		clip: rect(12px, 9999px, 36px, 0);
		-webkit-transform: skew(0.61deg);
		transform: skew(0.61deg);
	}
	100% {
		clip: rect(24px, 9999px, 5px, 0);
		-webkit-transform: skew(0.96deg);
		transform: skew(0.96deg);
	}
}
@-webkit-keyframes glitch-skew {
	0% {
		-webkit-transform: skew(3deg);
		transform: skew(3deg);
	}
	10% {
		-webkit-transform: skew(2deg);
		transform: skew(2deg);
	}
	20% {
		-webkit-transform: skew(0deg);
		transform: skew(0deg);
	}
	30% {
		-webkit-transform: skew(0deg);
		transform: skew(0deg);
	}
	40% {
		-webkit-transform: skew(2deg);
		transform: skew(2deg);
	}
	50% {
		-webkit-transform: skew(-1deg);
		transform: skew(-1deg);
	}
	60% {
		-webkit-transform: skew(-3deg);
		transform: skew(-3deg);
	}
	70% {
		-webkit-transform: skew(-1deg);
		transform: skew(-1deg);
	}
	80% {
		-webkit-transform: skew(-1deg);
		transform: skew(-1deg);
	}
	90% {
		-webkit-transform: skew(4deg);
		transform: skew(4deg);
	}
	100% {
		-webkit-transform: skew(-3deg);
		transform: skew(-3deg);
	}
}
@keyframes glitch-skew {
	0% {
		-webkit-transform: skew(3deg);
		transform: skew(3deg);
	}
	10% {
		-webkit-transform: skew(2deg);
		transform: skew(2deg);
	}
	20% {
		-webkit-transform: skew(0deg);
		transform: skew(0deg);
	}
	30% {
		-webkit-transform: skew(0deg);
		transform: skew(0deg);
	}
	40% {
		-webkit-transform: skew(2deg);
		transform: skew(2deg);
	}
	50% {
		-webkit-transform: skew(-1deg);
		transform: skew(-1deg);
	}
	60% {
		-webkit-transform: skew(-3deg);
		transform: skew(-3deg);
	}
	70% {
		-webkit-transform: skew(-1deg);
		transform: skew(-1deg);
	}
	80% {
		-webkit-transform: skew(-1deg);
		transform: skew(-1deg);
	}
	90% {
		-webkit-transform: skew(4deg);
		transform: skew(4deg);
	}
	100% {
		-webkit-transform: skew(-3deg);
		transform: skew(-3deg);
	}
}
/***************************

page transitions

***************************/
.mil-frame {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.6s;
	transition: 0.6s;
}

.mil-curtain {
	position: fixed;
	pointer-events: none;
	z-index: 4;
	background-color: var(--background-dark);
	opacity: 0;
	width: 100%;
	height: 100vh;
	-webkit-transition: 0.6s;
	transition: 0.6s;
}

.mil-main-transition {
	-webkit-transition: 0.6s;
	transition: 0.6s;
	margin-top: 0;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.mil-main-transition .mil-animation-frame {
	opacity: 1;
	margin-top: 0;
	-webkit-transition: 0.6s;
	transition: 0.6s;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.mil-main-transition .mil-lines-place {
	opacity: 1;
	margin-top: 0;
	-webkit-transition: 0.6s;
	transition: 0.6s;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

html.is-animating .mil-frame {
	opacity: 0;
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
}
@media screen and (max-width: 1200px) {
	html.is-animating .mil-frame {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}
html.is-animating .mil-curtain {
	opacity: 1;
	pointer-events: all;
}
html.is-animating .mil-main-transition {
	margin-top: 0.1px;
}
html.is-animating .mil-main-transition .mil-animation-frame {
	opacity: 0;
	margin-top: -90px;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}
html.is-animating .mil-main-transition .mil-lines-place {
	opacity: 0;
	margin-top: 90px;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

html.is-animating .mil-menu-frame {
	opacity: 0;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

/***************************

page transitions

***************************/

@-webkit-keyframes scaleIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(1.5, 1.5, 1.5);
		transform: scale3d(1.5, 1.5, 1.5);
	}
	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(1.5, 1.5, 1.5);
		transform: scale3d(1.5, 1.5, 1.5);
	}
	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.scaleIn {
	-webkit-animation-name: scaleIn;
	animation-name: scaleIn;
}

/* Rotation Animation */
@-webkit-keyframes rotateAnimation {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotateAnimation {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.rotate-animation {
	-webkit-animation: rotateAnimation 20s linear infinite;
	animation: rotateAnimation 20s linear infinite;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.rotate-animation:hover {
	opacity: 1;
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

/* WOW.js Animation Classes */
.wow {
	visibility: hidden;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.wow.animated {
	visibility: visible;
}

/* ===========================
   TECH STACK CAROUSEL STYLES
   =========================== */

.tech-stack-carousel {
	max-width: 1200px;
	margin: 0 auto;
	overflow: hidden;
}

.tech-category {
	margin-bottom: 60px;
}

.tech-category:last-child {
	margin-bottom: 0;
}

.category-header h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--accent);
	position: relative;
	display: inline-block;
}

.category-header h3::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--accent);
	transition: width 0.3s ease;
}

.category-header:hover h3::after {
	width: 100%;
}

/* Carousel Container */
.tech-carousel-container {
	width: 100%;
	overflow: hidden;
	margin-top: 30px;
	padding: 20px 0;
	position: relative;
	mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
	-webkit-mask: linear-gradient(
		90deg,
		transparent,
		#000 10%,
		#000 90%,
		transparent
	);
}

/* Carousel Track */
.tech-carousel-track {
	display: flex;
	align-items: center;
	gap: 20px;
	animation-duration: 30s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	width: fit-content;
}

/* Animation for moving right */
.tech-carousel-track.move-right {
	animation-name: slideRight;
}

/* Animation for moving left */
.tech-carousel-track.move-left {
	animation-name: slideLeft;
}

/* Pause animation on hover */
.tech-carousel-container:hover .tech-carousel-track {
	animation-play-state: paused;
}

/* Keyframes for right movement */
@keyframes slideRight {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* Keyframes for left movement */
@keyframes slideLeft {
	0% {
		transform: translateX(-50%);
	}
	100% {
		transform: translateX(0);
	}
}

/* Tech Item Styles */
.tech-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 25px 15px;
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #f0f0f0;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: pointer;
	text-align: center;
	min-height: 120px;
	min-width: 150px;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
	flex-shrink: 0;
	position: relative;
}

.tech-item:hover {
	transform: scale(1.02);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
	border-color: var(--accent);
	background: #fafafa;
}

.tech-item:hover .tech-icon {
	transform: scale(1.05);
	filter: brightness(1.1) saturate(1.2);
}

.tech-icon {
	font-size: 2.5rem;
	color: #666; /* Default fallback color */
	margin-bottom: 12px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tech-item span {
	font-size: 0.95rem;
	font-weight: 500;
	color: #1a1a1a;
	transition: color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tech-item:hover span {
	color: var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {
	.tech-carousel-track {
		gap: 15px;
		animation-duration: 20s;
	}

	.tech-item {
		padding: 20px 10px;
		min-height: 100px;
		min-width: 120px;
	}

	.tech-icon {
		font-size: 2rem;
		margin-bottom: 10px;
	}

	.tech-item span {
		font-size: 0.85rem;
	}
}

@media (max-width: 480px) {
	.tech-carousel-track {
		animation-duration: 15s;
	}

	.tech-item {
		min-width: 100px;
		padding: 15px 8px;
	}

	.tech-icon {
		font-size: 1.8rem;
	}
}

@media (max-width: 480px) {
	.tech-grid-minimal {
		grid-template-columns: repeat(3, 1fr);
		gap: 12px;
	}

	.tech-item {
		padding: 15px 8px;
		min-height: 90px;
	}

	.tech-icon {
		font-size: 1.8rem;
		margin-bottom: 8px;
	}

	.tech-item span {
		font-size: 0.8rem;
	}
}

/* Animated Stars */
.stars {
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(
			2px 2px at 20px 30px,
			#ffffff,
			transparent
		),
		radial-gradient(
			2px 2px at 40px 70px,
			rgba(255, 255, 255, 0.8),
			transparent
		),
		radial-gradient(1px 1px at 90px 40px, #ffffff, transparent),
		radial-gradient(
			1px 1px at 130px 80px,
			rgba(255, 255, 255, 0.6),
			transparent
		),
		radial-gradient(2px 2px at 160px 30px, #ffffff, transparent);
	background-repeat: repeat;
	background-size: 200px 100px;
	animation: twinkle 4s infinite ease-in-out alternate;
	opacity: 0.8;
}

@keyframes twinkle {
	0% {
		opacity: 0.6;
	}
	100% {
		opacity: 1;
	}
}

/* Nebula Effects */
.nebula {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.3;
	animation: nebulaPulse 8s infinite ease-in-out;
}

.nebula-1 {
	width: 300px;
	height: 300px;
	background: radial-gradient(
		circle,
		rgba(138, 43, 226, 0.4) 0%,
		transparent 70%
	);
	top: 10%;
	left: 10%;
	animation-delay: 0s;
}

.nebula-2 {
	width: 250px;
	height: 250px;
	background: radial-gradient(
		circle,
		rgba(30, 144, 255, 0.3) 0%,
		transparent 70%
	);
	top: 60%;
	right: 15%;
	animation-delay: 2s;
}

.nebula-3 {
	width: 200px;
	height: 200px;
	background: radial-gradient(
		circle,
		rgba(255, 20, 147, 0.3) 0%,
		transparent 70%
	);
	bottom: 20%;
	left: 30%;
	animation-delay: 4s;
}

@keyframes nebulaPulse {
	0%,
	100% {
		transform: scale(1) rotate(0deg);
		opacity: 0.3;
	}
	50% {
		transform: scale(1.2) rotate(180deg);
		opacity: 0.5;
	}
}

/* Connection Lines */
.connection-lines {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
	pointer-events: none;
}

/* Tech Constellations */
.tech-constellation {
	position: absolute;
	width: 450px;
	height: 450px;
	transition: all 0.6s ease;
	transform-style: preserve-3d;
}

.tech-constellation[data-category="frontend"] {
	top: 50px;
	left: 100px;
	transform: rotateX(10deg) rotateY(-10deg);
}

.tech-constellation[data-category="backend"] {
	top: 50px;
	right: 100px;
	transform: rotateX(10deg) rotateY(10deg);
}

.tech-constellation[data-category="cloud"] {
	bottom: 100px;
	left: 100px;
	transform: rotateX(-10deg) rotateY(-10deg);
}

.tech-constellation[data-category="mobile"] {
	bottom: 100px;
	right: 100px;
	transform: rotateX(-10deg) rotateY(10deg);
}

/* Constellation Centers */
.constellation-center {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
}

.center-core {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	position: relative;
	backdrop-filter: blur(20px);
	border: 2px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 0 50px rgba(232, 232, 232, 0.3),
		inset 0 0 30px rgba(255, 255, 255, 0.1);
	animation: coreRotate 20s infinite linear;
}

.frontend-core {
	background: radial-gradient(
		circle,
		rgba(97, 218, 251, 0.3) 0%,
		rgba(97, 218, 251, 0.1) 70%,
		transparent 100%
	);
}

.backend-core {
	background: radial-gradient(
		circle,
		rgba(51, 153, 51, 0.3) 0%,
		rgba(51, 153, 51, 0.1) 70%,
		transparent 100%
	);
}

.cloud-core {
	background: radial-gradient(
		circle,
		rgba(255, 153, 0, 0.3) 0%,
		rgba(255, 153, 0, 0.1) 70%,
		transparent 100%
	);
}

.mobile-core {
	background: radial-gradient(
		circle,
		rgba(2, 86, 155, 0.3) 0%,
		rgba(2, 86, 155, 0.1) 70%,
		transparent 100%
	);
}

.core-pulse {
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	border-radius: 50%;
	border: 2px solid rgba(232, 232, 232, 0.4);
	animation: pulse 3s infinite ease-in-out;
}

@keyframes coreRotate {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.2);
		opacity: 0.3;
	}
}

/* Orbits */
.orbit {
	position: absolute;
	top: 50%;
	left: 50%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	animation: orbitRotate 30s infinite linear;
}

.orbit-1 {
	width: 180px;
	height: 180px;
	animation-duration: 25s;
}

.orbit-2 {
	width: 220px;
	height: 220px;
	animation-duration: 30s;
	animation-direction: reverse;
}

.orbit-3 {
	width: 260px;
	height: 260px;
	animation-duration: 35s;
}

.orbit-4 {
	width: 300px;
	height: 300px;
	animation-duration: 40s;
	animation-direction: reverse;
}

.orbit-5 {
	width: 340px;
	height: 340px;
	animation-duration: 45s;
}

.orbit-6 {
	width: 380px;
	height: 380px;
	animation-duration: 50s;
	animation-direction: reverse;
}

@keyframes orbitRotate {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

/* Tech Planets */
.tech-planet {
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 60px;
	cursor: pointer;
	transition: all 0.4s ease;
	animation: planetCounter 30s infinite linear;
}

.orbit-1 .tech-planet {
	animation-duration: 25s;
}
.orbit-2 .tech-planet {
	animation-duration: 30s;
	animation-direction: reverse;
}
.orbit-3 .tech-planet {
	animation-duration: 35s;
}
.orbit-4 .tech-planet {
	animation-duration: 40s;
	animation-direction: reverse;
}
.orbit-5 .tech-planet {
	animation-duration: 45s;
}
.orbit-6 .tech-planet {
	animation-duration: 50s;
	animation-direction: reverse;
}

@keyframes planetCounter {
	0% {
		transform: translateX(-50%) rotate(0deg);
	}
	100% {
		transform: translateX(-50%) rotate(-360deg);
	}
}

.tech-planet img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.3);
	transition: all 0.4s ease;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.tech-planet:hover {
	transform: translateX(-50%) scale(1.3);
	z-index: 100;
}

.tech-planet:hover img {
	border-color: var(--accent);
	box-shadow: 0 0 30px rgba(232, 232, 232, 0.5);
}

/* Planet Glow */
.planet-glow {
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.4s ease;
	animation: planetGlow 3s infinite ease-in-out;
}

.tech-planet:hover .planet-glow {
	opacity: 0.3;
}

@keyframes planetGlow {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.1;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.3;
	}
}

/* Planet Info */
.planet-info {
	position: absolute;
	top: 80px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(0, 0, 0, 0.9);
	color: #ffffff;
	padding: 10px 15px;
	border-radius: 10px;
	text-align: center;
	opacity: 0;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	white-space: nowrap;
	z-index: 1000;
}

.tech-planet:hover .planet-info {
	opacity: 1;
	transform: translateX(-50%) translateY(-10px);
}

.planet-info h4 {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 5px 0;
	color: var(--accent);
}

.planet-info p {
	font-size: 12px;
	margin: 0;
	opacity: 0.9;
}

/* Universe Stats */
.universe-stats {
	margin-top: 80px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
	max-width: 600px;
	margin: 0 auto;
}

.stat-item {
	text-align: center;
	color: #ffffff;
}

.stat-number {
	font-size: 3.5rem;
	font-weight: 300;
	color: var(--accent);
	margin-bottom: 10px;
	text-shadow: 0 0 20px rgba(232, 232, 232, 0.3);
}

.stat-label {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	opacity: 0.8;
}

/* Service Modal Styles */
.service-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	border-radius: 20px;
	max-width: 900px;
	width: 90%;
	max-height: 85vh;
	overflow-y: auto;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
	animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translate(-50%, -60%) scale(0.9);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
	}
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 35px 35px 25px;
	border-bottom: 2px solid #f0f0f0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-radius: 20px 20px 0 0;
}

.modal-header h2 {
	margin: 0;
	font-size: 2.2rem;
	font-weight: 700;
	color: #1a1a1a;
	background: linear-gradient(135deg, var(--accent), #1976d2);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.modal-close {
	background: rgba(0, 0, 0, 0.1);
	border: none;
	font-size: 1.8rem;
	cursor: pointer;
	color: #666;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	font-weight: 300;
}

.modal-close:hover {
	background: var(--accent);
	color: white;
	transform: scale(1.1);
}

.modal-body {
	padding: 35px;
}

.service-detail-section {
	margin-bottom: 40px;
	padding-bottom: 25px;
	border-bottom: 1px solid #f0f0f0;
}

.service-detail-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.service-detail-section h3 {
	font-size: 1.6rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.service-detail-section h3 i {
	color: var(--accent);
	font-size: 1.3rem;
	background: rgba(232, 232, 232, 0.1);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.service-detail-section p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #555;
	margin-bottom: 20px;
	font-weight: 400;
}

.service-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
	margin: 25px 0;
}

.feature-item {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	padding: 25px;
	border-radius: 15px;
	border-left: 5px solid var(--accent);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.feature-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-item h4 {
	font-size: 1.2rem;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 12px;
}

.feature-item p {
	font-size: 0.95rem;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

.service-process {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin: 25px 0;
}

.process-step {
	background: linear-gradient(135deg, var(--accent), #1976d2);
	color: white;
	padding: 25px 20px;
	border-radius: 15px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.process-step::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.1),
		rgba(255, 255, 255, 0.05)
	);
	z-index: 1;
}

.process-step > * {
	position: relative;
	z-index: 2;
}

.process-step:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(232, 232, 232, 0.3);
}

.process-step .step-number {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 12px;
	display: block;
	opacity: 0.9;
}

.process-step h4 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.process-step p {
	font-size: 0.95rem;
	margin: 0;
	opacity: 0.9;
	line-height: 1.5;
}

.service-technologies {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 25px 0;
	justify-content: flex-start;
}

.tech-badge {
	background: linear-gradient(135deg, var(--accent), #1976d2);
	color: white;
	padding: 10px 18px;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 0 3px 10px rgba(232, 232, 232, 0.2);
}

.tech-badge:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(232, 232, 232, 0.3);
}

.service-cta {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 30px;
	border-radius: 20px;
	text-align: center;
	margin-top: 40px;
	border: 2px solid #e9ecef;
}

.service-cta h3 {
	font-size: 1.4rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 18px;
	display: block;
}

.service-cta h3 i {
	display: none;
}

.service-cta p {
	font-size: 1.05rem;
	color: #555;
	margin-bottom: 25px;
	line-height: 1.6;
}

.cta-button {
	background: linear-gradient(135deg, var(--accent), #1976d2);
	color: white;
	padding: 15px 35px;
	border: none;
	border-radius: 30px;
	font-size: 1.05rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	box-shadow: 0 5px 15px rgba(232, 232, 232, 0.3);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(232, 232, 232, 0.4);
	color: white;
	text-decoration: none;
}

/* Modal Responsive Design */
@media (max-width: 768px) {
	.modal-content {
		width: 95%;
		max-height: 90vh;
		margin: 20px;
	}

	.modal-header {
		padding: 25px 25px 20px;
	}

	.modal-header h2 {
		font-size: 1.6rem;
	}

	.modal-close {
		width: 40px;
		height: 40px;
		font-size: 1.5rem;
	}

	.modal-body {
		padding: 25px;
	}

	/* Pagination Mobile Styles */
	.mil-pagination {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}

	.mil-pagination-nav {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		width: 100%;
	}

	.mil-pagination-btn {
		padding: 15px 25px;
		font-size: 16px;
		border-radius: 30px;
	}

	.mil-pagination-text {
		font-size: 16px;
	}

	.service-detail-section {
		margin-bottom: 30px;
		padding-bottom: 20px;
	}

	.service-detail-section h3 {
		font-size: 1.3rem;
		gap: 10px;
	}

	.service-detail-section h3 i {
		width: 35px;
		height: 35px;
		font-size: 1.1rem;
	}

	.service-features {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.feature-item {
		padding: 20px;
	}

	.service-process {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.process-step {
		padding: 20px 15px;
	}

	.process-step .step-number {
		font-size: 2rem;
	}

	.service-technologies {
		justify-content: center;
		gap: 10px;
	}

	.tech-badge {
		padding: 8px 14px;
		font-size: 0.85rem;
	}

	.service-cta {
		padding: 25px 20px;
		margin-top: 30px;
	}

	.service-cta h3 {
		font-size: 1.2rem;
	}

	.service-cta p {
		font-size: 1rem;
	}

	.cta-button {
		padding: 12px 25px;
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.modal-content {
		width: 98%;
		max-height: 95vh;
	}

	.modal-header {
		padding: 20px;
	}

	.modal-header h2 {
		font-size: 1.4rem;
	}

	.modal-body {
		padding: 20px;
	}

	.service-detail-section h3 {
		font-size: 1.2rem;
	}

	.feature-item {
		padding: 18px;
	}

	.service-cta {
		padding: 20px 15px;
	}
}

/* About Page Custom Styles */

/* Banner Stats Mini */
.mil-about-stats-mini {
	margin: 0 auto;
	max-width: 500px;
}

.mil-stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	text-align: center;
}

.mil-stat-item .mil-counter-number {
	font-size: 2.5rem;
	font-weight: 700;
	display: block;
	margin-bottom: 5px;
}

.mil-stat-item p {
	font-size: 0.9rem;
	margin: 0;
	opacity: 0.8;
}

/* Mission Vision Cards */
.mil-mission-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
	backdrop-filter: blur(10px);
	padding: 30px 25px;
	border-radius: 20px;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	overflow: hidden;
	height: 100%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.mil-mission-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, var(--accent), rgba(var(--accent-rgb), 0.8));
	transition: all 0.3s ease;
	z-index: 1;
}

.mil-mission-card:hover::before {
	width: 100%;
	opacity: 0.03;
}

.mil-mission-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
	border-color: var(--accent);
}

.mil-mission-card > * {
	position: relative;
	z-index: 2;
}

.mil-mission-card .mil-icon {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.mil-mission-card h4 {
	margin-bottom: 15px;
	font-size: 1.4rem;
}

.mil-mission-card p {
	margin-bottom: 0;
	line-height: 1.6;
}

/* Value Cards Enhanced */
.mil-value-card {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 25px 20px;
	border-radius: 20px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	height: auto;
	min-height: 220px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	margin-bottom: 20px;
}

.mil-value-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), rgba(var(--accent-rgb), 0.6));
	transform: scaleX(0);
	transform-origin: left;
	transition: all 0.3s ease;
	z-index: 1;
}

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

.mil-value-card:hover {
	transform: translateY(-6px);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
	border-color: rgba(var(--accent-rgb), 0.3);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.mil-value-card > * {
	position: relative;
	z-index: 2;
}

.mil-icon-wrapper {
	position: relative;
	margin-bottom: 20px;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mil-icon-wrapper::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.1), rgba(var(--accent-rgb), 0.05));
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease;
}

.mil-value-card:hover .mil-icon-wrapper::before {
	transform: translate(-50%, -50%) scale(1.2);
	background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.2), rgba(var(--accent-rgb), 0.1));
}

.mil-value-card h4 {
	margin-bottom: 15px;
	font-size: 1.2rem;
}

.mil-value-card p {
	margin-bottom: 0;
	font-size: 0.9rem;
	line-height: 1.5;
	text-align: center;
}

.mil-icon-xl {
	font-size: 2.5rem;
	color: var(--accent);
	position: relative;
	z-index: 2;
}

/* Timeline Styles */
.mil-timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.mil-timeline::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(
		to bottom,
		var(--accent),
		rgba(var(--accent-rgb), 0.3)
	);
	transform: translateX(-50%);
}

.mil-timeline-item {
	display: flex;
	align-items: center;
	margin-bottom: 60px;
	position: relative;
}

.mil-timeline-item:nth-child(odd) {
	flex-direction: row;
}

.mil-timeline-item:nth-child(even) {
	flex-direction: row-reverse;
}

.mil-timeline-marker {
	width: 120px;
	height: 120px;
	background: var(--accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
	flex-shrink: 0;
}

.mil-timeline-marker::before {
	content: "";
	position: absolute;
	width: 140px;
	height: 140px;
	background: rgba(var(--accent-rgb), 0.2);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(1.1);
		opacity: 0;
	}
}

.mil-year {
	font-size: 1.2rem;
	font-weight: 700;
	color: white;
}

.mil-timeline-content {
	flex: 1;
	padding: 0 40px;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	padding: 30px;
	margin: 0 30px;
	transition: all 0.4s ease;
}

.mil-timeline-content:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Team Cards Modern */
.mil-team-card-modern {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
}

.mil-team-card-modern:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mil-team-image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4/3;
}

.mil-team-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.mil-team-card-modern:hover .mil-team-image img {
	transform: scale(1.1);
}

.mil-team-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.4s ease;
}

.mil-team-card-modern:hover .mil-team-overlay {
	opacity: 1;
}

.mil-team-info {
	padding: 30px;
	text-align: center;
}

.mil-team-info h4 {
	font-size: 1.3rem;
	font-weight: 600;
}

.mil-team-info .mil-accent {
	font-size: 0.9rem;
	font-weight: 500;
}

/* Counter Cards Enhanced */
.mil-counter-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	padding: 40px 30px;
	border-radius: 20px;
	transition: all 0.4s ease;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.mil-counter-card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--accent);
}

.mil-counter-icon {
	width: 60px;
	height: 60px;
	background: rgba(var(--accent-rgb), 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	transition: all 0.4s ease;
}

.mil-counter-icon i {
	font-size: 1.5rem;
}

.mil-counter-card:hover .mil-counter-icon {
	transform: scale(1.1);
	background: rgba(var(--accent-rgb), 0.3);
}

.mil-counter-description {
	margin-top: 15px;
	opacity: 0;
	transition: all 0.4s ease;
}

.mil-counter-card:hover .mil-counter-description {
	opacity: 1;
}

/* CTA Section Enhanced */
.mil-buttons-group {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.mil-contact-info {
	margin-top: 60px;
}

.mil-contact-info .mil-contact-item {
	text-align: center;
	padding: 20px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 15px;
	transition: all 0.4s ease;
}

.mil-contact-info .mil-contact-item:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mil-contact-info .mil-contact-item i {
	font-size: 1.5rem;
	display: block;
}

/* New Contact Cards Design */
.mil-contact-cards {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: nowrap;
	max-width: 900px;
	margin: 0 auto;
}

.mil-contact-card {
	flex: 1;
	min-width: 280px;
	max-width: 300px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	padding: 30px 20px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	height: auto;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.mil-contact-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, var(--accent), rgba(var(--accent-rgb), 0.8));
	opacity: 0;
	transition: all 0.3s ease;
	z-index: 1;
}

.mil-contact-card:hover::before {
	opacity: 0.1;
}

.mil-contact-card:hover {
	transform: translateY(-8px);
	border-color: rgba(var(--accent-rgb), 0.5);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mil-contact-card-inner {
	position: relative;
	z-index: 2;
	text-align: center;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.mil-contact-card .mil-contact-icon {
	width: 60px;
	height: 60px;
	background: var(--accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	transition: all 0.3s ease;
	position: relative;
	box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.3);
}

.mil-contact-card .mil-contact-icon::before {
	content: "";
	position: absolute;
	width: 80px;
	height: 80px;
	background: rgba(var(--accent-rgb), 0.2);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.3s ease;
}

.mil-contact-card:hover .mil-contact-icon::before {
	transform: scale(1);
}

.mil-contact-card .mil-contact-icon i {
	font-size: 1.5rem;
	color: white;
	z-index: 2;
	position: relative;
}

.mil-contact-card:hover .mil-contact-icon {
	transform: scale(1.1);
	box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.4);
}

.mil-contact-details h5 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 10px;
	color: var(--text-dark);
	line-height: 1.3;
}

.mil-contact-link {
	color: var(--accent);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	line-height: 1.4;
	display: block;
	text-transform: none;
}

.mil-contact-link:hover {
	color: #000000;
	text-decoration: underline;
}

.mil-contact-text {
	color: var(--salt-box);
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.4;
}

.mil-contact-card:hover .mil-contact-details h5 {
	color: #000000;
}

.mil-contact-card:hover .mil-contact-text {
	color: #000000;
}

/* Responsive Design for Contact Cards */
@media (max-width: 992px) {
	.mil-contact-cards {
		flex-wrap: wrap;
		gap: 15px;
	}

	.mil-contact-card {
		min-width: 250px;
		max-width: 280px;
	}
}

@media (max-width: 768px) {
	.mil-contact-cards {
		flex-direction: column;
		gap: 15px;
	}

	.mil-contact-card {
		min-width: auto;
		max-width: none;
		padding: 25px 20px;
	}

	.mil-contact-card .mil-contact-icon {
		width: 55px;
		height: 55px;
		margin-bottom: 15px;
	}

	.mil-contact-card .mil-contact-icon::before {
		width: 70px;
		height: 70px;
	}

	.mil-contact-card .mil-contact-icon i {
		font-size: 1.3rem;
	}

	.mil-contact-details h5 {
		font-size: 1rem;
	}

	.mil-contact-link {
		font-size: 0.9rem;
	}
}

/* Responsive Design for Mission and Value Cards */
@media (max-width: 768px) {
	.mil-mission-card {
		padding: 25px 20px;
		margin-bottom: 20px;
	}

	.mil-value-card {
		padding: 20px 15px;
		min-height: 200px;
		margin-bottom: 15px;
	}

	.mil-icon-wrapper {
		width: 60px;
		height: 60px;
		margin-bottom: 15px;
	}

	.mil-icon-wrapper::before {
		width: 50px;
		height: 50px;
	}

	.mil-value-card h4 {
		font-size: 1.1rem;
		margin-bottom: 12px;
	}

	.mil-value-card p {
		font-size: 0.85rem;
	}
}

@media (max-width: 480px) {
	.mil-mission-card,
	.mil-value-card {
		padding: 20px 15px;
	}

	.mil-contact-card {
		padding: 20px 15px;
	}

	.mil-value-card {
		min-height: 180px;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.mil-stats-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.mil-timeline::before {
		left: 30px;
	}

	.mil-timeline-item {
		flex-direction: row !important;
		padding-left: 80px;
	}

	.mil-timeline-marker {
		position: absolute;
		left: 0;
		width: 60px;
		height: 60px;
	}

	.mil-timeline-marker::before {
		width: 80px;
		height: 80px;
	}

	.mil-timeline-content {
		margin: 0;
		padding: 20px;
	}

	.mil-buttons-group {
		flex-direction: column;
		align-items: center;
	}

	.mil-value-card,
	.mil-mission-card,
	.mil-counter-card {
		margin-bottom: 30px;
	}
}

@media (max-width: 480px) {
	.mil-about-stats-mini .mil-stats-grid {
		gap: 15px;
	}

	.mil-stat-item .mil-counter-number {
		font-size: 2rem;
	}

	.mil-timeline-item {
		padding-left: 60px;
		margin-bottom: 40px;
	}

	.mil-timeline-marker {
		width: 40px;
		height: 40px;
	}

	.mil-timeline-marker::before {
		width: 60px;
		height: 60px;
	}

	.mil-year {
		font-size: 0.9rem;
	}
}

/* Hero Banner Responsive Fixes */
.mil-hero-container {
	align-items: flex-start;
	padding-top: 4rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.mil-hero-content {
	margin-top: 0;
	padding-top: 2.5rem;
	padding-bottom: 0;
	width: 100%;
}

.mil-hero-text-row {
	margin-top: 1.5rem;
}

.mil-hero-description {
	font-size: 1.3rem;
	line-height: 2.0;
	margin-top: 0.6rem;
}

.mil-hero-buttons {
	margin-top: 2rem;
	display: flex;
	align-items: center;
	gap: 2rem;
	position: relative;
	z-index: 20;
}

.mil-hero-buttons a {
	display: inline-flex;
	z-index: 10;
}

.mil-hero-link {
	color: #C0C0C0 !important;
}

.mil-hero-circle {
	z-index: 1;
}

/* Mobile Responsive Adjustments */
@media screen and (max-width: 1200px) {
	.mil-hero-container {
		padding-top: 3rem;
	}
	
	.mil-hero-content {
		padding-top: 2rem;
	}
}

@media screen and (max-width: 992px) {
	.mil-hero-container {
		padding-top: 2rem;
	}
	
	.mil-hero-content {
		padding-top: 1.5rem;
		text-align: center;
	}
	
	.mil-hero-description {
		font-size: 1.1rem;
		line-height: 1.7;
	}
	
	.mil-hero-buttons {
		justify-content: center;
		gap: 1.5rem;
		margin-top: 1.5rem;
	}
}

@media screen and (max-width: 768px) {
	.mil-hero-container {
		padding-top: 1.5rem;
	}
	
	.mil-hero-content {
		padding-top: 1rem;
	}
	
	.mil-hero-text-row {
		margin-top: 1rem;
	}
	
	.mil-hero-description {
		font-size: 1rem;
		line-height: 1.6;
		margin-top: 0.5rem;
	}
	
	.mil-hero-buttons {
		flex-direction: column;
		gap: 1rem;
		margin-top: 1.5rem;
	}
	
	.mil-hero-buttons a {
		width: 100%;
		justify-content: center;
		text-align: center;
	}
}

@media screen and (max-width: 576px) {
	.mil-hero-container {
		padding-top: 1rem;
	}
	
	.mil-hero-content {
		padding-top: 0.5rem;
	}
	
	.mil-hero-description {
		font-size: 0.95rem;
		line-height: 1.5;
	}
}

/* iOS/Mobile Scroll Fixes */
.no-scroll-animation * {
	animation-duration: 0s !important;
	animation-delay: 0s !important;
	transition-duration: 0s !important;
	transition-delay: 0s !important;
}

/* Prevent iOS scroll bounce issues */
@supports (-webkit-overflow-scrolling: touch) {
	html, body {
		-webkit-overflow-scrolling: touch;
		overflow-scrolling: touch;
	}
	
	/* Fix iOS viewport issues */
	body {
		position: relative;
		overflow-x: hidden;
	}
	
	/* Prevent zoom on input focus for iOS */
	input, select, textarea {
		font-size: 16px !important;
	}
}

/* iPhone specific fixes */
@media only screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
	html {
		-webkit-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
	}
	
	body {
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
	
	/* Re-enable text selection for content areas */
	p, h1, h2, h3, h4, h5, h6, span {
		-webkit-user-select: text;
		-khtml-user-select: text;
		-moz-user-select: text;
		-ms-user-select: text;
		user-select: text;
	}
}

/* Conditional zoom adjustment - only for 100% and 125% users */
/* This will be handled by JavaScript to detect current zoom */

/* Logo scroll animation */
body.scrolling .logo-text {
	transform: translateX(-41px) !important;
	opacity: 0 !important;
}
body.scrolling .logo-image {
	transform: scale(1.02) !important;
}

/* Mobile logo switching and clean styling - MOBILE VIEW ONLY */
@media screen and (max-width: 768px) {
	.logo-desktop { 
		display: none !important; 
	}
	.logo-mobile { 
		display: block !important; 
		width: 34px !important; 
	}
	.mil-logo-container {
		background: none !important;
		padding: 0 !important;
		border: none !important;
		box-shadow: none !important;
		backdrop-filter: none !important;
	}
	.logo-text {
		color: inherit !important;
		text-shadow: none !important;
	}
	body.scrolling .logo-text { 
		transform: translateX(-36px) !important; 
	}
}

@media screen and (max-width: 480px) {
	.logo-mobile { 
		width: 32px !important; 
	}
	body.scrolling .logo-text { 
		transform: translateX(-34px) !important; 
	}
}
