/* -------------------------------------------

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
    - price
    - 404
    - images
    - page transitions


--------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500&display=swap");
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/all.min.css);
/* -------------------------------------------

main

------------------------------------------- */

/* ========================================
   THEME SYSTEM - CSS Custom Properties
   ======================================== */
:root {
  /* Light theme (default) */
  --bg-primary: #ffffff;
  --bg-secondary: #fafafa;
  --bg-tertiary: #f4f4f6;
  --text-primary: #111111;
  --text-secondary: #555555;
  --text-muted: #888888;
  --accent: #000000;
  --accent-rgb: 0, 0, 0;
  --border-color: rgba(0, 0, 0, 0.08);
  --card-bg: #ffffff;
  --card-shadow: none;
  --overlay-bg: rgba(255, 255, 255, 0.95);
  --soft-bg: #fafafa;
  --invert: 0%;
  --header-bg: rgba(255, 255, 255, 0.95);
  --header-border: rgba(0, 0, 0, 0.06);
  --header-text: #000000;
  --menu-btn-color: #000000;
  --scrollbar-bg: rgba(0, 0, 0, 0.05);
  --scrollbar-thumb: rgba(0, 0, 0, 0.15);
  --input-bg: #ffffff;
  --input-border: rgba(0, 0, 0, 0.15);
  --footer-bg: #ffffff;
  --modal-bg: #ffffff;
  --dot-color-light-section: 0, 0, 0;
  --dot-color-dark-section: 0, 0, 0;
  --video-overlay: linear-gradient(to bottom, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.9) 100%);
  --grid-border: rgba(0, 0, 0, 0.06);
}

html.mil-dark-theme {
  /* Dark theme overrides matched to light theme to enforce clean white UI */
  --bg-primary: #ffffff;
  --bg-secondary: #fafafa;
  --bg-tertiary: #f4f4f6;
  --text-primary: #111111;
  --text-secondary: #555555;
  --text-muted: #888888;
  --accent: #000000;
  --accent-rgb: 0, 0, 0;
  --border-color: rgba(0, 0, 0, 0.08);
  --card-bg: #ffffff;
  --card-shadow: none;
  --overlay-bg: rgba(255, 255, 255, 0.95);
  --soft-bg: #fafafa;
  --invert: 0%;
  --header-bg: rgba(255, 255, 255, 0.95);
  --header-border: rgba(0, 0, 0, 0.06);
  --header-text: #000000;
  --menu-btn-color: #000000;
  --scrollbar-bg: rgba(0, 0, 0, 0.05);
  --scrollbar-thumb: rgba(0, 0, 0, 0.15);
  --input-bg: #ffffff;
  --input-border: rgba(0, 0, 0, 0.15);
  --footer-bg: #ffffff;
  --modal-bg: #ffffff;
  --dot-color-light-section: 0, 0, 0;
  --dot-color-dark-section: 0, 0, 0;
  --video-overlay: linear-gradient(to bottom, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.9) 100%);
  --grid-border: rgba(0, 0, 0, 0.06);
}

/* ========================================
   THEME APPLICATION OVERRIDES
   ======================================== */

/* Body & Wrapper */
html.mil-dark-theme body {
  background-color: var(--bg-primary);
  color: var(--text-secondary);
}

html.mil-dark-theme .mil-wrapper {
  background-color: var(--bg-primary);
}

/* Typography - override hardcoded black text */
html.mil-dark-theme h1,
html.mil-dark-theme h2,
html.mil-dark-theme h3,
html.mil-dark-theme h4,
html.mil-dark-theme h5,
html.mil-dark-theme h6 {
  color: var(--text-primary);
}

html.mil-dark-theme p {
  color: var(--text-secondary);
}

html.mil-dark-theme a {
  color: inherit;
}

html.mil-dark-theme .mil-dark {
  color: var(--text-primary);
}

html.mil-dark-theme .mil-suptitle {
  color: var(--text-secondary);
}

/* Accent color in dark */
html.mil-dark-theme .mil-accent {
  color: var(--accent);
}

/* Backgrounds */
html.mil-dark-theme .mil-soft-bg {
  background-color: var(--soft-bg);
}

html.mil-dark-theme #about {
  background-color: var(--bg-primary);
}

html.mil-dark-theme #portfolio {
  background-color: var(--bg-primary);
}

/* Section text overrides in dark mode */
html.mil-dark-theme #about h2,
html.mil-dark-theme #about p,
html.mil-dark-theme #about .mil-about-lead {
  color: var(--text-primary) !important;
}

html.mil-dark-theme #portfolio h2 {
  color: var(--text-primary);
}

/* Frame / Header */
html.mil-dark-theme .mil-frame-top .mil-logo {
  color: var(--header-text);
}

html.mil-dark-theme .mil-menu-btn span,
html.mil-dark-theme .mil-menu-btn span:after,
html.mil-dark-theme .mil-menu-btn span:before {
  background: var(--menu-btn-color) !important;
}

/* Progress bar */
html.mil-dark-theme .mil-progress-track {
  background-color: var(--scrollbar-bg);
}

/* Current page text */
html.mil-dark-theme .mil-frame .mil-frame-bottom .mil-current-page {
  color: var(--text-primary);
}

html.mil-dark-theme .mil-back-to-top a {
  color: var(--text-primary);
}

/* Cards */
html.mil-dark-theme .mil-portfolio-card .mil-descr h4 {
  color: var(--text-primary);
}

html.mil-dark-theme .mil-portfolio-card .mil-descr p,
html.mil-dark-theme .mil-portfolio-card .mil-descr .mil-upper {
  color: var(--text-secondary);
}

html.mil-dark-theme .mil-portfolio-card .mil-cover-frame {
  background-color: var(--bg-tertiary);
}

/* Filter buttons in dark */
html.mil-dark-theme .mil-filter-btn {
  border-color: var(--border-color);
  color: var(--text-primary);
}

/* About tabs in dark */
html.mil-dark-theme .mil-tab-btn {
  color: var(--text-secondary);
  border-color: var(--border-color);
}

html.mil-dark-theme .mil-tab-btn.active {
  color: #fff;
}

html.mil-dark-theme .mil-tab-content,
html.mil-dark-theme .mil-tab-pane p {
  color: var(--text-secondary);
}

/* Counters / metrics text in dark */
html.mil-dark-theme .mil-counter-card h2,
html.mil-dark-theme .mil-counter-card h4,
html.mil-dark-theme .mil-counter-card p {
  color: var(--text-primary);
}

/* Link colors */
html.mil-dark-theme .mil-link.mil-dark {
  color: var(--text-primary);
}

html.mil-dark-theme .mil-link.mil-dark svg path {
  fill: var(--text-primary);
}

/* Services section text in dark mode */
html.mil-dark-theme .mil-services-text h4,
html.mil-dark-theme .mil-services-text p {
  color: var(--text-primary);
}

/* Contact form in dark */
html.mil-dark-theme input,
html.mil-dark-theme textarea {
  background-color: var(--input-bg);
  border-color: var(--input-border);
  color: var(--text-primary);
}

html.mil-dark-theme input::-webkit-input-placeholder,
html.mil-dark-theme textarea::-webkit-input-placeholder {
  color: var(--text-muted);
}

/* Breadcrumbs in dark */
html.mil-dark-theme .mil-breadcrumbs li a {
  color: var(--text-secondary);
}

/* Cursor */
html.mil-dark-theme .mil-ball {
  background-color: #fff;
}

/* Blockquote */
html.mil-dark-theme blockquote {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  border-left-color: var(--accent);
}

/* Scrollbar */
html.mil-dark-theme ::-webkit-scrollbar-track {
  background: var(--scrollbar-bg);
}

html.mil-dark-theme ::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
}

/* Accordion */
html.mil-dark-theme .mil-accordion-menu {
  color: var(--text-primary);
}

html.mil-dark-theme .mil-accordion-content p {
  color: var(--text-secondary);
}

/* Social icons in dark */
html.mil-dark-theme .mil-social-icons a {
  color: var(--text-secondary);
}

html.mil-dark-theme .mil-social-icons a:hover {
  color: var(--accent);
}

/* Swap logos in dark theme */
html.mil-dark-theme .mil-frame .mil-logo-img-light {
  display: none !important;
}
html.mil-dark-theme .mil-frame .mil-logo-img-dark {
  display: inline-block !important;
}

/* Dark theme: remove backdrop-filter invert for dark-bg sections (they're already dark) */
html.mil-dark-theme .mil-dark-bg:before {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Dark theme: sections that were light now become dark bg */
html.mil-dark-theme section:not(.mil-dark-bg):not(.mil-banner) {
  background-color: var(--bg-primary);
}

/* Audio toggle in dark theme */
html.mil-dark-theme .mil-audio-toggle {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

html.mil-dark-theme .mil-audio-bars .bar {
  background-color: #fff;
}

/* Theme toggle button */
.mil-theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  pointer-events: all;
  z-index: 1000;
  color: #000;
  font-size: 16px;
}

.mil-theme-toggle:hover {
  background: rgba(18, 64, 178, 0.85) !important;
  border-color: rgba(18, 64, 178, 0.5) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* Theme toggle in dark contexts */
.mil-banner .mil-theme-toggle,
.mil-metrics-section .mil-theme-toggle,
.mil-dark-bg .mil-theme-toggle,
.mil-menu-frame .mil-theme-toggle,
.mil-frame .mil-frame-top .mil-theme-toggle {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

html.mil-dark-theme .mil-theme-toggle {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Smooth transition for theme changes */
html.mil-theme-transitioning,
html.mil-theme-transitioning *,
html.mil-theme-transitioning *:before,
html.mil-theme-transitioning *:after {
  transition: background-color 0.4s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* ========================================
   END THEME SYSTEM
   ======================================== */

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  line-height: 150%;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}
@media screen and (max-width: 768px) {
  html,
body {
    font-size: 15px;
  }
}

*::-moz-selection {
  color: inherit;
  background-color: transparent;
}

*::selection {
  color: inherit;
  background-color: transparent;
}

.mil-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  background-color: var(--bg-primary);
}

.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: "Poppins", sans-serif;
  color: rgb(0, 0, 0);
  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: 69px;
}
@media screen and (max-width: 1400px) {
  h1,
.mil-h1 {
    font-size: 59px;
  }
}
@media screen and (max-width: 1200px) {
  h1,
.mil-h1 {
    font-size: 58px;
  }
}
@media screen and (max-width: 992px) {
  h1,
.mil-h1 {
    font-size: 46px;
  }
}
@media screen and (max-width: 768px) {
  h1,
.mil-h1 {
    font-size: 28px;
  }
}

h2,
.mil-h2 {
  font-size: 40px;
  line-height: 120%;
}
@media screen and (max-width: 1200px) {
  h2,
.mil-h2 {
    font-size: 45px;
  }
}
@media screen and (max-width: 992px) {
  h2,
.mil-h2 {
    font-size: 35px;
  }
}
@media screen and (max-width: 768px) {
  h2,
.mil-h2 {
    font-size: 29px;
  }
}

h3,
.mil-h3 {
  font-size: 34px;
}
@media screen and (max-width: 1200px) {
  h3,
.mil-h3 {
    font-size: 31px;
  }
}
@media screen and (max-width: 992px) {
  h3,
.mil-h3 {
    font-size: 29px;
  }
}
@media screen and (max-width: 768px) {
  h3,
.mil-h3 {
    font-size: 24px;
  }
}

h4,
.mil-h4 {
  font-size: 22px;
}
@media screen and (max-width: 1200px) {
  h4,
.mil-h4 {
    font-size: 21px;
  }
}
@media screen and (max-width: 992px) {
  h4,
.mil-h4 {
    font-size: 19px;
  }
}
@media screen and (max-width: 768px) {
  h4,
.mil-h4 {
    font-size: 18px;
  }
}

h5,
.mil-h5 {
  font-size: 16px;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  h5,
.mil-h5 {
    font-size: 15px;
  }
}

h6,
.mil-h6 {
  font-size: 14px;
  line-height: 150%;
}
@media screen and (max-width: 1200px) {
  h6,
.mil-h6 {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  h6,
.mil-h6 {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  h6,
.mil-h6 {
    font-size: 17px;
  }
}

.mil-no-wrap {
  white-space: nowrap;
}

blockquote {
  padding: 60px;
  background-color: rgba(0, 0, 0, 0.05);
  font-size: 18px;
  color: rgb(0, 0, 0);
  font-style: italic;
  border-left: solid 4px rgb(18, 64, 178);
}
@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: rgb(18, 64, 178);
}

.mil-light {
  color: rgb(255, 255, 255) !important;
}
.mil-light a {
  color: rgb(255, 255, 255) !important;
}

.mil-muted {
  color: var(--text-primary);
}

.mil-dark {
  color: var(--text-primary);
}

.mil-light-soft {
  color: var(--text-secondary);
}

.mil-dark-soft {
  color: rgba(0, 0, 0, 0.5);
}

.mil-marker {
  background-color: rgb(18, 64, 178);
  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: rgb(255, 255, 255);
  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: rgb(0, 0, 0);
  opacity: 0.1;
}
@media screen and (max-width: 768px) {
  .mil-suptitle {
    margin-bottom: 60px;
  }
}

.mil-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.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(255, 255, 255, 0.1);
  -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: rgb(255, 255, 255);
}
.mil-link.mil-accent svg {
  background-color: rgba(255, 255, 255, 0.1);
  -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: rgb(18, 64, 178);
}
.mil-link.mil-dark svg {
  background-color: rgba(0, 0, 0, 0.1);
  -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: rgb(0, 0, 0);
}
.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: rgb(18, 64, 178);
  color: rgb(0, 0, 0);
  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: rgb(0, 0, 0);
  -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: rgb(18, 64, 178);
}
.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: rgb(18, 64, 178);
}
.mil-button.mil-icon-button-sm svg path {
  fill: rgb(0, 0, 0);
}
.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;
  }
}

/* -------------------------------------------

form

------------------------------------------- */
input,
textarea {
  position: relative;
  height: 70px;
  padding: 0 30px;
  width: 100%;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgb(0, 0, 0);
  border: none;
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
  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: rgba(0, 0, 0, 0.5);
}
input::-moz-placeholder, textarea::-moz-placeholder {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
}
input::placeholder,
textarea::placeholder {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
}

textarea {
  padding: 15px 30px;
  height: 300px;
}

/* -------------------------------------------

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(0, 0, 0, 0.1);
}
.mil-breadcrumbs li {
  list-style-type: none;
}
.mil-breadcrumbs li:after {
  content: "/";
  margin: 0 15px;
  color: rgb(0, 0, 0);
}
.mil-breadcrumbs li a {
  color: rgb(0, 0, 0);
  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: rgb(18, 64, 178);
}
.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(255, 255, 255, 0.1);
}
.mil-breadcrumbs.mil-light li:after {
  color: rgba(255, 255, 255, 0.9);
}
.mil-breadcrumbs.mil-light li a:hover {
  color: rgb(18, 64, 178) !important;
}
.mil-breadcrumbs.mil-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* -------------------------------------------

backgrounds

------------------------------------------- */
.mil-dark-bg {
  position: relative;
  background-color: var(--bg-primary);
  color: var(--text-secondary);
}
footer.mil-dark-bg {
  background-color: var(--footer-bg) !important;
  border-top: 1px solid var(--border-color);
}
.mil-dark-bg:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  pointer-events: none;
  z-index: 2;
  display: none !important;
}
.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: rgb(242, 242, 242);
}

/* -------------------------------------------

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: 120px;
  padding-bottom: 60px;
}
@media screen and (max-width: 992px) {
  .mil-p-120-60 {
    padding-top: 90px;
    padding-bottom: 30px;
  }
}

.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: rgb(0, 0, 0);
}
.mil-preloader p,
.mil-preloader .mil-muted,
.mil-preloader .mil-h3 {
  color: #ffffff !important;
}
.mil-preloader .mil-preloader-animation {
  opacity: 0;
  position: relative;
  height: 100vh;
  color: rgb(255, 255, 255);
}
.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: rgb(18, 64, 178);
}
.mil-preloader.mil-hidden {
  pointer-events: none;
}

/* -------------------------------------------

cursor

------------------------------------------- */
.mil-ball {
  width: 20px;
  height: 20px;
  position: fixed;
  z-index: 10;
  background-color: rgb(0, 0, 0);
  border-radius: 50%;
  pointer-events: none;
  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;
  opacity: 0.1;
}
.mil-ball .mil-icon-1 {
  position: absolute;
  width: 40px;
  height: 40px;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.mil-ball .mil-icon-1 svg {
  fill: rgba(255, 255, 255, 0.9);
}
.mil-ball .mil-more-text, .mil-ball .mil-choose-text {
  position: absolute;
  width: 100%;
  text-align: center;
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.mil-ball.mil-accent .mil-icon-1 svg {
  fill: rgb(0, 0, 0);
}
.mil-ball.mil-accent .mil-more-text, .mil-ball.mil-accent .mil-choose-text {
  color: rgb(0, 0, 0);
}
@media screen and (max-width: 1200px) {
  .mil-ball {
    display: 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: rgb(0, 0, 0);
}
.mil-progress-track .mil-progress {
  width: 4px;
  height: 0;
  background-color: rgb(18, 64, 178);
}
@media screen and (max-width: 992px) {
  .mil-progress-track {
    display: none;
  }
}

/* -------------------------------------------

frame

------------------------------------------- */
.mil-logo {
  font-size: 42px;
  font-weight: 500;
  line-height: 100%;
}
@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: rgb(255, 255, 255);
  }
  .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: rgb(255, 255, 255);
  }
}
.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: rgb(0, 0, 0);
  -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: rgb(0, 0, 0);
}

/* -------------------------------------------

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(--menu-btn-color);
  -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: rgb(0, 0, 0);
  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: rgb(255, 255, 255);
}
.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: rgb(255, 255, 255);
}
.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(255, 255, 255, 0.1);
  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: rgb(255, 255, 255);
}
.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: rgb(0, 0, 0);
}

.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 {
  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(255, 255, 255, 0.4);
  -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: rgb(255, 255, 255);
}
.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: rgb(18, 64, 178);
}
.mil-main-menu ul li.mil-active > a {
  color: rgb(18, 64, 178);
}
.mil-main-menu ul li.mil-active > a:hover {
  color: rgb(18, 64, 178) !important;
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
}
.mil-main-menu ul li.mil-has-children > a:hover {
  color: rgb(255, 255, 255);
  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: rgb(255, 255, 255);
  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%, rgb(18, 64, 178) 0%, rgba(18, 64, 178, 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: 90px;
  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;
}
.mil-circle-text .mil-ct-svg {
  -webkit-transform: scale(2);
          transform: scale(2);
  width: 140px;
  height: 140px;
}
.mil-circle-text .mil-ct-svg text {
  fill: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  font-size: 12px;
  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-circle-text .mil-button {
  position: absolute;
}
.mil-circle-text:hover svg text {
  fill: rgb(255, 255, 255);
}
@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: rgb(0, 0, 0);
}
.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: rgb(255, 255, 255);
}

/* -------------------------------------------

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 rgb(255, 255, 255);
}

.mil-position-2 {
  top: -60px;
  left: 15%;
}
.mil-position-2 .mil-pentagon div {
  border-top: 1px solid rgb(255, 255, 255);
}
.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 rgb(255, 255, 255);
}
.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 rgb(255, 255, 255);
}
.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 rgb(0, 0, 0);
}

.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: rgb(18, 64, 178);
  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;
 
  -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: rgb(18, 64, 178);
  -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 var(--grid-border);
}
.mil-services-grid .mil-services-grid-item {
  border-right: solid 1px var(--grid-border);
}
.mil-services-grid .mil-services-grid-item:first-child {
  border-left: solid 1px var(--grid-border);
}
@media screen and (max-width: 992px) {
  .mil-services-grid {
    padding-bottom: 90px;
  }
  .mil-services-grid .mil-services-grid-item {
    border-bottom: solid 1px var(--grid-border);
  }
  .mil-services-grid .mil-services-grid-item:nth-child(3) {
    border-left: solid 1px var(--grid-border);
  }
}
@media screen and (max-width: 768px) {
  .mil-services-grid {
    padding-bottom: 90px;
  }
  .mil-services-grid .mil-services-grid-item {
    border-left: solid 1px var(--grid-border);
    border-bottom: solid 1px var(--grid-border);
  }
}

.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;
  }
}
@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: rgb(18, 64, 178);
}
.mil-service-card-lg.mil-other-card:hover .mil-link svg {
  background-color: rgb(0, 0, 0);
}
.mil-service-card-lg.mil-other-card:hover .mil-link svg path {
  fill: rgb(18, 64, 178);
}
@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: rgb(18, 64, 178);
  -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: rgb(18, 64, 178);
}
.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: var(--text-primary);
  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: rgb(18, 64, 178);
}
.mil-social-icons.mil-dark li a {
  color: rgb(0, 0, 0);
}
.mil-social-icons.mil-dark li a:hover {
  color: rgb(18, 64, 178);
}

/* -------------------------------------------

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 rgb(18, 64, 178);
          box-shadow: inset 0 0 0 4px rgb(18, 64, 178);
}

.mil-quote-icon {
  display: block;
  margin: 0 auto;
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}
.mil-quote-icon path {
  fill: rgb(18, 64, 178);
}

.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: rgb(0, 0, 0);
  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: rgb(18, 64, 178);
}
.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: rgb(229, 229, 229);
}
.mil-slider-nav.mil-soft .mil-slider-arrow svg path {
  fill: rgb(0, 0, 0);
}

/* -------------------------------------------

blog

------------------------------------------- */
.mil-blog-card {
  display: block;
}
.mil-blog-card .mil-cover-frame {
  position: relative;
  overflow: hidden;
  padding-bottom: 65%;
  margin-bottom: 30px;
}
.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: 30px 30px 0 0;
}
.mil-blog-card .mil-post-descr .mil-post-text {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-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);
}
.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%;
    margin-bottom: 30px;
  }
  .mil-blog-card.mil-blog-card-hori .mil-post-descr {
    width: 100%;
    padding: 30px 30px 0 0;
  }
}

.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;
  margin-top: 20px;
}

.mil-pagination-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  color: rgb(0, 0, 0);
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  margin-right: 10px;
}

.mil-pagination-btn.mil-active {
  background-color: rgb(18, 64, 178);
}

.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: rgb(229, 229, 229);
}
.mil-category-list li a.mil-active {
  background-color: rgb(18, 64, 178);
}
@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-menu {
  margin-bottom: 120px;
}
.mil-footer-menu ul li {
  list-style-type: none;
  margin-bottom: 30px;
}
.mil-footer-menu ul li a {
  display: block;
  font-weight: 500;
  font-size: 28px;
  color: var(--text-primary);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-footer-menu ul li a:hover {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  color: rgb(18, 64, 178);
}
@media screen and (max-width: 768px) {
  .mil-footer-menu ul li a {
    font-size: 22px;
  }
}
.mil-footer-menu ul li.mil-active a {
  color: rgb(18, 64, 178);
}
.mil-footer-menu ul li.mil-active a:hover {
  -webkit-transform: none;
          transform: none;
}
@media screen and (max-width: 768px) {
  .mil-footer-menu {
    margin-bottom: 60px;
  }
}

.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: "Poppins", 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: "Poppins", 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: "Poppins", 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: "Poppins", 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: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.mil-subscribe-form input:focus {
  background-color: rgb(255, 255, 255);
  outline: inherit;
}
.mil-subscribe-form input:hover {
  background-color: rgb(255, 255, 255);
}
.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: rgb(242, 242, 242);
  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;
}

.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: rgb(242, 242, 242);
  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: rgb(255, 255, 255);
}
@media screen and (max-width: 992px) {
  .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: rgb(255, 255, 255);
  }
  .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: rgb(229, 229, 229);
  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: rgb(0, 0, 0);
  background-color: rgb(229, 229, 229);
  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;
}

/***************************

price

***************************/
.mil-price-card {
  display: block;
  width: 100%;
  border-top: solid 1px rgba(255, 255, 255, 0.1);
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  padding: 60px 0 30px;
}
.mil-price-card .mil-price-number {
  padding-top: 10px;
  line-height: 70%;
  font-size: 54px;
  font-weight: 500;
}
.mil-price-card .mil-price-number .mil-thin {
  font-weight: 200;
  font-size: 18px;
}

/***************************

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 rgb(18, 64, 178);
  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);
  }
}
/***************************

images

***************************/
.mil-image-frame {
  position: relative;
  overflow: hidden;
}
.mil-image-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;
}
.mil-image-frame.mil-horizontal {
  padding-bottom: 65%;
}
.mil-image-frame.mil-vertical {
  padding-bottom: 140%;
}
.mil-image-frame.mil-square {
  padding-bottom: 100%;
}
.mil-image-frame.mil-fw {
  padding-bottom: 50%;
}
.mil-image-frame .mil-zoom-btn {
  opacity: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  position: absolute;
  top: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  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;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-image-frame .mil-zoom-btn:hover {
  background-color: rgb(255, 255, 255);
}
.mil-image-frame .mil-zoom-btn img {
  height: 17px;
  width: 17px;
}
.mil-image-frame:hover .mil-zoom-btn {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  z-index: 2;
}

/***************************

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: rgb(0, 0, 0);
  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;
}

/* Custom CSS for Abhijeet Ingle Portfolio */

/* ==========================================
   ABOUT TABS
   ========================================== */
.mil-about-tabs {
  margin-top: 30px;
}
.mil-about-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 0;
}
.mil-tab-btn {
  background: transparent;
  border: none;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.35);
  padding: 10px 0;
  margin-bottom: -1px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0, 0, 0.3642, 1);
  white-space: nowrap;
  margin-right: 24px;
}
.mil-tab-btn:hover {
  color: rgba(0, 0, 0, 0.7);
}
.mil-tab-btn.active {
  color: rgb(18, 64, 178);
  border-bottom-color: rgb(18, 64, 178);
}
.mil-tab-content {
  min-height: 80px;
}
.mil-tab-pane {
  display: none;
  animation: tabFadeIn 0.4s ease;
}
.mil-tab-pane.active {
  display: block;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mil-tab-pane p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 15px;
  line-height: 170%;
}

/* ==========================================
   METRICS SECTION (DARK BG)
   ========================================== */
.mil-metrics-section {
  position: relative;
}
.mil-p-90-120 {
  padding-top: 90px;
  padding-bottom: 120px;
}
.mil-metrics-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(18, 64, 178, 0.3), rgba(255,255,255,0.08), transparent);
}

/* Stat Cards */
.mil-metrics-stats {
  gap: 0;
}
.mil-stat-card {
  padding: 40px 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.4s cubic-bezier(0, 0, 0.3642, 1);
  position: relative;
  overflow: hidden;
}
.mil-stat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: rgb(18, 64, 178);
  transition: width 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-stat-card:hover {
  background: rgba(18, 64, 178, 0.04);
  border-color: rgba(18, 64, 178, 0.2);
  transform: translateY(-4px);
}
.mil-stat-card:hover::before {
  width: 100%;
}
.mil-stat-icon {
  font-size: 18px;
  color: rgba(18, 64, 178, 0.6);
  margin-bottom: 20px;
}
.mil-stat-number {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  font-family: "Outfit", sans-serif;
}
@media screen and (max-width: 1200px) {
  .mil-stat-number { font-size: 44px; }
}
@media screen and (max-width: 768px) {
  .mil-stat-number { font-size: 36px; }
  .mil-stat-card { padding: 28px 20px; }
}
.mil-stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111111 !important;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Tool Cards */
.mil-tool-card {
  padding: 30px 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  height: 100%;
  transition: all 0.35s cubic-bezier(0, 0, 0.3642, 1);
  margin-bottom: 0;
}
.mil-tool-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(18, 64, 178, 0.25);
  transform: translateY(-3px);
}
.mil-tool-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(18, 64, 178, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgb(18, 64, 178);
  margin-bottom: 18px;
  transition: background 0.3s ease;
}
.mil-tool-card:hover .mil-tool-card-icon {
  background: rgba(18, 64, 178, 0.25);
}
.mil-tool-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mil-tool-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color 0.2s ease;
}
.mil-tool-list li:last-child {
  border-bottom: none;
}
.mil-tool-card:hover .mil-tool-list li {
  color: rgba(255, 255, 255, 0.65);
}
.mil-tool-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgb(18, 64, 178);
  flex-shrink: 0;
  opacity: 0.7;
}

.mil-logo {
  display: inline-flex !important;
  align-items: center;
}

.mil-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

@media screen and (max-width: 992px) {
  .mil-logo img {
    height: 30px;
  }
}

/* Show light logo by default, hide dark logo */
.mil-logo img:not(.mil-logo-img-dark) {
  display: inline-block;
}
.mil-logo-img-dark {
  display: none;
}

/* On mobile/small screens inside the main frame top, show dark logo instead */
@media screen and (max-width: 1200px) {
  .mil-frame-top .mil-logo img:not(.mil-logo-img-dark) {
    display: none;
  }
  .mil-frame-top .mil-logo-img-dark {
    display: inline-block;
  }
}

/* Menu drawer: always show dark logo (menu bg is white) */
.mil-menu-frame .mil-logo img:not(.mil-logo-img-dark),
.mil-menu-frame.mil-active .mil-logo img:not(.mil-logo-img-dark) {
  display: none;
}
.mil-menu-frame .mil-logo-img-dark,
.mil-menu-frame.mil-active .mil-logo-img-dark {
  display: inline-block;
}

/* Footer: show light logo (footer is dark bg) */
footer .mil-logo img:not(.mil-logo-img-dark) {
  display: inline-block;
  height: 42px;
}
footer .mil-logo-img-dark {
  display: none;
}

/* Background video */
.mil-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.mil-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.38; /* Set for high readability of text */
}
.mil-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--video-overlay);
}

/* Ambient Audio Visualizer (Header Icon) */
.mil-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  pointer-events: all;
}
.mil-audio-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: all 0.3s ease;
  pointer-events: all;
  z-index: 1000;
}
.mil-audio-toggle:hover {
  background: rgba(18, 64, 178, 0.85) !important; /* Theme accent blue */
  border-color: rgba(18, 64, 178, 0.5) !important;
  transform: translateY(-2px);
}
.mil-audio-toggle:hover .bar {
  background-color: #fff !important;
}
.mil-audio-bars {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 12px;
  width: 17px;
}
.mil-audio-bars .bar {
  display: inline-block;
  width: 2px;
  height: 3px;
  background-color: rgb(0, 0, 0);
  transition: height 0.2s ease, background-color 0.3s ease;
}
.mil-audio-toggle.playing .mil-audio-bars .bar {
  animation: bounce 0.8s ease infinite alternate;
}
.mil-audio-toggle.playing .mil-audio-bars .bar:nth-child(2) {
  animation-delay: 0.2s;
}
.mil-audio-toggle.playing .mil-audio-bars .bar:nth-child(3) {
  animation-delay: 0.4s;
}
.mil-audio-toggle.playing .mil-audio-bars .bar:nth-child(4) {
  animation-delay: 0.1s;
}
@keyframes bounce {
  10% { height: 3px; }
  100% { height: 12px; }
}
.mil-audio-text {
  display: none !important;
}

/* Dark context adaptation (inside dark banner, dark metrics, menu frame, etc.) */
.mil-banner .mil-audio-toggle,
.mil-metrics-section .mil-audio-toggle,
.mil-dark-bg .mil-audio-toggle,
.mil-menu-frame .mil-audio-toggle,
.mil-project-modal .mil-audio-toggle,
.mil-frame .mil-frame-top .mil-audio-toggle {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}
.mil-banner .mil-audio-bars .bar,
.mil-metrics-section .mil-audio-bars .bar,
.mil-dark-bg .mil-audio-bars .bar,
.mil-menu-frame .mil-audio-bars .bar,
.mil-project-modal .mil-audio-bars .bar,
.mil-frame .mil-frame-top .mil-audio-bars .bar {
  background-color: rgb(255, 255, 255);
}

.mil-about-lead {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.8) !important;
  font-weight: 400;
}

/* Canvas reveal grid dots container & styling */
.mil-canvas-reveal-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
canvas.mil-canvas-reveal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

/* Ensure parents of canvas reveal have relative positioning */
.mil-banner,
#about,
.mil-dark-bg,
#portfolio,
.mil-metrics-section,
.mil-soft-bg {
  position: relative;
  overflow: hidden;
}

/* Remove old shape animations */
.mil-animation-frame,
.mil-dodecahedron {
  display: none !important;
}

/* Wider cinematic project modal (60% Video, 40% Text) */
.mil-project-modal {
  background: var(--modal-bg);
  max-width: 100% !important;
  width: 100% !important;
  border-radius: 0;
  overflow: hidden;
  padding: 0 !important;
  border: none;
}
.mil-modal-video-col {
  width: 70% !important;
  max-width: 70% !important;
  flex: 0 0 70% !important;
}
.mil-modal-text-col {
  width: 30% !important;
  max-width: 30% !important;
  flex: 0 0 30% !important;
}
@media screen and (max-width: 992px) {
  .mil-modal-video-col,
  .mil-modal-text-col {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}



/* Portfolio Filters */
.mil-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}
.mil-filter-btn {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #000;
  padding: 8px 20px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.mil-filter-btn.active,
.mil-filter-btn:hover {
  background-color: #1240b2;
  border-color: #1240b2;
  color: #fff;
}

/* Video Portfolio Items */
.mil-portfolio-card {
  display: block;
  margin-bottom: 60px;
  text-decoration: none;
}
.mil-portfolio-card .mil-cover-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: #000;
}
.mil-portfolio-card .mil-cover {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}
.mil-portfolio-card .mil-card-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.mil-portfolio-card img.mil-card-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transition: opacity 0.4s ease;
}
.mil-portfolio-card:hover img.mil-card-poster {
  opacity: 0;
}
.mil-video-overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(18, 64, 178, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  z-index: 3;
  opacity: 0.85;
  transition: all 0.3s ease;
  pointer-events: none;
  padding-left: 4px;
}
.mil-portfolio-card:hover .mil-video-overlay-icon {
  transform: translate(-50%, -50%) scale(1.15);
  background: #fff;
  color: #1240b2;
  opacity: 1;
}
.mil-portfolio-card .mil-descr {
  padding-top: 20px;
}
.mil-portfolio-card .mil-descr h4 {
  margin-bottom: 5px;
  transition: color 0.3s ease;
}
.mil-portfolio-card:hover .mil-descr h4 {
  color: #1240b2;
}

/* Project dossier inside Modal */
.mil-modal-video-col {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mil-modal-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}
.mil-modal-video-wrapper iframe,
.mil-modal-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.mil-modal-text-col {
  border-left: 1px solid var(--border-color);
  background: var(--bg-secondary);
}
.mil-modal-details {
  padding: 40px;
  max-height: 550px;
  overflow-y: auto;
  color: var(--text-secondary);
}
@media screen and (max-width: 992px) {
  .mil-modal-text-col {
    border-left: none;
    border-top: 1px solid var(--border-color);
  }
  .mil-modal-details {
    max-height: none;
    padding: 30px 20px;
  }
}
.mil-modal-details::-webkit-scrollbar {
  width: 6px;
  display: block;
}
.mil-modal-details::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 3px;
}
.mil-modal-details h3 {
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.25;
}
.mil-detail-block h6 {
  color: var(--text-primary);
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mil-detail-block p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ========================================
   MINIMALIST CLEAN WHITE DESIGN OVERRIDES
   ======================================== */

/* Enforce pure white background on all page wrappers, headers, frames, main wrappers */
html, body, .mil-wrapper, section, footer, .mil-content, #swupMain {
  background-color: #ffffff !important;
  color: #555555 !important;
}

/* Enforce dark text color variables for high-contrast readability */
h1, h2, h3, h4, h5, h6, .mil-h1, .mil-h2, .mil-h3, .mil-h4, .mil-h5, .mil-h6 {
  color: #111111 !important;
}
p, span, li, a {
  color: #555555;
}

/* Override hardcoded .mil-light elements to display in black/gray on white */
.mil-light {
  color: #111111 !important;
}
.mil-light a {
  color: #111111 !important;
}
.mil-light-soft {
  color: #555555 !important;
}
.mil-muted {
  color: #111111 !important;
}

/* Clean up theme toggle, audio toggle, and scroll progress bars */
.mil-theme-toggle {
  display: none !important;
}
.mil-audio-toggle {
  display: none !important;
}
.mil-progress-track {
  background-color: rgba(0, 0, 0, 0.05) !important;
}
.mil-progress {
  background-color: #000000 !important;
}

/* Enforce light logo visible on white backgrounds everywhere */
.mil-logo img:not(.mil-logo-img-dark) {
  display: inline-block !important;
}
.mil-logo-img-dark {
  display: none !important;
}

/* Remove Background Canvas Dots, Dodecahedrons, Nimbus Glows, Videos */
.mil-canvas-reveal-container,
canvas.mil-canvas-reveal,
.mil-dodecahedron,
.mil-nimbus,
.mil-circle-text,
.mil-video-background,
.mil-video-overlay,
.mil-gradient {
  display: none !important;
}

/* Style minimalist architectural grid lines */
.mil-lines-place,
.mil-lines {
  display: block !important;
  opacity: 0.6 !important;
}
.mil-lines-place .mil-lines path,
.mil-lines-place .mil-lines rect,
.mil-lines-place .mil-lines line,
.mil-lines path,
.mil-lines rect,
.mil-lines line {
  stroke: rgba(0, 0, 0, 0.06) !important;
}

/* Ensure menu popup matches the clean white aesthetic */
.mil-menu-frame {
  background-color: #ffffff !important;
  border-left: none !important;
}
.mil-menu-frame * {
  color: #111111 !important;
}
.mil-menu-frame .mil-light-soft {
  color: #555555 !important;
}
.mil-menu-frame .mil-frame-top {
  background-color: rgba(255, 255, 255, 0.5) !important;
  border-bottom: none !important;
}
.mil-menu-frame .mil-menu-right-frame {
  border-left: solid 1px rgba(0, 0, 0, 0.08) !important;
  background-color: #ffffff !important;
}
.mil-menu-frame .mil-main-menu ul li a {
  color: rgba(0, 0, 0, 0.8) !important;
}
.mil-menu-frame .mil-main-menu ul li a:hover,
.mil-menu-frame .mil-main-menu ul li a.mil-active {
  color: #000000 !important;
}
/* Menu button bar colors — default dark, hero state overridden by inline CSS */
.mil-menu-btn span,
.mil-menu-btn span:after,
.mil-menu-btn span:before,
.mil-frame-top .mil-menu-btn span,
.mil-frame-top .mil-menu-btn span:after,
.mil-frame-top .mil-menu-btn span:before {
  background: #111111 !important;
}

/* Header/Frame default positioning (transparency handled by scroll JS in index.html) */
.mil-frame-top {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 80px !important;
  padding: 0 60px !important;
  background-color: transparent !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border-bottom: none !important;
  z-index: 999 !important;
  pointer-events: all !important;
}
@media screen and (max-width: 1200px) {
  .mil-frame-top {
    padding: 0 30px !important;
    height: 70px !important;
  }
}

/* Override all hardcoded blue accent details to a minimalist black theme */
.mil-button {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: 1px solid #000000 !important;
}
.mil-button span {
  color: #ffffff !important;
}
.mil-button svg {
  background-color: #ffffff !important;
}
.mil-button svg path {
  fill: #000000 !important;
}
.mil-button:hover {
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.mil-accent {
  color: #000000 !important;
}
.mil-link.mil-accent {
  color: #000000 !important;
}
.mil-marker {
  background-color: #000000 !important;
  color: #ffffff !important;
}
blockquote {
  border-left-color: #000000 !important;
  background-color: #fafafa !important;
  color: #333333 !important;
}
.mil-divider {
  background-color: rgba(0, 0, 0, 0.08) !important;
}
.mil-social-icons a {
  color: #555555 !important;
}
.mil-social-icons a:hover {
  color: #000000 !important;
}
.mil-social-icons a i {
  color: inherit !important;
}
.mil-ball {
  background-color: #000000 !important;
  border: 1px solid #000000 !important;
}
.mil-ball svg path {
  fill: #ffffff !important;
}

/* Portfolio Cards & Overlays */
.mil-portfolio-card {
  box-shadow: none !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
}
.mil-portfolio-card .mil-cover-frame {
  background-color: #fafafa !important;
}

/* Filters bar active button */
.mil-filter-btn {
  color: #555555 !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}
.mil-filter-btn.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}

/* About tab buttons */
.mil-tab-btn {
  color: #555555 !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
}
.mil-tab-btn.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}

/* Align all service and team cards into a structured minimalist grid */
.mil-service-card-lg.mil-offset {
  margin-top: 0 !important;
  margin-bottom: 30px !important;
}
.mil-team-card.mil-offset-card {
  transform: none !important;
  -webkit-transform: none !important;
}

/* Accordion symbols */
.mil-accordion-menu {
  color: #111111 !important;
}
.mil-symbol {
  border-color: rgba(0, 0, 0, 0.08) !important;
}
.mil-symbol .mil-minus,
.mil-symbol .mil-plus {
  background-color: #000000 !important;
}

/* Form fields (inputs, textarea) */
input, textarea {
  background-color: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  color: #111111 !important;
}
input:focus, textarea:focus {
  border-color: #000000 !important;
}

/* Clean minimalist project modal style */
.mil-project-modal {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

/* Balanced vertical spacing padding modifications */
.mil-p-120-120 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}
.mil-p-120-90 {
  padding-top: 100px !important;
  padding-bottom: 80px !important;
}
.mil-p-0-120 {
  padding-bottom: 100px !important;
}
.mil-p-120-0 {
  padding-top: 100px !important;
}
.mil-p-120-60 {
  padding-top: 100px !important;
  padding-bottom: 60px !important;
}
.mil-p-90-90 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.mil-p-90-120 {
  padding-top: 80px !important;
  padding-bottom: 100px !important;
}
.mil-p-120-30 {
  padding-top: 100px !important;
  padding-bottom: 30px !important;
}

/* Balanced margins */
.mil-mb-30 {
  margin-bottom: 30px !important;
}
.mil-mb-60 {
  margin-bottom: 50px !important;
}
.mil-mb-90 {
  margin-bottom: 70px !important;
}
.mil-mb-120 {
  margin-bottom: 90px !important;
}

/* Adaptive mobile spacing overrides */
@media screen and (max-width: 992px) {
  .mil-p-120-120 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .mil-p-120-90 {
    padding-top: 80px !important;
    padding-bottom: 60px !important;
  }
  .mil-p-0-120 {
    padding-bottom: 80px !important;
  }
  .mil-p-120-0 {
    padding-top: 80px !important;
  }
  .mil-p-120-60 {
    padding-top: 80px !important;
    padding-bottom: 40px !important;
  }
  .mil-p-90-90 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .mil-p-90-120 {
    padding-top: 60px !important;
    padding-bottom: 80px !important;
  }
  .mil-p-120-30 {
    padding-top: 80px !important;
    padding-bottom: 20px !important;
  }
  .mil-mb-120 {
    margin-bottom: 80px !important;
  }
}


/* ==========================================
   SERVICE CARDS - Text Visibility Fix (white bg)
   ========================================== */
.mil-service-card-sm {
  display: block;
  padding: 40px 30px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  background: #ffffff;
  margin-bottom: 0;
  transition: all 0.35s ease;
  text-decoration: none;
  height: 100%;
  box-sizing: border-box;
}
.mil-service-card-sm:hover {
  border-color: rgba(0,0,0,0.18);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}
.mil-service-card-sm h5,
.mil-service-card-sm .mil-muted {
  color: #111111 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  margin-bottom: 12px !important;
  line-height: 1.4 !important;
}
.mil-service-card-sm p,
.mil-service-card-sm .mil-light-soft {
  color: #555555 !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
  opacity: 1 !important;
}

/* Animated service icon */
.mil-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #111111 0%, #333333 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}
.mil-service-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,64,178,0.95) 0%, rgba(0,100,255,0.85) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 12px;
}
.mil-service-card-sm:hover .mil-service-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(18,64,178,0.25);
}
.mil-service-card-sm:hover .mil-service-icon::after {
  opacity: 1;
}
.mil-service-icon i {
  position: relative;
  z-index: 1;
}

/* Services grid - 3-column full-width layout */

.mil-services-grid .mil-services-grid-item.col-md-6.col-lg-3 {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  padding: 0 !important;
}
@media screen and (max-width: 992px) {
  .mil-services-grid.row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media screen and (max-width: 576px) {
  .mil-services-grid.row {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================
   PORTFOLIO GRID - 3 column, no border, smaller title
   ========================================== */
.mil-portfolio-grid.row {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  margin: 0 !important;
}
.mil-portfolio-grid .mil-portfolio-card-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  padding: 0 !important;
}
.mil-portfolio-card {
  border: none !important;
  box-shadow: none !important;
  margin-bottom: 0 !important;
}
.mil-portfolio-card .mil-descr h4 {
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
}
@media screen and (max-width: 992px) {
  .mil-portfolio-grid.row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media screen and (max-width: 576px) {
  .mil-portfolio-grid.row {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================
   METRICS SECTION - Clean layout on white bg
   ========================================== */
.mil-metrics-section {
  background: #ffffff !important;
}
.mil-metrics-section .mil-stat-card {
  border: 1px solid rgba(0,0,0,0.08) !important;
  background: #fafafa !important;
  border-radius: 8px;
}
.mil-metrics-section .mil-stat-card::before {
  background: #111111 !important;
}
.mil-metrics-section .mil-stat-number {
  color: #111111 !important;
  font-size: 46px !important;
}
.mil-metrics-section .mil-stat-label {
  color: #111111 !important;
}
.mil-metrics-section .mil-stat-icon {
  color: rgba(18,64,178,0.7) !important;
}
.mil-metrics-section h2 {
  color: #111111 !important;
}
.mil-metrics-section p {
  color: #555555 !important;
}
.mil-metrics-section .mil-suptitle {
  color: #888888 !important;
}
.mil-metrics-section .mil-suptitle:before {
  background-color: rgba(0,0,0,0.1) !important;
}
.mil-metrics-section .mil-muted {
  color: #111111 !important;
}

/* ==========================================
   TOOLKIT SECTION - Clean layout on white bg
   ========================================== */
.mil-tool-card {
  border: 1px solid rgba(0,0,0,0.08) !important;
  background: #f9f9f9 !important;
  border-radius: 8px;
}
.mil-tool-card:hover {
  background: #f3f3f3 !important;
  border-color: rgba(0,0,0,0.15) !important;
  transform: translateY(-3px);
}
.mil-tool-card-icon {
  background: rgba(18,64,178,0.08) !important;
  color: rgb(18,64,178) !important;
}
.mil-tool-card h6 {
  color: #111111 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}
.mil-tool-list li {
  color: #555555 !important;
}
.mil-tool-dot {
  background: rgb(18,64,178) !important;
}
.mil-service-card-sm:hover {
  border-color: rgba(0,0,0,0.18);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}
.mil-service-card-sm h5,
.mil-service-card-sm .mil-muted {
  color: #111111 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  margin-bottom: 12px !important;
  line-height: 1.4 !important;
}
.mil-service-card-sm p,
.mil-service-card-sm .mil-light-soft {
  color: #555555 !important;
  font-size: 13px !important;
  line-height: 1.7 !important;
  opacity: 1 !important;
}

/* Animated service icon */
.mil-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #111111 0%, #333333 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}
.mil-service-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,64,178,0.95) 0%, rgba(0,100,255,0.85) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 12px;
}
.mil-service-card-sm:hover .mil-service-icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(18,64,178,0.25);
}
.mil-service-card-sm:hover .mil-service-icon::after {
  opacity: 1;
}
.mil-service-icon i {
  position: relative;
  z-index: 1;
}

/* Services grid - 3-column full-width layout */

.mil-services-grid .mil-services-grid-item.col-md-6.col-lg-3 {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  padding: 0 !important;
}
@media screen and (max-width: 992px) {
  .mil-services-grid.row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media screen and (max-width: 576px) {
  .mil-services-grid.row {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================
   PORTFOLIO GRID - 3 column, no border, smaller title
   ========================================== */
.mil-portfolio-grid.row {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  margin: 0 !important;
}
.mil-portfolio-grid .mil-portfolio-card-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  padding: 0 !important;
}
.mil-portfolio-card {
  border: none !important;
  box-shadow: none !important;
  margin-bottom: 0 !important;
}
.mil-portfolio-card .mil-descr h4 {
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
}
@media screen and (max-width: 992px) {
  .mil-portfolio-grid.row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media screen and (max-width: 576px) {
  .mil-portfolio-grid.row {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================
   METRICS SECTION - Clean layout on white bg
   ========================================== */
.mil-metrics-section {
  background: #ffffff !important;
}
.mil-metrics-section .mil-stat-card {
  border: 1px solid rgba(0,0,0,0.08) !important;
  background: #fafafa !important;
  border-radius: 8px;
}
.mil-metrics-section .mil-stat-card::before {
  background: #111111 !important;
}
.mil-metrics-section .mil-stat-number {
  color: #111111 !important;
  font-size: 46px !important;
}
.mil-metrics-section .mil-stat-label {
  color: #111111 !important;
}
.mil-metrics-section .mil-stat-icon {
  color: rgba(18,64,178,0.7) !important;
}
.mil-metrics-section h2 {
  color: #111111 !important;
}
.mil-metrics-section p {
  color: #555555 !important;
}
.mil-metrics-section .mil-suptitle {
  color: #888888 !important;
}
.mil-metrics-section .mil-suptitle:before {
  background-color: rgba(0,0,0,0.1) !important;
}
.mil-metrics-section .mil-muted {
  color: #111111 !important;
}

/* ==========================================
   TOOLKIT SECTION - Clean layout on white bg
   ========================================== */
.mil-tool-card {
  border: 1px solid rgba(0,0,0,0.08) !important;
  background: #f9f9f9 !important;
  border-radius: 8px;
}
.mil-tool-card:hover {
  background: #f3f3f3 !important;
  border-color: rgba(0,0,0,0.15) !important;
  transform: translateY(-3px);
}
.mil-tool-card-icon {
  background: rgba(18,64,178,0.08) !important;
  color: rgb(18,64,178) !important;
}
.mil-tool-card h6 {
  color: #111111 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}
.mil-tool-list li {
  color: #555555 !important;
}
.mil-tool-dot {
  background: rgb(18,64,178) !important;
}
.mil-metrics-divider {
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.08), transparent) !important;
}

/* ==========================================
   FOOTER - Remove extra blank space
   ========================================== */
footer.mil-dark-bg {
  position: relative;
  overflow: hidden;
}
.mil-hidden-elements {
  display: none !important;
}
/* Remove any image or shape below footer */
footer + div:not(.mil-copyright-bar),
footer ~ .mil-hidden-elements {
  display: none !important;
}

/* ==========================================
   COPYRIGHT BAR - Separate clean bottom bar
   ========================================== */
.mil-copyright-bar {
  background: #f5f5f5;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 14px 0;
  text-align: center;
}


/* ==========================================
   FOOTER - Remove extra blank space
   ========================================== */
footer.mil-dark-bg {
  position: relative;
  overflow: hidden;
}
.mil-hidden-elements {
  display: none !important;
}
/* Remove any image or shape below footer */
footer + div:not(.mil-copyright-bar),
footer ~ .mil-hidden-elements {
  display: none !important;
}

/* ==========================================
   COPYRIGHT BAR - Separate clean bottom bar
   ========================================== */
.mil-copyright-bar {
  background: #f5f5f5;
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 14px 0;
  text-align: center;
}
.mil-copyright-bar p,
.mil-copyright-bar span,
.mil-copyright-bar a {
  font-size: 12px !important;
  color: #888888 !important;
  letter-spacing: 0.3px;
  margin: 0 !important;
}
.mil-copyright-bar a:hover {
  color: #111111 !important;
  text-decoration: underline;
}
.mil-copyright-divider {
  display: inline-block;
  margin: 0 8px;
  color: #cccccc !important;
}

/* ============================================================
   GLOBAL FONT OVERRIDE — Inter (body) + Poppins (headings)
   ============================================================ */
html, body, p, span, a, input, textarea, button, label, select, option {
  font-family: "Inter", sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6,
.mil-h1, .mil-h2, .mil-h3, .mil-h4, .mil-h5, .mil-h6,
.mil-logo, .mil-suptitle, .mil-upper, .mil-link,
.mil-filter-btn, .mil-button span {
  font-family: "Poppins", sans-serif !important;
}

/* ============================================================
   ABOUT SECTION — 2-line headline fix
   ============================================================ */

#about h2.mil-up br {
  display: block !important;
}
@media screen and (max-width: 1200px) {
  #about h2.mil-up { font-size: 34px !important; }
}
@media screen and (max-width: 768px) {
  #about h2.mil-up { font-size: 26px !important; }
}

/* ============================================================
   ABOUT — Replace tabs with 3-col borderless feature grid
   ============================================================ */
.mil-about-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .mil-about-feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 576px) {
  .mil-about-feature-grid { grid-template-columns: 1fr; }
}
.mil-about-feature-item {
  text-align: left;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}
/* Animated icon */
.mil-feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 16px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              background 0.3s ease,
              box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.mil-feat-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1240b2, #0064ff);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 12px;
}
.mil-feat-icon i {
  position: relative;
  z-index: 1;
}
.mil-about-feature-item:hover .mil-feat-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(18, 64, 178, 0.25);
}
.mil-about-feature-item:hover .mil-feat-icon::after {
  opacity: 1;
}
.mil-about-feature-item h6 {
  font-family: "Poppins", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #111111 !important;
  margin-bottom: 8px !important;
  line-height: 1.4 !important;
  letter-spacing: 0 !important;
}
.mil-about-feature-item p {
  font-size: 15px !important;
  color: #666666 !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

/* ============================================================
   SERVICES — 4-column grid, no card borders/box
   ============================================================ */
.mil-services-grid.row {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}
.mil-services-grid .mil-services-grid-item {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  padding: 0 !important;
}
.mil-service-card-sm {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}
.mil-service-card-sm:hover {
  transform: translateY(-3px);
  box-shadow: none !important;
  border: none !important;
}
.mil-service-card-sm h5,
.mil-service-card-sm .mil-muted {
  color: #111111 !important;
  font-size: 14px !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  margin-bottom: 10px !important;
  margin-top: 16px !important;
  line-height: 1.4 !important;
}
.mil-service-card-sm p,
.mil-service-card-sm .mil-light-soft {
  color: #666666 !important;
  font-size: 13px !important;
  font-family: "Inter", sans-serif !important;
  line-height: 1.65 !important;
  opacity: 1 !important;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 1200px) {
  .mil-services-grid.row { grid-template-columns: repeat(2, 1fr) !important; }
}
@media screen and (max-width: 576px) {
  .mil-services-grid.row { grid-template-columns: 1fr !important; }
}

/* ============================================================
   FOOTER — Eliminate blank space below
   ============================================================ */
.mil-hidden-elements {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
/* Kill any bottom margin/padding on wrapper */
.mil-wrapper {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
/* The content div that wraps everything */
#swupMain {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
footer.mil-dark-bg {
  margin-bottom: 0 !important;
}

/* ============================================================
   CUSTOM OVERRIDES & RETRY CORRECTIONS
   ============================================================ */

/* Exclude copyright bar from footer blocker rule */
footer + div:not(.mil-copyright-bar),
footer ~ .mil-hidden-elements {
  display: none !important;
}

/* Services grid - 4 column layout */
.mil-services-grid.row {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.mil-services-grid .mil-services-grid-item.col-md-6.col-lg-3 {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  padding: 0 !important;
}

@media screen and (max-width: 992px) {
  .mil-services-grid.row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media screen and (max-width: 576px) {
  .mil-services-grid.row {
    grid-template-columns: 1fr !important;
  }
}

/* Clean borderless and boxless service card */
.mil-service-card-sm {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}

.mil-service-card-sm:hover {
  transform: translateY(-4px);
  box-shadow: none !important;
  border: none !important;
}

/* Metrics Section - Centered and clean animated icons */
.mil-metrics-section .mil-stat-card {
  text-align: left;
}

.mil-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(18, 64, 178, 0.08) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px !important;
  color: rgb(18, 64, 178) !important;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
              background 0.3s ease,
              box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mil-stat-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1240b2, #0064ff);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 12px;
}

.mil-stat-icon i {
  position: relative;
  z-index: 1;
}

.mil-stat-card:hover .mil-stat-icon {
  transform: scale(1.1) rotate(-5deg);
  background: rgb(18, 64, 178) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 15px rgba(18, 64, 178, 0.2);
}

.mil-stat-card:hover .mil-stat-icon::after {
  opacity: 1;
}

/* Single line text alignment for metrics labels */
.mil-stat-label {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  font-size: 12px !important;
  color: #111111 !important;
  margin-bottom: 10px;
  padding-right: 4px;
}

/* Ensure about section title spans exactly 2 lines on desktop */


#about h2.mil-up br {
  display: block !important;
}

@media screen and (max-width: 1200px) {
  #about h2.mil-up { font-size: 32px !important; }
}

/* ============================================================
   CUSTOM OVERRIDES & RETRY CORRECTIONS
   ============================================================ */

/* Exclude copyright bar from footer blocker rule */
footer + div:not(.mil-copyright-bar),
footer ~ .mil-hidden-elements {
  display: none !important;
}

/* Remove all borders from services grid items */
.mil-services-grid, 
.mil-services-grid .mil-services-grid-item,
.mil-services-grid .mil-services-grid-item:first-child,
.mil-services-grid .mil-services-grid-item:nth-child(3) {
  border: none !important;
}

/* Services grid - 4 column layout */
.mil-services-grid.row {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.mil-services-grid .mil-services-grid-item.col-md-6.col-lg-3 {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  padding: 0 !important;
}

@media screen and (max-width: 992px) {
  .mil-services-grid.row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media screen and (max-width: 576px) {
  .mil-services-grid.row {
    grid-template-columns: 1fr !important;
  }
}

/* Creative service cards - borderless, drop shadow, glowing blue hover */
.mil-service-card-sm {
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff !important;
  border: none !important;
  border-radius: 16px !important;
  
  padding: 35px 28px !important;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
  height: 100% !important;
  box-sizing: border-box !important;
  text-align: left !important;
}

.mil-service-card-sm:hover {
  transform: translateY(-8px) !important;
  
  background: #ffffff !important;
  border: none !important;
}

/* Unified animated icons styles using Feather SVGs (stroke 2px, blue color) */
svg.feather {
  width: 20px;
  height: 20px;
  stroke: #1240b2 !important;
  stroke-width: 2px !important;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none !important;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-block;
  vertical-align: middle;
}

/* Icons inside rounded wrapper backgrounds (About, Services, Metrics) */
.mil-feat-icon,
.mil-service-icon,
.mil-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(18, 64, 178, 0.07) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  box-shadow: none !important;
  border: none !important;
  margin-bottom: 20px;
}

.mil-feat-icon svg.feather,
.mil-service-icon svg.feather,
.mil-stat-icon svg.feather {
  width: 20px;
  height: 20px;
  stroke: #1240b2 !important;
  stroke-width: 2px !important;
  z-index: 2;
  position: relative;
}

/* Animated background filling on hover */
.mil-feat-icon::after,
.mil-service-icon::after,
.mil-stat-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1240b2, #0064ff);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 12px;
  z-index: 1;
}

/* Hover states: wrapper changes to blue background, SVG stroke changes to white */
.mil-about-feature-item:hover .mil-feat-icon,
.mil-service-card-sm:hover .mil-service-icon,
.mil-stat-card:hover .mil-stat-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 6px 15px rgba(18, 64, 178, 0.2);
}

.mil-about-feature-item:hover .mil-feat-icon::after,
.mil-service-card-sm:hover .mil-service-icon::after,
.mil-stat-card:hover .mil-stat-icon::after {
  opacity: 1;
}

.mil-about-feature-item:hover .mil-feat-icon svg.feather,
.mil-service-card-sm:hover .mil-service-icon svg.feather,
.mil-stat-card:hover .mil-stat-icon svg.feather {
  stroke: #ffffff !important;
}

/* Social media icons animations in menu & footer */
.mil-social-icons a svg.feather {
  width: 18px;
  height: 18px;
  stroke: #888888 !important;
  stroke-width: 2px !important;
  transition: all 0.3s ease;
}

.mil-social-icons a:hover svg.feather {
  stroke: #1240b2 !important;
  transform: translateY(-2px) scale(1.1);
}

/* Metrics Section card backgrounds */
.mil-stat-card {
  background: #fafafa !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 12px !important;
  padding: 30px 24px !important;
  height: 100% !important;
  transition: all 0.4s ease !important;
}

.mil-stat-card:hover {
  background: #ffffff !important;
  box-shadow: 0 10px 30px rgba(18, 64, 178, 0.06) !important;
  border-color: rgba(18, 64, 178, 0.15) !important;
  transform: translateY(-4px) !important;
}

/* Single line text labels formatting */
.mil-stat-label {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  font-size: 12px !important;
  color: #111111 !important;
  margin-bottom: 5px;
  padding-right: 4px;
}

/* Ensure about section title spans exactly 2 lines on desktop */


#about h2.mil-up br {
  display: block !important;
}

@media screen and (max-width: 1200px) {
  #about h2.mil-up { font-size: 32px !important; }
}

/* Fix filter buttons hover and active text color to be white */
.mil-filter-btn:hover,
.mil-filter-btn.active,
.mil-filter-btn:focus,
.mil-filter-btn:active {
  color: #ffffff !important;
  background-color: #1240b2 !important;
  border-color: #1240b2 !important;
}

/* Restore and style hero background video */
.mil-banner .mil-video-background,
.mil-banner .mil-video-overlay {
  display: block !important;
}

.mil-banner .mil-bg-video {
  transform: translate(-50%, -50%) scaleX(-1) !important; /* Center and flip horizontally */
  opacity: 0.38 !important; /* optimal opacity for text readability */
}

/* Bring the header frame to the top layer above video backgrounds and overlays */
.mil-frame {
  z-index: 999 !important;
  transition: opacity 0.5s ease-in-out !important;
}

/* Hide header frames globally during preloader animation */
.mil-preloader:not(.mil-hidden) ~ .mil-frame,
.mil-preloader:not(.mil-hidden) ~ .mil-menu-frame {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Hide the current page label (e.g. "HOME") that appears near the logo */
.mil-current-page {
  display: none !important;
}

*, *::before, *::after, [class] {
  border-radius: 0 !important;
}

/* Restore border-radius for badges, buttons, and specific interactive elements */
.mil-photo-badge {
  border-radius: 50% !important;
}
.mil-button {
  border-radius: 70px !important;
}
.mil-button svg, .mil-link svg {
  border-radius: 50% !important;
}
.mil-specialty-pill {
  border-radius: 30px !important;
}

/* Hide redundant persistent menu close button when overlay menu is active */
.mil-menu-frame.mil-active ~ .mil-frame .mil-menu-btn {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Show and style persistent audio toggle play/stop button */
.mil-audio-toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: none !important;
  color: #111111 !important;
  font-size: 13px !important;
  cursor: pointer !important;
  padding: 0 !important;
  width: 24px !important;
  height: 24px !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.mil-audio-toggle:hover {
  background: transparent !important;
  border-color: transparent !important;
  color: #1240b2 !important;
}
.mil-audio-toggle .play-icon {
  display: inline-block !important;
}
.mil-audio-toggle .mil-audio-bars {
  display: none !important;
}
.mil-audio-toggle.playing .play-icon {
  display: none !important;
}
.mil-audio-toggle.playing .mil-audio-bars {
  display: flex !important;
}

/* Make sure the bars change color to match when toggle is hovered */
.mil-audio-toggle:hover .mil-audio-bars .bar {
  background-color: #1240b2 !important;
}

/* In dark-bg and banner areas, default state is white text/bars */
.mil-banner .mil-audio-toggle,
.mil-metrics-section .mil-audio-toggle,
.mil-dark-bg .mil-audio-toggle,
.mil-menu-frame .mil-audio-toggle,
.mil-project-modal .mil-audio-toggle,
.mil-frame .mil-frame-top .mil-audio-toggle {
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
}
.mil-banner .mil-audio-bars .bar,
.mil-metrics-section .mil-audio-bars .bar,
.mil-dark-bg .mil-audio-bars .bar,
.mil-menu-frame .mil-audio-bars .bar,
.mil-project-modal .mil-audio-bars .bar,
.mil-frame .mil-frame-top .mil-audio-bars .bar {
  background-color: #ffffff !important;
}

/* When the header is scrolled, it becomes white glass, so adapt to dark */
.mil-frame .mil-frame-top.header-scrolled .mil-audio-toggle {
  color: #111111 !important;
}
.mil-frame .mil-frame-top.header-scrolled .mil-audio-bars .bar {
  background-color: #111111 !important;
}

/* Enforce blue color on the menu button icon bars */
// Enforce blue color on the menu button icon bars
.mil-frame-top .mil-menu-btn span,
.mil-frame-top .mil-menu-btn span::before,
.mil-frame-top .mil-menu-btn span::after,
.mil-menu-btn span,
.mil-menu-btn span::before,
.mil-menu-btn span::after {
  background-color: #1240b2 !important;
}

/* Widescreen and Full Screen Custom Project Modals */
.fancybox-slide--html {
  padding: 0 !important;
}

.fancybox-slide--html .fancybox-content {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  overflow: hidden !important;
  border: none !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.mil-project-modal {
  background: #ffffff !important; /* Premium white background */
  max-width: 100vw !important;
  width: 100vw !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
}

.mil-project-modal > .row {
  margin: 0 !important;
  padding: 0 !important;
}

.mil-modal-video-col {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #000000 !important;
  padding: 0 !important;
}

.mil-modal-text-col {
  background: #ffffff !important; /* Details pane white background */
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
}

.mil-modal-video-wrapper {
  width: 100% !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #000000 !important;
}

.mil-modal-video-wrapper iframe {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
}

.mil-modal-details {
  padding: 50px 40px !important;
  overflow-y: auto !important;
  flex: 1 !important;
}

/* Desktop-specific side-by-side full-height modal layouts */
@media (min-width: 992px) {
  .mil-project-modal {
    height: 100vh !important;
    max-height: 100vh !important;
    overflow: hidden !important;
  }

  .mil-project-modal > .row {
    height: 100% !important;
    min-height: 100% !important;
  }

  .mil-modal-video-col {
    width: 70% !important;
    max-width: 70% !important;
    flex: 0 0 70% !important;
    height: 100vh !important;
    min-height: 100vh !important;
  }

  .mil-modal-text-col {
    width: 30% !important;
    max-width: 30% !important;
    flex: 0 0 30% !important;
    height: 100vh !important;
    min-height: 100vh !important;
    border-left: 1px solid rgba(0, 0, 0, 0.08) !important;
  }

  .mil-modal-video-wrapper {
    height: 100% !important;
    padding-bottom: 0 !important;
  }
}

/* Force dark text inside modal details pane for white theme readability */
.mil-modal-details h3,
.mil-modal-details h4,
.mil-modal-details h5,
.mil-modal-details h6 {
  color: #111111 !important;
}
.mil-modal-details p,
.mil-modal-details li,
.mil-modal-details span {
  color: #555555 !important;
}
.mil-modal-details .mil-accent,
.mil-modal-details i.mil-accent,
.mil-modal-details h6 i {
  color: #1240b2 !important; /* Keep brand accent colors clean blue */
}

/* Custom styles for Fancybox close button and arrows */
.fancybox-close-small {
  color: #333333 !important; /* Dark close button for light details panel */
  width: 44px !important;
  height: 44px !important;
  padding: 10px !important;
  z-index: 99999 !important;
  opacity: 0.7 !important;
  transition: opacity 0.3s ease !important;
}

.fancybox-close-small:hover {
  opacity: 1 !important;
}

.fancybox-close-small svg {
  filter: drop-shadow(0px 1px 2px rgba(255, 255, 255, 0.8)) !important;
}

.fancybox-navigation .fancybox-button {
  background: rgba(255, 255, 255, 0.75) !important; /* Light circular overlay navigation arrows */
  color: #333333 !important;
  border-radius: 50% !important;
  width: 55px !important;
  height: 55px !important;
  margin: 0 30px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.3s, transform 0.3s, color 0.3s !important;
  z-index: 99999 !important;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.fancybox-navigation .fancybox-button:hover {
  background: #ffffff !important;
  color: #000000 !important;
  transform: scale(1.05) !important;
}

.fancybox-navigation .fancybox-button div {
  padding: 0 !important;
}

.fancybox-navigation .fancybox-button[disabled] {
  opacity: 0.15 !important;
  pointer-events: none !important;
}

/* Center the full-screen html slides vertically and horizontally */
.fancybox-slide--current.fancybox-slide--html {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Ensure the inner grid row uses full width */
.mil-project-modal > .row {
  width: 100% !important;
}

/* ==========================================================================
   EXTRACTED CUSTOM STYLES FROM INDEX.HTML
   ========================================================================== */

        /* Remove top and horizontal spacing from parent frame container */
        .mil-frame {
            padding-top: 0 !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        /* Top Navigation styling */
        .mil-top-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-grow: 1;
            margin: 0 40px;
        }

        .mil-top-nav ul {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 35px;
        }

        .mil-top-nav ul li a {
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #111111;
            position: relative;
            transition: color 0.3s ease;
            text-decoration: none;
        }

        .mil-top-nav ul li a i {
            display: none !important;
        }

        /* Hover animation - underline slide-in */
        .mil-top-nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #1240b2;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .mil-top-nav ul li a:hover::after,
        .mil-top-nav ul li a.mil-active::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .mil-top-nav ul li a:hover {
            color: #1240b2 !important;
        }

        .mil-top-nav ul li a.mil-active {
            color: #1240b2 !important;
        }


        /* Fixed header — fully transparent over hero, glass on scroll */
        .mil-frame .mil-frame-top {
            position: fixed !important;
            top: 0 !important;
            left: 0 !important;
            width: 100% !important;
            height: 90px !important;
            padding: 0 60px !important;
            background-color: transparent !important;
            -webkit-backdrop-filter: none !important;
            backdrop-filter: none !important;
            border-bottom: none !important;
            box-shadow: none !important;
            z-index: 9999 !important;
            pointer-events: all !important;
            margin: 0 !important;
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            transition: height 0.4s ease, background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease !important;
        }

        /* Scrolled state — glassmorphism white header with reduced height */
        body .mil-frame .mil-frame-top.header-scrolled {
            height: 70px !important;
            background-color: rgba(255, 255, 255, 0.85) !important;
            -webkit-backdrop-filter: blur(18px) !important;
            backdrop-filter: blur(18px) !important;
            box-shadow: 0 2px 24px rgba(0,0,0,0.08) !important;
        }

        /* Logo display — show light SVG always, hide dark SVG */
        .mil-logo img:not(.mil-logo-img-dark) {
            display: inline-block !important;
        }
        .mil-logo-img-dark {
            display: none !important;
        }

      

        /* On scroll (header-scrolled): logo back to original dark colour */
        .mil-frame .mil-frame-top.header-scrolled .mil-logo img:not(.mil-logo-img-dark) {
            filter: none !important;
        }

        /* Fancybox navigation arrow icons styling overrides */
        .fancybox-navigation .fancybox-button {
            padding: 0 !important;
            background: rgba(0, 0, 0, 0.4) !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            width: 55px !important;
            height: 55px !important;
            transition: all 0.3s ease !important;
        }

        .fancybox-navigation .fancybox-button div {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            width: 24px !important;
            height: 24px !important;
        }

        .fancybox-navigation .fancybox-button svg {
            width: 24px !important;
            height: 24px !important;
            fill: #ffffff !important;
        }

        .fancybox-navigation .fancybox-button:hover:not([disabled]) {
            background: #1240b2 !important;
        }

        .fancybox-navigation .fancybox-button[disabled] {
            opacity: 0.15 !important;
            cursor: default !important;
        }

        /* Menu button default state: hide on desktop */
        .mil-menu-btn {
            display: none !important;
        }

        /* Menu bars blue always */
        .mil-menu-btn span,
        .mil-menu-btn span::before,
        .mil-menu-btn span::after {
            background-color: #1240b2 !important;
        }

        /* Restore padding for the bottom frame overlay */
        .mil-frame-bottom {
            padding: 0 60px 60px 60px !important;
        }

        /* Creative Layered About Photo Layout */
        .mil-about-photo-wrapper {
            position: relative;
            width: 100%;
            max-width: 440px;
            margin: 0 auto 90px;
            padding: 20px 20px 20px 0;
            z-index: 1;
            perspective: 1000px;
        }

        /* Ambient glowing gradient behind photo */
        .mil-photo-glow {
            position: absolute;
            top: 20%;
            left: 20%;
            width: 65%;
            height: 65%;
            background: radial-gradient(circle, rgba(0, 122, 255, 0.15) 0%, rgba(138, 43, 226, 0.15) 60%, rgba(255,255,255,0) 100%);
            filter: blur(40px);
            z-index: -2;
            animation: ambientGlow 8s ease-in-out infinite alternate;
            pointer-events: none;
        }

        @keyframes ambientGlow {
            0% { transform: scale(1) translate(0, 0); opacity: 0.8; }
            100% { transform: scale(1.15) translate(15px, -15px); opacity: 1.2; }
        }

        /* Offset outline behind the photo - double offset line with gradient borders */
        .mil-photo-outline {
            position: absolute;
            top: 40px;
            left: 30px;
            right: 0;
            bottom: 0;
            border: 2px solid #000000;
            border-radius: 0;
            z-index: -1;
            transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* Main photo frame style */
        .mil-photo-main {
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
            border: 1px solid rgba(0, 0, 0, 0.04);
            padding-bottom: 140% !important; /* Spacing ratio */
            background-color: #f7f7f7;
            transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* Floating Circular Badge Sticker */
        .mil-photo-badge {
            position: absolute;
            top: -20px;
            right: 0;
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #111111 0%, #222222 100%);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            z-index: 3;
            animation: rotateBadge 15s linear infinite;
            pointer-events: none;
            transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }
        
        .mil-badge-circle {
            width: 100%;
            height: 100%;
        }

        .mil-badge-text {
            font-size: 8px;
            font-weight: 700;
            fill: #ffffff;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .mil-badge-center-icon {
            position: absolute;
            color: #007aff;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: counterRotate 15s linear infinite;
        }

        @keyframes rotateBadge {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes counterRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(-360deg); }
        }

        /* Floating Glassmorphic Experience Card */
        .mil-experience-card {
            position: absolute;
            bottom: 50px;
            left: -30px;
            background: rgba(255, 255, 255, 0.65) !important;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 0;
            padding: 18px 24px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            z-index: 3;
            transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .mil-exp-number {
            font-size: 32px;
            font-weight: 800;
            background: linear-gradient(135deg, #000000 30%, #007aff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }

        .mil-exp-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .mil-exp-title {
            font-size: 9px;
            font-weight: 600;
            color: #666666;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            line-height: 1;
        }

        .mil-exp-subtitle {
            font-size: 11px;
            font-weight: 800;
            color: #000000;
            letter-spacing: 1px;
            text-transform: uppercase;
            line-height: 1;
        }

        /* Specialty pill card badge */
        .mil-specialty-pill {
            position: absolute;
            bottom: -15px;
            right: 20px;
            background: rgba(0, 0, 0, 0.9) !important;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 8px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
            z-index: 3;
            color: #ffffff !important;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        .mil-specialty-pill span {
            color: #ffffff !important;
        }

        .mil-specialty-pill i {
            color: #007aff;
        }

        /* Hover interactions for depth */
        .mil-about-photo-wrapper:hover .mil-photo-main {
            transform: translateY(-6px) rotateY(-2deg);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12) !important;
        }

        .mil-about-photo-wrapper:hover .mil-photo-outline {
            transform: translate(10px, 10px);
            border-color: #007aff;
        }

        .mil-about-photo-wrapper:hover .mil-experience-card {
            transform: translateY(-8px) scale(1.03);
            background: rgba(255, 255, 255, 0.8) !important;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        .mil-about-photo-wrapper:hover .mil-specialty-pill {
            transform: translateY(3px) scale(1.03);
            background: #007aff !important;
            border-color: #007aff;
        }

        .mil-about-photo-wrapper:hover .mil-photo-badge {
            transform: scale(1.03);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
        }

        /* Responsive adjustments for smaller viewports */
        @media screen and (max-width: 1200px) {
            .mil-frame-top {
                padding: 0 30px !important;
                height: 70px !important;
            }
            .mil-frame-bottom {
                padding: 30px !important;
            }
            .mil-about-photo-wrapper {
                max-width: 380px;
                padding-left: 20px;
                padding-right: 0;
            }
            .mil-experience-card {
                left: -15px;
                bottom: 30px;
                padding: 14px 20px;
            }
            .mil-exp-number {
                font-size: 26px;
            }
        }

        /* Ensure filter buttons hover and active states have white text on blue background */
        .mil-filter-btn:hover,
        .mil-filter-btn.active,
        .mil-filter-btn:focus,
        .mil-filter-btn:active {
            color: #ffffff !important;
            background-color: #1240b2 !important;
            border-color: #1240b2 !important;
            opacity: 1 !important;
        }

        /* Hide redundant persistent menu close button when overlay menu is active */
        .mil-menu-frame.mil-active ~ .mil-frame .mil-menu-btn {
            opacity: 0 !important;
            pointer-events: none !important;
        }

        /* Responsive 3-column Masonry Grid Layout overrides for Selected Works */
        @media screen and (min-width: 992px) {
            .mil-portfolio-grid {
                display: block;
                column-count: 3;
                column-gap: 30px;
            }
            .mil-portfolio-card-wrapper {
                display: inline-block;
                width: 100% !important;
                float: none !important;
                flex: none !important;
                max-width: none !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
                margin-bottom: 30px;
                break-inside: avoid;
                page-break-inside: avoid;
            }
        }
        @media screen and (min-width: 768px) and (max-width: 991px) {
            .mil-portfolio-grid {
                display: block;
                column-count: 2;
                column-gap: 30px;
            }
            .mil-portfolio-card-wrapper {
                display: inline-block;
                width: 100% !important;
                float: none !important;
                flex: none !important;
                max-width: none !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
                margin-bottom: 30px;
                break-inside: avoid;
                page-break-inside: avoid;
            }
        }
        @media screen and (max-width: 767px) {
            .mil-portfolio-grid {
                display: block;
                column-count: 1;
            }
            .mil-portfolio-card-wrapper {
                display: block;
                width: 100% !important;
                float: none !important;
                flex: none !important;
                max-width: none !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
                margin-bottom: 30px;
                break-inside: avoid;
                page-break-inside: avoid;
            }
        }
        /* Hover Video Preview styles */
        .mil-cover.mil-playing .mil-card-poster,
        .mil-cover.mil-playing .mil-video-overlay-icon {
            opacity: 0 !important;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        
        /* Photography Masonry Layout Grid */
        .mil-photography-masonry {
            column-count: 3;
            column-gap: 20px;
            width: 100%;
        }
        .mil-photography-masonry .mil-masonry-item {
            display: inline-block;
            width: 100%;
            margin-bottom: 20px;
            break-inside: avoid;
            overflow: hidden;
            border-radius: 4px;
            transition: opacity 0.3s ease;
        }
        .mil-photography-masonry .mil-masonry-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .mil-photography-masonry .mil-masonry-item:hover img {
            transform: scale(1.05);
        }
        
        @media screen and (max-width: 991px) {
            .mil-photography-masonry {
                column-count: 2;
                column-gap: 15px;
            }
            .mil-photography-masonry .mil-masonry-item {
                margin-bottom: 15px;
            }
        }
        @media screen and (max-width: 767px) {
            .mil-photography-masonry {
                column-count: 1;
                column-gap: 0;
            }
            .mil-photography-masonry .mil-masonry-item {
                margin-bottom: 15px;
            }
        }

        /* Unified Mobile and Tablet Responsiveness & Spacing Fixes */
        @media screen and (max-width: 991px) {
            /* Header bar: fixed height, single row */
            .mil-frame-top {
                padding: 0 30px !important;
                min-height: auto !important;
                flex-wrap: nowrap !important;
                display: flex !important;
                justify-content: space-between !important;
                align-items: center !important;
                background-color: transparent !important;
            }
            .mil-logo {
                order: 1 !important;
            }
            .mil-header-actions {
                order: 2 !important;
                display: flex !important;
                align-items: center !important;
                position: relative !important;
                top: auto !important;
                right: auto !important;
                margin: 0 !important;
                padding: 0 !important;
            }
            .mil-menu-btn {
                display: flex !important;
                margin-left: 20px !important;
                pointer-events: all !important;
            }
            .mil-top-nav {
                display: none !important;
                position: absolute !important;
                top: 80px !important; /* Directly below the 80px header bar */
                left: 0 !important;
                width: 100% !important;
                background-color: rgba(255, 255, 255, 0.98) !important;
                backdrop-filter: blur(20px) !important;
                -webkit-backdrop-filter: blur(20px) !important;
                border-bottom: 1px solid rgba(0,0,0,0.06) !important;
                box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
                padding: 20px 30px !important;
                margin: 0 !important;
                box-sizing: border-box !important;
                z-index: 9999 !important;
            }
            .mil-top-nav.mil-active {
                display: flex !important;
                flex-direction: column !important;
                align-items: stretch !important;
            }
            .mil-top-nav ul {
                display: flex !important;
                flex-direction: column !important;
                gap: 5px !important;
                width: 100% !important;
                padding: 0 !important;
                margin: 0 !important;
            }
            .mil-top-nav ul li {
                width: 100% !important;
                flex: none !important;
            }
            .mil-top-nav ul li a {
                font-size: 13px !important;
                font-weight: 600 !important;
                letter-spacing: 1.5px !important;
                color: #111111 !important;
                display: flex !important;
                flex-direction: row !important;
                align-items: center !important;
                gap: 12px !important;
                padding: 12px 0 !important;
                border-bottom: 1px solid rgba(0,0,0,0.05) !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: nowrap !important;
            }
            /* Hide hover underline transitions on mobile dropdown */
            .mil-top-nav ul li a::after {
                display: none !important;
            }
            .mil-top-nav ul li a i {
                display: inline-block !important;
                font-size: 16px !important;
                color: #1240b2 !important;
                width: 20px !important;
                text-align: center !important;
                margin: 0 !important;
            }
        }

        @media screen and (max-width: 767px) {
            /* Padding and spacing optimizations */
            .mil-p-120-120 {
                padding-top: 60px !important;
                padding-bottom: 60px !important;
            }
            .mil-p-120-90 {
                padding-top: 60px !important;
                padding-bottom: 45px !important;
            }
            .mil-p-120-0 {
                padding-top: 60px !important;
                padding-bottom: 0 !important;
            }
            .mil-p-0-120 {
                padding-top: 0 !important;
                padding-bottom: 60px !important;
            }
            .mil-frame-bottom {
                padding: 15px !important;
            }

            /* Responsive typography scale */
            h1, .mil-h1 {
                font-size: 34px !important;
                line-height: 1.25 !important;
            }
            h2, .mil-h2 {
                font-size: 26px !important;
                line-height: 1.3 !important;
            }
            h3, .mil-h3 {
                font-size: 22px !important;
                line-height: 1.3 !important;
            }

            /* Header adjustments for smaller phones */
            .mil-frame-top {
                padding: 10px 20px !important;
            }
            .mil-top-nav {
                margin: 6px 0 0 0 !important;
                justify-content: flex-start !important;
            }
            .mil-top-nav ul {
                gap: 16px !important;
                padding: 0 5px !important;
            }
            .mil-top-nav ul li a {
                font-size: 9px !important;
            }
            .mil-top-nav ul li a i {
                font-size: 14px !important;
            }

            /* Portfolio Grid layout fixes */
            .mil-portfolio-grid {
                display: flex !important;
                flex-direction: column !important;
                gap: 30px !important;
            }
            .mil-portfolio-card-wrapper {
                width: 100% !important;
                max-width: 100% !important;
                flex: 0 0 100% !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
                margin-bottom: 0 !important;
            }

            /* Metric card text-wrap fixes */
            .mil-stat-card {
                padding: 20px 8px !important;
            }
            .mil-stat-number {
                font-size: 28px !important;
                margin: 8px 0 3px 0 !important;
            }
            .mil-stat-label {
                white-space: normal !important;
                overflow: visible !important;
                text-overflow: clip !important;
                text-align: center !important;
                line-height: 1.3 !important;
                font-size: 10px !important;
            }

            /* Layered photo layout overflow fixes */
            .mil-about-photo-wrapper {
                max-width: 280px !important;
                padding-left: 0 !important;
                padding-right: 0 !important;
                margin-top: 30px !important;
                margin-bottom: 50px !important;
            }
            .mil-photo-outline {
                top: 15px !important;
                left: 15px !important;
            }
            .mil-experience-card {
                left: 5px !important;
                bottom: 15px !important;
                padding: 8px 12px !important;
                gap: 8px !important;
            }
            .mil-exp-number {
                font-size: 20px !important;
            }
            .mil-exp-subtitle {
                font-size: 8.5px !important;
            }
            .mil-photo-badge {
                width: 70px !important;
                height: 70px !important;
                top: -15px !important;
                right: -10px !important;
            }
            .mil-specialty-pill {
                right: 5px !important;
                bottom: -10px !important;
                padding: 6px 12px !important;
                font-size: 8px !important;
            }

            /* Map frame scroll trap fix */
            .mil-map iframe {
                height: 280px !important;
            }
        }

        #portfolio-grid.mil-grid-hidden {
            display: none !important;
        }

        /* Custom layout overrides for hero text-wrapping, button grouping and footer design */
        .mil-banner-buttons {
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            gap: 25px !important;
            margin-bottom: 60px !important;
            flex-wrap: nowrap !important;
        }

        .mil-mobile-br {
            display: none !important;
        }

        .mil-floating-back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background: #1240b2;
            color: #ffffff !important;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            z-index: 99999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
            text-decoration: none;
        }

        .mil-floating-back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .mil-floating-back-to-top:hover {
            background: #111111;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .mil-floating-back-to-top i {
            font-size: 14px;
        }

        .mil-whatsapp-btn:hover {
            background: #128c7e !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37,211,102,0.4) !important;
        }

        .mil-banner-buttons a {
            white-space: nowrap !important;
        }

        /* Footer styling for light theme mode compatibility */
        footer#contact.mil-dark-bg {
            background-color: #fafafa !important;
            border-top: 1px solid rgba(0,0,0,0.06) !important;
        }
        footer#contact h5.mil-muted {
            color: #111111 !important;
        }
        footer#contact p.mil-light-soft {
            color: #555555 !important;
        }
        .mil-footer-contact-list li {
            color: #333333 !important;
            font-size: 13.5px !important;
        }
        .mil-footer-contact-list li a,
        .mil-footer-contact-list li span {
            color: #333333 !important;
        }
        .mil-footer-contact-list li a:hover {
            color: #1240b2 !important;
        }

        /* Compact Contact Form layout styles */
        .mil-footer-form {
            gap: 10px !important;
        }
        .mil-footer-form input,
        .mil-footer-form textarea {
            background-color: #ffffff !important;
            border: 1px solid rgba(0,0,0,0.15) !important;
            color: #111111 !important;
            border-radius: 4px !important;
            padding: 8px 12px !important;
            font-size: 12px !important;
            height: auto !important;
            width: 100% !important;
            box-sizing: border-box !important;
            margin: 0 !important;
        }
        .mil-footer-form textarea {
            height: 70px !important;
            resize: none !important;
        }
        .mil-footer-form input::placeholder,
        .mil-footer-form textarea::placeholder {
            color: #888888 !important;
        }
        .mil-footer-form input:focus,
        .mil-footer-form textarea:focus {
            border-color: #1240b2 !important;
            outline: none !important;
        }
        .mil-footer-form button[type="submit"] {
            padding: 10px 20px !important;
            font-size: 11px !important;
            border-radius: 30px !important;
            align-self: flex-start !important;
            margin-top: 5px !important;
        }

        @media screen and (max-width: 991px) {
            .mil-frame .mil-frame-top {
                height: 70px !important;
                padding: 0 25px !important;
            }
            body .mil-frame .mil-frame-top.header-scrolled {
                height: 60px !important;
            }
            .mil-top-nav {
                top: 70px !important;
            }
            body .mil-frame-top.header-scrolled ~ .mil-top-nav {
                top: 60px !important;
            }
            .mil-banner {
                height: auto !important;
                padding-top: 0 !important;
                padding-bottom: 80px !important;
            }
            .mil-banner .mil-banner-content {
                padding-top: 140px !important;
            }
            .mil-banner .container {
                height: auto !important;
                align-items: flex-start !important;
            }
            .mil-mobile-br {
                display: block !important;
            }
            .mil-desktop-br {
                display: none !important;
            }
            .mil-banner-buttons {
                gap: 15px !important;
                margin-bottom: 40px !important;
            }
            .mil-banner-buttons a {
                font-size: 11px !important;
                padding: 12px 20px !important;
                white-space: nowrap !important;
            }
        }

        @media screen and (max-width: 576px) {
            .mil-frame .mil-frame-top {
                height: 60px !important;
                padding: 0 20px !important;
            }
            body .mil-frame .mil-frame-top.header-scrolled {
                height: 50px !important;
            }
            .mil-top-nav {
                top: 60px !important;
            }
            body .mil-frame-top.header-scrolled ~ .mil-top-nav {
                top: 50px !important;
            }
            .mil-banner {
                padding-top: 0 !important;
            }
            .mil-banner .mil-banner-content {
                padding-top: 110px !important;
            }
            .mil-banner-buttons {
                gap: 10px !important;
            }
            .mil-banner-buttons a {
                font-size: 10px !important;
                padding: 10px 14px !important;
                white-space: nowrap !important;
            }
            .mil-floating-back-to-top {
                bottom: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
            }
        }

        @media screen and (max-width: 360px) {
            .mil-banner-buttons a {
                font-size: 9px !important;
                padding: 8px 12px !important;
            }
        }
    

/* Custom classes replacing static inline styles */
.mil-btn-about-me {
    margin: 0 !important;
}
.mil-about-feature-grid-custom {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding-top: 48px;
}
.mil-services-section-custom {
    background: #ffffff;
    padding: 80px 0 100px;
}
.mil-services-subtitle-custom {
    color: #888888 !important;
    margin-bottom: 20px;
}
.mil-services-text-custom {
    color: #555555;
    font-size: 15px;
    line-height: 1.7;
    max-width: 580px;
}

/* Service Card with Image */
.mil-service-card-img {
    padding: 0 !important;
    background: transparent !important;
    overflow: hidden;
}

.mil-service-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.mil-service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mil-service-card-img:hover .mil-service-img-wrap img {
    transform: scale(1.06);
}

.mil-service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 60%);
    pointer-events: none;
}

.mil-service-img-title {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    padding: 18px 4px 8px;
    margin: 0;
    line-height: 1.35;
}
.mil-photography-desc-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}
.mil-hidden-modals {
    display: none !important;
}

/* ============================================
   METRICS & IMPACT SECTION - SITE STYLE MATCH
   ============================================ */

.mil-metrics-section-light {
    background: #ffffff;
    padding: 0 0 0 0;
    border-top: 1px solid rgba(0,0,0,0.07);
}

/* Header Row */
.mil-metrics-header-row {
    padding: 80px 0 50px;
}

.mil-metrics-suptitle {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 20px;
}

.mil-metrics-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    color: #111111;
    margin: 0;
}

.mil-metrics-accent {
    color: #1240b2;
}

.mil-metrics-divider-vert {
    width: 1px;
    height: 100px;
    background: rgba(0,0,0,0.12);
    margin: 0 auto;
}

.mil-metrics-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 12px;
}

.mil-metrics-desc strong {
    font-weight: 500;
    color: #333333;
}

/* Group Wrapper */
.mil-metrics-group-wrap {
    padding: 50px 0;
}

/* Group Label */
.mil-metrics-group-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1240b2;
    padding: 0;
    background: transparent;
    border: none;
    border-left: 3px solid #1240b2;
    padding-left: 14px;
    margin-bottom: 30px;
}

.mil-metrics-group-label svg {
    stroke: #1240b2;
    flex-shrink: 0;
}

.mil-metrics-group-label-green {
    color: #16a34a;
    border-left-color: #16a34a;
}

.mil-metrics-group-label-green svg {
    stroke: #16a34a;
}

/* Cards Row */
.mil-metrics-cards-row {
    row-gap: 20px;
}

/* Metric Card - Light (matching .mil-service-card-sm style) */
.mil-metric-card-light {
    background: #ffffff;
    border: none;
    border-radius: 0;
    padding: 35px 28px;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.03) 0px 6px 20px 0px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.mil-metric-card-light:hover {
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 30px 0px;
    transform: translateY(-2px);
}

/* Card Icon (matching .mil-service-icon style - square bg) */
.mil-metric-card-icon {
    width: 46px;
    height: 46px;
    background: rgba(18, 64, 178, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 0;
}

.mil-metric-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #1240b2;
}

.mil-metric-icon-green {
    background: rgba(22, 163, 74, 0.07);
}

.mil-metric-icon-green svg {
    stroke: #16a34a;
}

/* Card Number */
.mil-metric-card-number {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #111111;
    line-height: 1;
    margin-bottom: 10px;
}

.mil-metric-number-green {
    color: #16a34a !important;
}

/* Card Title */
.mil-metric-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Card Desc */
.mil-metric-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: #666666;
    margin: 0;
}

/* Impact card variant - no extra border needed since base card has no border */
.mil-metric-card-impact {
    background: #ffffff;
}

/* Quote Bar */
.mil-metrics-quote-bar {
    background: #f7f8fa;
    border-top: 1px solid rgba(0,0,0,0.07);
    padding: 40px 0;
}

.mil-metrics-quote-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
}

.mil-metrics-quote-block p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: #555555;
    margin: 0;
}

.mil-quote-icon {
    font-family: Georgia, serif;
    font-size: 48px;
    line-height: 1;
    color: #1240b2;
    opacity: 0.35;
    flex-shrink: 0;
    margin-top: -8px;
}

.mil-quote-star {
    width: 36px;
    height: 36px;
    background: rgba(18, 64, 178, 0.07);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mil-quote-star i {
    color: #1240b2;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .mil-metrics-header-row {
        padding: 60px 0 40px;
    }

    .mil-metrics-group-label {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .mil-metrics-quote-left,
    .mil-metrics-quote-right {
        padding: 10px 0;
    }
}

@media (max-width: 767px) {
    .mil-metrics-headline {
        font-size: 32px;
    }

    .mil-metric-card-light {
        padding: 28px 20px;
    }

    .mil-metric-card-number {
        font-size: 34px;
    }
}

/* ============================================
   STICKY HERO SECTION EFFECT
   Sections scroll over the fixed hero video
   ============================================ */

/* CRITICAL: mil-wrapper overflow:hidden breaks position:sticky.
   Override it to allow sticky to work on .mil-banner child */
.mil-wrapper {
    overflow: visible !important;
}

/* Hero sticks to top while content scrolls over it */
.mil-banner {
    position: sticky !important;
    top: 0 !important;
    z-index: 0 !important;
    height: 100vh !important;
}

/* All sections after hero scroll over it with solid bg */
#about,
#services,
#portfolio,
#metrics,
footer#contact,
.mil-copyright-bar {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
}

.mil-metrics-section-light {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
}

footer.mil-dark-bg {
    position: relative !important;
    z-index: 1 !important;
}

/* mil-content and swupMain should not clip sticky */
.mil-content,
#swupMain {
    position: relative;
    z-index: 0;
    overflow: visible !important;
}

/* ============================================
   ABOUT SECTION FADE PHOTO SLIDER
   ============================================ */
.mil-fade-slider {
    position: relative;
    overflow: hidden;
}

.mil-fade-slide {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out !important;
    z-index: 1;
}

.mil-fade-slide.active {
    opacity: 1;
    z-index: 2;
}

