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

Name:       Plax
Version:    1.1
Author:	    bslthemes
Website:    https://bslthemes.com/
Developer:	millerDigitalDesign (https://themeforest.net/user/millerdigitaldesign/)

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

/* -------------------------------------------
   UX Improvements & Design Tokens (Based on ux.md)
------------------------------------------- */
:root {
  --primary_color: #F27457;
  --secondary_color: #03A6A6;
  --tertiary_color: #A0CDCD;

  --bg: #0b1016;
  --surface-1: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --surface-3: rgba(255, 255, 255, 0.08);
  --surface-solid-1: #0f1620;
  --surface-solid-2: #121c28;
  --surface-solid-3: #172233;
  --border-weak: rgba(242, 250, 250, 0.12);
  --border-strong: rgba(242, 250, 250, 0.18);

  --text-main: rgba(242, 250, 250, 0.92);
  --text-soft: rgba(242, 250, 250, 0.74);
  --text-muted: rgba(242, 250, 250, 0.62);
  --text-light: rgba(242, 250, 250, 0.92);

  --color-primary: var(--primary_color);
  --color-secondary: var(--secondary_color);
  --color-tertiary: var(--tertiary_color);
  --color-dark: rgb(13, 81, 82);
  --color-dark-2: rgb(27, 23, 23);
  --color-light: rgb(242, 250, 250);
  --color-white: #ffffff;
  
  /* Spacing & Layout */
  --container-padding: 2rem;
  --header-height: 80px;
  
  /* Animation */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;

  --font-mono: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

html {
  color-scheme: dark;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f6f8fb;
  --surface-1: rgba(11, 18, 32, 0.04);
  --surface-2: rgba(11, 18, 32, 0.06);
  --surface-3: rgba(11, 18, 32, 0.08);
  --surface-solid-1: #ffffff;
  --surface-solid-2: #f0f4f9;
  --surface-solid-3: #e8eef6;
  --border-weak: rgba(11, 18, 32, 0.10);
  --border-strong: rgba(11, 18, 32, 0.16);
  --text-main: rgba(11, 18, 32, 0.92);
  --text-soft: rgba(11, 18, 32, 0.74);
  --text-muted: rgba(11, 18, 32, 0.72);
  --text-light: rgba(11, 18, 32, 0.92);
}

@media (max-width: 1280px) {
  :root {
    --container-padding: 1.5rem;
  }
}

@media (min-width: 1366px) {
  :root {
    --container-padding: 2.2rem;
  }
}

@media (min-width: 1440px) {
  :root {
    --container-padding: 2.5rem;
  }
}

@media (min-width: 1920px) {
  :root {
    --container-padding: 3rem;
  }
}

/* Global Interaction & Accessibility */
a, button, .mil-btn, input[type="submit"], .mil-cursor-pointer {
  cursor: pointer;
  transition: var(--transition-normal);
}

a:hover, button:hover {
  opacity: 0.9;
}

/* Focus States for Accessibility */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

body,
.mil-top-panel,
.mil-top-menu,
.mil-menu-buttons,
.mil-btn,
.mil-input,
.mil-preloader {
  transition: background-color var(--transition-normal), color var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), filter var(--transition-normal), opacity var(--transition-normal);
}

.mil-theme-toggle {
  position: fixed;
  right: 30px;
  bottom: 88px;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--surface-solid-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.mil-theme-toggle:hover {
  background: var(--color-secondary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(3, 166, 166, 0.4);
}

/* Sun icon (shown in dark mode) */
.mil-theme-toggle .mil-icon-sun {
  display: block;
}

.mil-theme-toggle .mil-icon-moon {
  display: none;
}

/* Moon icon (shown in light mode) */
html[data-theme="light"] .mil-theme-toggle .mil-icon-sun {
  display: none;
}

html[data-theme="light"] .mil-theme-toggle .mil-icon-moon {
  display: block;
}

html[data-theme="light"] .mil-theme-toggle {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

html[data-theme="light"] .mil-theme-toggle:hover {
  background: var(--color-secondary);
  color: #ffffff;
}

@media (max-width: 768px) {
  .mil-theme-toggle {
    right: 20px;
    bottom: 74px;
    width: 42px;
    height: 42px;
  }
}

/* -------------------------------------------
   Enhanced UX - Cards, Animations & Interactions
------------------------------------------- */

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* Enhanced card hover effects */
.mil-icon-box,
.mil-price-card,
.mil-blog-card,
blockquote.mil-with-bg {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mil-icon-box:hover,
.mil-price-card:hover,
.mil-blog-card:hover,
blockquote.mil-with-bg:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Light mode enhanced hover effects */
html[data-theme="light"] .mil-icon-box:hover,
html[data-theme="light"] .mil-price-card:hover,
html[data-theme="light"] .mil-blog-card:hover,
html[data-theme="light"] blockquote.mil-with-bg:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(11, 18, 32, 0.12), 0 4px 16px rgba(11, 18, 32, 0.08);
  border-color: rgba(3, 166, 166, 0.35);
  background-color: #ffffff;
}

html[data-theme="light"] .mil-icon-box {
  border: 1px solid transparent;
  background-color: var(--surface-solid-2);
}

html[data-theme="light"] .mil-icon-box:hover h5 {
  color: rgb(13, 81, 82);
}

html[data-theme="light"] .mil-icon-box:hover img {
  filter: brightness(0.9) saturate(1.2);
}

/* Image hover zoom effect */
.mil-image-frame {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.mil-image-frame img {
  transition: transform 0.4s ease;
}

.mil-image-frame:hover img {
  transform: scale(1.03);
}

/* Better focus states for forms */
.mil-input:focus,
textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(242, 116, 87, 0.15);
  outline: none;
}

/* Loading skeleton animation */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.mil-skeleton {
  background: linear-gradient(90deg, var(--surface-1) 25%, var(--surface-2) 50%, var(--surface-1) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Staggered animation for lists - DISABLED for direct display */
.mil-up {
  opacity: 1;
  transform: none;
}

.mil-up.mil-visible {
  opacity: 1;
  transform: none;
}

/* Better link underline animation */
.mil-footer-list a,
.mil-top-menu a {
  position: relative;
}

.mil-footer-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-primary);
  transition: width 0.3s ease;
}

.mil-footer-list a:hover::after {
  width: 100%;
}

/* Footer Social Icons */
.mil-footer-social {
  display: flex;
  gap: 12px;
}

.mil-social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--border-weak);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 16px;
  transition: var(--transition-normal);
}

.mil-social-icon:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Utility classes */
.mil-mr-10 {
  margin-right: 10px;
}

/* Improved spacing for mobile */
@media (max-width: 768px) {
  .mil-p-160-160 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  
  .mil-p-160-130 {
    padding-top: 60px !important;
    padding-bottom: 50px !important;
  }
  
  .mil-p-160-80 {
    padding-top: 60px !important;
    padding-bottom: 30px !important;
  }
  
  .mil-p-160-0 {
    padding-top: 60px !important;
  }
  
  .mil-p-0-160 {
    padding-bottom: 60px !important;
  }
  
  .mil-p-0-130 {
    padding-bottom: 50px !important;
  }
}

/* Better touch targets for mobile */
@media (max-width: 992px) {
  .mil-btn {
    min-height: 48px;
    min-width: 48px;
  }
  
  .mil-top-menu a {
    padding: 12px 16px;
  }
}

/* Glassmorphism effect for featured cards */
.mil-price-card.mil-featured {
  background: linear-gradient(135deg, rgba(242, 116, 87, 0.9) 0%, rgba(242, 116, 87, 0.75) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Subtle gradient backgrounds */
.mil-gradient-bg {
  background: linear-gradient(180deg, var(--surface-solid-1) 0%, var(--surface-solid-2) 100%);
}

/* Number counter animation enhancement */
.mil-counter {
  font-variant-numeric: tabular-nums;
}

/* Better blockquote styling */
blockquote {
  position: relative;
}

blockquote.mil-with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 40px;
  background: linear-gradient(135deg, transparent 0%, rgba(242, 116, 87, 0.03) 100%);
  pointer-events: none;
}

/* -------------------------------------------
   Hero Banner Enhancement (UI/UX Pro Max)
------------------------------------------- */

/* Hero Banner Container */
.mil-banner-hero {
  position: relative;
  min-height: 420px;
  padding-top: 160px;
  padding-bottom: 80px;
  overflow: hidden;
}

.mil-banner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(3, 166, 166, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 30% 80%, rgba(242, 116, 87, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Hero Background Glow */
.mil-hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(3, 166, 166, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Hero Title */
.mil-hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text-main);
  position: relative;
  z-index: 1;
}

html:not([data-theme="light"]) .mil-hero-title {
  background: linear-gradient(135deg, rgba(242, 250, 250, 1) 0%, rgba(160, 205, 205, 0.9) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

html[data-theme="light"] .mil-hero-title {
  background: linear-gradient(135deg, rgb(13, 81, 82) 0%, rgb(3, 166, 166) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero Subtitle */
.mil-hero-subtitle {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text-soft);
  position: relative;
  z-index: 1;
}

html:not([data-theme="light"]) .mil-hero-subtitle {
  background: linear-gradient(90deg, rgba(242, 116, 87, 0.95) 0%, rgba(3, 166, 166, 0.9) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

html[data-theme="light"] .mil-hero-subtitle {
  background: linear-gradient(90deg, rgb(242, 116, 87) 0%, rgb(3, 166, 166) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Modern Breadcrumbs */
.mil-breadcrumbs-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border-weak);
  backdrop-filter: blur(8px);
}

.mil-breadcrumbs-modern li {
  display: flex;
  align-items: center;
}

.mil-breadcrumbs-modern li::after {
  content: "›";
  margin: 0 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.mil-breadcrumbs-modern li:last-child::after {
  display: none;
}

.mil-breadcrumbs-modern li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  transition: var(--transition-fast);
}

.mil-breadcrumbs-modern li a:hover {
  color: var(--color-primary);
}

.mil-breadcrumbs-modern li:last-child a {
  color: var(--color-secondary);
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .mil-banner-hero {
    min-height: 360px;
    padding-top: 140px;
    padding-bottom: 60px;
  }
  
  .mil-hero-badge {
    padding: 10px 18px;
    font-size: 14px;
  }
  
  .mil-hero-bg-glow {
    width: 400px;
    height: 300px;
  }
}

@media (max-width: 576px) {
  .mil-banner-hero {
    min-height: 320px;
    padding-top: 120px;
    padding-bottom: 50px;
  }
  
  .mil-hero-badge {
    padding: 8px 14px;
    font-size: 13px;
    gap: 6px;
  }
  
  .mil-badge-icon {
    font-size: 14px;
  }
}

/* -------------------------------------------
   End Enhanced UX
------------------------------------------- */

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

1. common
    - main
    - typography
    - breadcrumbs
    - button
    - frames
    - spaces
2. components
    - preloader
    - scrollbar
    - back to top
    - top panel
    - top menu
    - menu button
    - banner
    - content list
    - brands
    - facts
    - testimonials
    - accordion
    - illustrations
    - steps
    - icon box
    - team
    - vacancie
    - blog
    - comments
    - form
    - text lists
    - price
    - footer

--------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Questrial");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500;600;700&display=swap");
/* -------------------------------------------

main

------------------------------------------- */
html,
body {
  padding: 0;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  background-color: var(--bg);
  color: var(--text-main);
}

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

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

.container {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.mil-relative {
  position: relative;
}

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

typography

------------------------------------------- */
* {
  font-family: var(--font-mono);
  color: var(--text-main);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 600;
  font-family: var(--font-mono);
  line-height: 1.3;
  letter-spacing: -0.04em;
  color: var(--text-main);
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
.h1 span,
.h2 span,
.h3 span,
.h4 span,
.h5 span,
.h6 span {
  font-weight: 600;
  font-family: var(--font-mono);
  line-height: 1.3;
  letter-spacing: -0.04em;
}

h1,
.h1 {
  font-size: 72px;
}
h1.mil-display,
.h1.mil-display {
  font-size: 90px;
  line-height: 1.15;
}
@media screen and (max-width: 992px) {
  h1,
  .h1 {
    font-size: 56px;
  }
  h1.mil-display,
  .h1.mil-display {
    font-size: 56px;
  }
}

h2,
.h2 {
  font-size: 52px;
}
@media screen and (max-width: 992px) {
  h2,
  .h2 {
    font-size: 34px;
  }
}

h4,
.h4 {
  font-size: 30px;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 992px) {
  h4,
  .h4 {
    font-size: 26px;
  }
}

h5,
.h5 {
  font-size: 20px;
  letter-spacing: -0.02em;
}

h6,
.h6 {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.mil-text-xs {
  font-size: 14px;
}

.mil-text-s {
  font-size: 16px;
}
@media screen and (max-width: 992px) {
  .mil-text-s {
    font-size: 15px;
  }
}

.mil-text-m {
  font-size: 16px;
}
@media screen and (max-width: 992px) {
  .mil-text-m {
    font-size: 15px;
  }
}

.mil-text-xl {
  font-size: 28px;
}

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

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

.mil-light {
  color: rgb(242, 250, 250);
}

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

.mil-pale {
  color: rgba(242, 250, 250, 0.42);
}

.mil-pale-2 {
  color: rgba(242, 250, 250, 0.52);
}

.mil-dark-soft {
  color: rgb(160, 205, 205);
}
.mil-dark-soft * {
  color: rgb(160, 205, 205);
}

.mil-accent {
  color: rgb(242, 116, 87);
}

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

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

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

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

@media (max-width: 1200px) {
  .mil-sm-text-left {
    text-align: left;
  }
}

blockquote {
  font-size: 24px;
}
blockquote.mil-center {
  text-align: center;
}
blockquote img {
  margin: 0 auto;
  width: 60px;
  height: 60px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
}
blockquote.mil-with-bg {
  background-color: var(--surface-solid-2);
  border: solid 1px var(--border-weak);
  border-radius: 40px;
  padding: 48px 28px;
}
blockquote.mil-with-bg-2 {
  background: linear-gradient(180deg, rgba(3, 166, 166, 0.14) 0%, rgba(242, 116, 87, 0.08) 100%);
  background-color: var(--surface-solid-2);
  border: solid 1px var(--border-weak);
  border-radius: 40px;
  padding: 48px 28px;
}
blockquote.mil-lg {
  padding: 64px;
}
@media screen and (max-width: 992px) {
  blockquote.mil-lg {
    padding: 48px 24px;
  }
}
blockquote .mil-customer {
  display: flex;
  align-items: center;
}
blockquote .mil-customer img {
  margin-right: 15px;
  margin-left: 0;
}
blockquote svg.mil-accent path {
  fill: rgb(242, 116, 87);
}
blockquote.mil-dark {
  background: linear-gradient(0deg, #224D50 0%, #1C6360 100%);
}

@media (max-width: 1200px) {
  br {
    display: none;
  }
}

.mil-hr {
  background-color: var(--border-weak);
  height: 1px;
  width: 100%;
}

.mil-text-img img {
  width: 100px;
  display: inline;
}
@media (max-width: 992px) {
  .mil-text-img img {
    width: 70px;
  }
}

.mil-text-gradient {
  color: rgb(255, 255, 255);
}

@supports (--css: variables) {
  .mil-text-gradient {
    background: linear-gradient(to right, rgb(160, 205, 205), rgb(242, 250, 250));
    color: transparent;
    background-clip: text;
  }
}
.mil-text-gradient-2 {
  color: rgb(13, 81, 82);
}

@supports (--css: variables) {
  .mil-text-gradient-2 {
    background: linear-gradient(to right, rgb(13, 81, 82), rgb(3, 166, 166));
    color: transparent;
    background-clip: text;
  }
}
.mil-text-gradient-3 {
  color: rgb(13, 81, 82);
}

@supports (--css: variables) {
  .mil-text-gradient-3 {
    background: linear-gradient(to right, rgb(13, 81, 82), 50%, rgba(13, 81, 82, 0.8));
    color: transparent;
    background-clip: text;
  }
}
img,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
}

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

breadcrumbs

------------------------------------------- */
.mil-breadcrumbs {
  display: flex;
}
.mil-breadcrumbs.mil-center {
  justify-content: center;
}
.mil-breadcrumbs li {
  list-style-type: none;
}
.mil-breadcrumbs li:after {
  content: "|";
  margin: 0 15px;
  color: rgb(160, 205, 205);
}
.mil-breadcrumbs li a {
  font-family: "Switzer-Variable";
  font-size: 14px;
  font-weight: 500;
}
.mil-breadcrumbs li a:hover {
  color: rgb(242, 116, 87);
}
.mil-breadcrumbs li:last-child {
  opacity: 0.4;
  cursor: not-allowed;
}
.mil-breadcrumbs li:last-child a {
  pointer-events: none;
}
.mil-breadcrumbs li:last-child:after {
  display: none;
  margin: 0;
}
.mil-breadcrumbs.mil-pub-info li {
  opacity: 0.4;
  cursor: default;
}
.mil-breadcrumbs.mil-pub-info li a {
  pointer-events: none;
}

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

buttons

------------------------------------------- */
.mil-btn {
  border: none;
  white-space: nowrap;
  background-color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-family: "Switzer-Variable";
  font-weight: 600;
  color: var(--color-white);
  transition: var(--transition-normal);
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  cursor: pointer;
}
.mil-btn.mil-fw {
  width: 100%;
}
.mil-btn.mil-sm {
  padding: 0 20px;
  height: 48px;
  font-size: 16px;
}
.mil-btn.mil-m {
  padding: 0 30px;
  height: 56px;
  font-size: 16px;
}
.mil-btn.mil-md {
  padding: 0 30px;
  height: 72px;
  font-size: 16px;
}
@media screen and (max-width: 992px) {
  .mil-btn.mil-md {
    padding: 0 25px;
    height: 62px;
  }
}
.mil-btn.mil-border {
  color: var(--text-main);
  border: solid 1px var(--border-strong);
  background-color: transparent;
}
.mil-btn.mil-border:hover {
  background-color: var(--surface-3);
  color: var(--text-main);
}
.mil-btn.mil-light {
  border: solid 1px var(--border-weak);
  background-color: var(--surface-solid-2);
  color: var(--text-main);
}
.mil-btn.mil-grey {
  background-color: rgb(196, 196, 196);
  color: var(--color-white);
}
.mil-btn.mil-transp {
  background-color: transparent;
  color: rgb(196, 196, 196);
}
.mil-btn.mil-add-arrow:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  margin-left: 15px;
  font-size: 12px;
  transition: var(--transition-fast);
}
.mil-btn.mil-add-play:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f04b";
  margin-left: 15px;
  font-size: 12px;
  transition: var(--transition-fast);
}
.mil-btn:hover {
  filter: brightness(110%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.mil-btn:hover.mil-add-arrow:after {
  transform: translateX(3px);
}

.mil-buttons-frame {
  display: flex;
  justify-content: flex-start;
}
.mil-buttons-frame a {
  margin-right: 15px;
}
.mil-buttons-frame a:last-child {
  margin-right: 0;
}
@media screen and (max-width: 1200px) {
  .mil-buttons-frame {
    justify-content: center;
  }
}
@media screen and (max-width: 992px) {
  .mil-buttons-frame {
    flex-direction: column;
    align-items: center;
  }
  .mil-buttons-frame a {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .mil-buttons-frame a:last-child {
    margin-bottom: 0;
  }
}
.mil-buttons-frame.mil-center {
  justify-content: center;
}

.mil-adaptive-right {
  float: right;
}
@media screen and (max-width: 1200px) {
  .mil-adaptive-right {
    float: inherit;
  }
}

.mil-link {
  font-family: "Switzer-Variable";
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -2%;
}

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

frames

------------------------------------------- */
.mil-out-frame {
  overflow: hidden;
  border-radius: 40px;
  padding-left: 100px;
  padding-right: 100px;
  transform: translateX(-100px);
  background-color: var(--surface-solid-1);
  background-size: cover;
  background-position: left;
  width: calc(100% + 200px);
}
.mil-out-frame.mil-bg-1 {
  background: linear-gradient(0deg, #B3D4D8 0%, #DEECE8 100%);
}
.mil-out-frame.mil-bg-2 {
  background: linear-gradient(180deg, #F27457 0%, #A08488 100%);
}
.mil-out-frame.mil-bg-3 {
  background: linear-gradient(0deg, #224D50 0%, #1C6360 100%);
}
.mil-out-frame.mil-bg-4 {
  background-color: var(--surface-solid-1);
}
.mil-out-frame.mil-visible {
  overflow: visible;
}
@media (max-width: 1536px) {
  .mil-out-frame {
    border-radius: 0;
  }
}
.mil-out-frame.mil-image {
  background-image: url(../img/home-2/bg.png);
  background-size: cover;
}
.mil-out-frame.mil-image-2 {
  background-image: url(../img/home-4/bg.png);
  background-size: cover;
}
.mil-out-frame.mil-out-image-fix {
  padding-bottom: 260px;
  margin-bottom: 220px;
}
@media screen and (max-width: 1200px) {
  .mil-out-frame.mil-out-image-fix {
    padding-bottom: 64px;
    margin-bottom: 64px;
  }
}
.mil-out-frame.mil-out-top {
  background-color: var(--surface-solid-1);
  position: relative;
  border-radius: 0 0 40px 40px;
}
.mil-out-frame.mil-out-top:before {
  content: "";
  position: absolute;
  z-index: 999;
  top: -80px;
  left: 0;
  background-color: var(--surface-solid-1);
  height: 81px;
  width: 100%;
  display: block;
  border-radius: 40px 40px 0 0;
}

.mil-gradient-plus {
  filter: blur(100px);
  background-color: rgba(242, 116, 87, 0.18);
  border-radius: 50%;
  width: 1000px;
  height: 400px;
  position: absolute;
  bottom: -200px;
  right: -100px;
}

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

space

------------------------------------------- */
.mil-mt-15 {
  margin-top: 12px;
}

.mil-mt-30 {
  margin-top: 24px;
}

.mil-mt-60 {
  margin-top: 48px;
}

.mil-mt-130 {
  margin-top: 96px;
}

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

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

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

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

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

.mil-mb-40 {
  margin-bottom: 32px;
}

.mil-mb-50 {
  margin-bottom: 40px;
}

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

.mil-mb-80 {
  margin-bottom: 64px;
}

.mil-mb-160 {
  margin-bottom: 120px;
}

.mil-mb-80-adaptive-30 {
  margin-bottom: 64px;
}
@media (max-width: 1200px) {
  .mil-mb-80-adaptive-30 {
    margin-bottom: 24px;
  }
}

.mil-p-80-80 {
  padding-top: 64px;
  padding-bottom: 64px;
}

.mil-p-50-80 {
  padding-top: 40px;
  padding-bottom: 64px;
}

.mil-p-160-160 {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 1200px) {
  .mil-p-160-160 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.mil-p-160-0 {
  padding-top: 100px;
}
@media (max-width: 1200px) {
  .mil-p-160-0 {
    padding-top: 60px;
  }
}

.mil-p-160-80 {
  padding-top: 100px;
  padding-bottom: 50px;
}
@media (max-width: 1200px) {
  .mil-p-160-80 {
    padding-top: 60px;
    padding-bottom: 0;
  }
}

.mil-p-0-160 {
  padding-bottom: 100px;
}
@media (max-width: 1200px) {
  .mil-p-0-160 {
    padding-bottom: 60px;
  }
}

.mil-space-fix {
  height: 120px;
}

.mil-p-0-80 {
  padding-bottom: 64px;
}
@media (max-width: 1200px) {
  .mil-p-0-80 {
    padding-bottom: 0;
  }
}

.mil-p-80-160 {
  padding-top: 64px;
  padding-bottom: 120px;
}
@media (max-width: 1200px) {
  .mil-p-80-160 {
    padding-top: 0;
    padding-bottom: 64px;
  }
}

.mil-p-0-130 {
  padding-bottom: 80px;
}
@media (max-width: 1200px) {
  .mil-p-0-130 {
    padding-bottom: 40px;
  }
}

.mil-p-160-100 {
  padding-top: 100px;
  padding-bottom: 60px;
}
@media (max-width: 1200px) {
  .mil-p-160-100 {
    padding-top: 60px;
    padding-bottom: 16px;
  }
}

.mil-p-160-130 {
  padding-top: 100px;
  padding-bottom: 80px;
}
@media (max-width: 1200px) {
  .mil-p-160-130 {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

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

preloader

------------------------------------------- */
.mil-preloader {
  width: 100vw;
  height: 100vh;
  background-color: var(--surface-solid-1);
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  overflow: hidden;
}

/* Desktop: animated dot pattern background */
.mil-preloader:before {
  content: "";
  position: absolute;
  inset: -60px;
  background-image: radial-gradient(circle, rgba(242, 116, 87, 0.22) 1px, transparent 1.5px), radial-gradient(circle, rgba(3, 166, 166, 0.18) 1px, transparent 1.5px);
  background-size: 26px 26px, 34px 34px;
  background-position: 0 0, 12px 10px;
  opacity: 0.9;
  animation: mil-flow 1.1s linear infinite;
  filter: blur(0.2px);
}

.mil-preloader:after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 420px at 50% 45%, rgba(242, 116, 87, 0.12) 0%, transparent 60%);
  opacity: 1;
}

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

/* Progress bar */
.mil-preloader .mil-load {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background: linear-gradient(90deg, rgba(3, 166, 166, 0.1) 0%, rgba(242, 116, 87, 1) 50%, rgba(3, 166, 166, 0.1) 100%);
  height: 4px;
  width: 0;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(242, 250, 250, 0.12), 0 12px 40px rgba(242, 116, 87, 0.22);
}

/* Percentage text */
.mil-preloader p {
  margin: 0;
  color: var(--text-main);
}

.mil-preloader p .mil-light {
  color: var(--text-main);
}

.mil-preloader .h2 {
  font-size: 72px;
}

/* Mobile optimizations for preloader */
@media (max-width: 768px) {
  .mil-preloader {
    padding: 16px;
    gap: 12px;
  }
  
  /* Disable heavy background animation on mobile for better performance */
  .mil-preloader:before {
    animation: none;
    opacity: 0.5;
    background-size: 20px 20px, 28px 28px;
  }
  
  /* Smaller glow on mobile */
  .mil-preloader:after {
    background: radial-gradient(300px 200px at 50% 45%, rgba(242, 116, 87, 0.1) 0%, transparent 60%);
  }
  
  /* Smaller percentage text on mobile */
  .mil-preloader .h2 {
    font-size: 48px;
  }
  
  /* Thicker, more visible progress bar on mobile */
  .mil-preloader .mil-load {
    bottom: 20px;
    left: 20px;
    right: 20px;
    height: 6px;
    border-radius: 4px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .mil-preloader .h2 {
    font-size: 36px;
  }
  
  .mil-preloader .mil-load {
    bottom: 24px;
    left: 16px;
    right: 16px;
    height: 5px;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .mil-preloader:before {
    animation: none;
  }
  
  .mil-skel:before {
    animation: none;
  }
}

.mil-preloader-skeleton {
  width: min(1040px, calc(100vw - 48px));
  display: grid;
  gap: 14px;
}

.mil-preloader-skeleton__row {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.2fr 0.8fr;
}

@media (max-width: 992px) {
  .mil-preloader-skeleton__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mil-preloader-skeleton {
    width: calc(100vw - 32px);
    gap: 10px;
  }
  
  .mil-preloader-skeleton__row {
    gap: 10px;
  }
}

.mil-skel {
  border-radius: 14px;
  border: 1px solid var(--border-weak);
  background-color: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.mil-skel:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(242, 250, 250, 0.06) 45%, rgba(242, 250, 250, 0.12) 55%, transparent 100%);
  transform: translateX(-60%);
  animation: mil-skel-shimmer 0.9s ease-in-out infinite;
}

@media (max-width: 768px) {
  .mil-skel {
    border-radius: 10px;
  }
}

.mil-skel-table {
  height: 380px;
  background-image: repeating-linear-gradient(0deg, rgba(242, 250, 250, 0.05) 0, rgba(242, 250, 250, 0.05) 1px, transparent 1px, transparent calc(100% / 20)), repeating-linear-gradient(90deg, rgba(242, 250, 250, 0.05) 0, rgba(242, 250, 250, 0.05) 1px, transparent 1px, transparent calc(100% / 10));
  background-color: var(--surface-1);
}

.mil-skel-kline {
  height: 240px;
  background-image: repeating-linear-gradient(0deg, rgba(242, 250, 250, 0.05) 0, rgba(242, 250, 250, 0.05) 1px, transparent 1px, transparent 24px), repeating-linear-gradient(90deg, rgba(242, 250, 250, 0.05) 0, rgba(242, 250, 250, 0.05) 1px, transparent 1px, transparent 24px), linear-gradient(135deg, transparent 0%, rgba(3, 166, 166, 0.20) 35%, rgba(242, 116, 87, 0.20) 60%, transparent 100%);
  background-color: var(--surface-1);
}

.mil-skel-indicators {
  height: 240px;
  background-image: linear-gradient(180deg, rgba(242, 250, 250, 0.05) 0%, rgba(242, 250, 250, 0.02) 100%), linear-gradient(90deg, rgba(242, 116, 87, 0.18) 0%, rgba(3, 166, 166, 0.18) 100%);
  background-color: var(--surface-1);
}

@media (max-width: 768px) {
  .mil-skel-table {
    height: 280px;
  }
  
  .mil-skel-kline {
    height: 180px;
  }
  
  .mil-skel-indicators {
    height: 180px;
  }
}

@keyframes mil-flow {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(36px, 28px, 0);
  }
}

@keyframes mil-skel-shimmer {
  0% {
    transform: translateX(-60%);
  }
  100% {
    transform: translateX(60%);
  }
}

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

scrollbar

------------------------------------------- */
/*::-webkit-scrollbar {
    display: none;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}*/
.mil-progress-track {
  position: absolute;
  height: 100vh;
  top: 0;
  right: 0;
  width: 4px;
  z-index: 999;
}
.mil-progress-track .mil-progress {
  width: 100%;
  height: 0;
  background-color: rgb(242, 116, 87);
}
@media screen and (max-width: 768px) {
  .mil-progress-track {
    display: none;
  }
}

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

back to top

------------------------------------------- */
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  background-color: rgb(242, 116, 87);
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  box-shadow: 0 4px 20px rgba(242, 116, 87, 0.3);
}
.progress-wrap .active-progress {
  opacity: 1;
  visibility: visible;
}
.progress-wrap:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f062";
  z-index: 1;
  color: rgb(255, 255, 255);
  font-size: 14px;
}
.progress-wrap:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(242, 116, 87, 0.4);
}

@media (max-width: 768px) {
  .progress-wrap {
    right: 20px;
    bottom: 20px;
    width: 42px;
    height: 42px;
  }
  .progress-wrap:after {
    font-size: 13px;
  }
}

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

top panel

------------------------------------------- */
.mil-top-panel {
  position: fixed;
  z-index: 998;
  top: 16px;
  left: 16px;
  right: 16px;
  width: calc(100% - 32px);
  height: 92px;
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
  border-radius: var(--radius-md);
  background-color: var(--surface-2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: solid 1px var(--border-weak);
}
.mil-top-panel .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mil-top-panel .mil-logo {
  flex: 0 0 auto;
}
.mil-top-menu {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}
.mil-top-panel .mil-menu-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}
.mil-top-panel.mil-active {
  background-color: var(--surface-solid-2);
  height: 76px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  top: 8px;
  left: 8px;
  width: calc(100% - 16px);
  backdrop-filter: blur(12px);
}
@media (max-width: 1200px) {
  .mil-top-panel {
    height: 80px;
    background-color: var(--surface-solid-1);
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
  }
  .mil-top-panel.mil-active {
    height: 80px;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
  }
}

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

top menu

------------------------------------------- */
.mil-top-menu ul {
  display: flex;
  flex-wrap: nowrap;
  min-width: 0;
}
.mil-top-menu ul li {
  list-style-type: none;
  margin-right: 15px;
  position: relative;
}
.mil-top-menu ul li:last-child {
  margin-right: 0;
}
.mil-top-menu ul li a {
  border-radius: var(--radius-sm);
  height: 48px;
  padding: 0 15px;
  color: var(--text-muted);
  font-family: "Switzer-Variable";
  font-weight: 600;
  letter-spacing: -2%;
  z-index: 1;
  white-space: nowrap;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-normal);
  position: relative;
}
.mil-top-menu ul li a:before {
  content: "";
  height: 2px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  background: var(--color-primary);
  transition: var(--transition-normal);
  opacity: 1;
}
.mil-top-menu ul li a:hover {
  color: var(--color-primary);
}
.mil-top-menu ul li a:hover:before,
.mil-top-menu ul li.mil-active > a:before {
  width: calc(100% - 30px);
}
.mil-top-menu ul li.mil-has-children > a {
  padding-right: 24px;
}
.mil-top-menu ul li.mil-has-children > a:before {
  /* No special right pos needed with center transform */
}
.mil-top-menu ul li.mil-has-children > a:after {
  content: url('data:image/svg+xml,<svg width="8" height="6" viewBox="0 0 8 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.5 1.25C0.5 1.25 2.63316 3.38316 4 4.75C4 4.75 6.13316 2.61683 7.5 1.25" stroke="%23898D96" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  position: absolute;
  right: 8px;
  margin-top: -1px;
}
.mil-top-menu ul li.mil-active > a {
  color: var(--color-primary);
}
.mil-top-menu ul li ul {
  pointer-events: none;
  min-width: 160px;
  border-radius: var(--radius-md);
  background-color: var(--surface-solid-2);
  backdrop-filter: blur(12px);
  padding: 15px;
  position: absolute;
  top: 100%; /* Relative to li */
  left: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transition: var(--transition-normal);
  z-index: 10;
}
.mil-top-menu ul li ul li {
  margin-bottom: 5px;
  margin-right: 0;
}
.mil-top-menu ul li ul li:last-child {
  margin-bottom: 0;
}
.mil-top-menu ul li ul li a {
  justify-content: flex-start;
  height: 38px;
}
.mil-top-menu ul li ul li a:before {
  display: none;
}
.mil-top-menu ul li ul li a:hover {
  background-color: var(--surface-2);
  color: var(--text-main);
}
.mil-top-menu ul li:hover ul {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}

.mil-top-panel.mil-active .mil-top-menu ul li:hover ul {
  /* Reset special radius if needed, but radius-md is fine */
}

.mil-dark-1 .mil-top-menu ul li a {
  background-color: transparent;
}
.mil-dark-1 .mil-top-menu ul li.mil-active a {
  color: rgb(242, 250, 250);
}
.mil-dark-1 .mil-top-menu ul li ul {
  background-color: rgb(3, 166, 166);
}
.mil-dark-1 .mil-top-menu ul li ul li a {
  background-color: transparent;
  color: rgb(242, 250, 250);
}
.mil-dark-1 .mil-top-menu ul li ul li:hover a {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgb(255, 255, 255);
}
.mil-dark-1 .mil-top-menu ul li:hover > a {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgb(255, 255, 255);
}
.mil-dark-1 .mil-top-menu ul li:hover ul {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}
.mil-dark-1.mil-active {
  background-color: rgb(13, 81, 82);
}
.mil-dark-1.mil-active .mil-top-menu ul li ul {
  background-color: rgb(13, 81, 82);
}

.mil-dark-2 .mil-top-menu ul li a {
  background-color: transparent;
  color: var(--text-main);
  opacity: 0.7;
}
.mil-dark-2 .mil-top-menu ul li.mil-active a {
  color: var(--text-main);
  opacity: 1;
}
.mil-dark-2 .mil-top-menu ul li ul {
  background-color: var(--surface-solid-2);
}
.mil-dark-2 .mil-top-menu ul li ul li a {
  background-color: transparent;
  color: var(--text-main);
}
.mil-dark-2 .mil-top-menu ul li ul li:hover a {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgb(255, 255, 255);
}
.mil-dark-2 .mil-top-menu ul li.mil-has-children > a:after {
  content: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 1.25C0.5 1.25 2.63316 3.38316 4 4.75C4 4.75 6.13316 2.61683 7.5 1.25' stroke='%23F8F8F8' stroke-opacity='0.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.mil-dark-2 .mil-top-menu ul li:hover > a {
  background-color: rgba(255, 255, 255, 0.1);
  color: rgb(255, 255, 255);
  opacity: 1;
}
.mil-dark-2 .mil-top-menu ul li:hover ul {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}
.mil-dark-2.mil-active {
  background-color: rgb(39, 38, 38);
}
.mil-dark-2.mil-active .mil-top-menu ul li ul {
  background-color: rgb(39, 38, 38);
}

@media (max-width: 1200px) {
  .mil-top-menu {
    position: absolute;
    pointer-events: none;
    top: 80px;
    left: 0;
    background-color: var(--surface-solid-2);
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    padding: 0 0 15px 0;
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  }
  .mil-top-menu.mil-active {
    pointer-events: all;
    opacity: 1;
    transform: translateY(0);
  }
  .mil-top-menu ul {
    padding: 5px;
    flex-direction: column;
  }
  .mil-top-menu ul li {
    width: 100%;
  }
  .mil-top-menu ul li ul {
    border-radius: 10px !important;
    transform: none !important;
    box-shadow: none;
    position: static;
    opacity: 1;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    background-color: var(--surface-solid-3);
  }
  .mil-top-menu ul li ul li {
    opacity: 0;
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  }
  .mil-top-menu ul li:hover a {
    background-color: var(--surface-2);
  }
  .mil-top-menu ul li:hover ul {
    padding: 5px 0;
    max-height: 400px;
  }
  .mil-top-menu ul li:hover ul li {
    opacity: 1;
  }
  .mil-top-menu ul li:hover ul li a {
    background-color: inherit;
  }
  .mil-top-menu ul li:last-child:hover ul {
    margin-bottom: 0;
  }
  .mil-top-menu ul li.mil-active > a {
    box-shadow: none;
    color: rgb(242, 116, 87);
  }
}

html[data-theme="light"] .mil-top-panel.mil-active {
  box-shadow: 0 10px 30px rgba(11, 18, 32, 0.12);
}

html[data-theme="light"] .mil-top-panel {
  background-color: rgba(255, 255, 255, 0.72);
  border-color: rgba(11, 18, 32, 0.10);
}

html[data-theme="light"] .mil-top-panel.mil-active {
  background-color: rgba(255, 255, 255, 0.92);
  border-color: rgba(11, 18, 32, 0.12);
}

html[data-theme="light"] .mil-top-menu ul li a:hover,
html[data-theme="light"] .mil-top-menu ul li.mil-active > a {
  color: var(--text-main);
}

html[data-theme="light"] .mil-top-panel .mil-btn:not(.mil-border):not(.mil-light):not(.mil-transp) {
  color: var(--text-main);
}

@media (max-width: 420px) {
  .mil-top-panel .mil-menu-buttons {
    gap: 8px;
  }
  .mil-top-panel .mil-menu-buttons .mil-btn.mil-sm {
    padding: 0 14px;
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .mil-dark-1 {
    background-color: rgb(13, 81, 82);
  }
  .mil-dark-1 .mil-top-menu {
    background-color: rgb(13, 81, 82);
  }
  .mil-dark-2 {
    background-color: rgb(39, 38, 38);
  }
  .mil-dark-2 .mil-top-menu {
    background-color: rgb(39, 38, 38);
  }
}
/* -------------------------------------------

menu button

------------------------------------------- */
.mil-menu-btn {
  margin-left: 15px;
  background-color: var(--surface-solid-2);
  padding: 25px 15px;
  border-radius: 10px;
  height: 24px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
@media screen and (max-width: 1200px) {
  .mil-menu-btn {
    display: flex;
  }
}
.mil-menu-btn span, .mil-menu-btn span:after, .mil-menu-btn span:before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  backface-visibility: hidden;
  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: -8px;
}
.mil-menu-btn span:after {
  top: 8px;
}
.mil-menu-btn.mil-active span {
  transform: rotate(45deg);
}
.mil-menu-btn.mil-active span:before {
  transform: translate(0px, 8px) rotate(-90deg);
}
.mil-menu-btn.mil-active span:after {
  width: 24px;
  transform: translate(0px, -8px) rotate(-90deg);
}

.mil-dark-1 .mil-menu-btn {
  background-color: rgb(3, 166, 166);
}
.mil-dark-1 .mil-menu-btn span, .mil-dark-1 .mil-menu-btn span:after, .mil-dark-1 .mil-menu-btn span:before {
  background-color: var(--text-main);
}

.mil-dark-2 .mil-menu-btn {
  background-color: var(--surface-solid-2);
}
.mil-dark-2 .mil-menu-btn span, .mil-dark-2 .mil-menu-btn span:after, .mil-dark-2 .mil-menu-btn span:before {
  background-color: var(--text-main);
}

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

banner

------------------------------------------- */
.mil-banner {
  position: relative;
  overflow: hidden;
  background-color: var(--bg);
  height: 100vh;
  min-height: 820px;
  display: flex;
  align-items: center;
  padding-top: 40px;
}
.mil-banner .mil-banner-img {
  width: 100%;
}
.mil-banner .mil-banner-img img {
  float: right;
}
.mil-banner .mil-banner-img.mil-banner-img-out img {
  transform: translateX(-80px);
  width: 190%;
  float: left;
}
.mil-banner .mil-banner-text {
  position: relative;
}
.mil-banner .mil-banner-text:before {
  content: "";
  position: absolute;
  inset: -28px -34px;
  background-image: radial-gradient(circle at 15% 35%, rgba(242, 116, 87, 0.22) 0%, transparent 55%), radial-gradient(circle at 65% 20%, rgba(3, 166, 166, 0.2) 0%, transparent 60%);
  filter: blur(14px);
  pointer-events: none;
  z-index: -1;
}
.mil-banner .mil-banner-text .mil-text-gradient-2 {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background-color: var(--surface-solid-2);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
@supports (--css: variables) {
  html:not([data-theme="light"]) .mil-banner .mil-banner-text .mil-text-gradient-2 {
    background-image: linear-gradient(to right, rgba(242, 250, 250, 0.98), rgba(160, 205, 205, 0.92));
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
  }
  html[data-theme="light"] .mil-banner .mil-banner-text .mil-text-gradient-2 {
    background-image: linear-gradient(to right, rgb(13, 81, 82), rgb(3, 166, 166));
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
  }
}
.mil-banner .mil-banner-text .mil-text-gradient-3 {
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.05;
  font-size: clamp(46px, 5.4vw, 106px);
  text-shadow: 0 22px 80px rgba(0, 0, 0, 0.35);
}
@supports (--css: variables) {
  html:not([data-theme="light"]) .mil-banner .mil-banner-text .mil-text-gradient-3 {
    background-image: linear-gradient(to right, rgba(242, 250, 250, 0.98), rgba(160, 205, 205, 0.82));
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
  }
  html[data-theme="light"] .mil-banner .mil-banner-text .mil-text-gradient-3 {
    background-image: linear-gradient(to right, rgb(13, 81, 82), rgba(13, 81, 82, 0.82));
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
  }
}
.mil-banner .mil-banner-text .mil-text-gradient-3:after {
  content: "";
  display: block;
  width: 128px;
  height: 6px;
  border-radius: 999px;
  margin-top: 18px;
  background-image: linear-gradient(to right, rgba(242, 116, 87, 0.92), rgba(3, 166, 166, 0.92));
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.25);
}
@media (max-width: 992px) {
  .mil-banner .mil-banner-text .mil-text-gradient-2 {
    font-size: 16px;
    padding: 9px 12px;
  }
  .mil-banner .mil-banner-text .mil-text-gradient-3:after {
    width: 96px;
    height: 5px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1200px) {
  .mil-banner {
    height: auto;
    margin-top: 80px;
    padding: 64px 0;
    padding-bottom: 0;
  }
  .mil-banner .container {
    margin-top: 0;
  }
  .mil-banner .mil-banner-text {
    text-align: center;
  }
  .mil-banner .mil-banner-img img {
    width: 100% !important;
    transform: none !important;
  }
  .mil-banner .mil-banner-img.mil-120 img {
    width: 120% !important;
  }
  .mil-banner .mil-banner-img.mil-banner-img-out img {
    transform: none;
    width: 110% !important;
    float: left;
  }
}
.mil-banner.mil-banner-inner {
  height: auto;
  background-color: transparent;
  min-height: 320px;
  padding-top: 120px;
  padding-bottom: 60px;
  margin-top: 0;
}
.mil-banner.banner-short {
  padding-bottom: 64px;
  height: 60vh;
  align-items: flex-end;
}
.mil-banner.mil-dark-1 {
  background: linear-gradient(90deg, #1B1D1D 0%, #0D5152 50%, #1B1D1D 100%);
}
.mil-banner.mil-dark-2 {
  background-color: #1B1717;
  background: linear-gradient(90deg, #1B1717 0%, rgba(242, 116, 87, 0.4) 50%, #1B1717 100%);
}

.mil-radial-g-1 {
  background-color: rgb(3, 166, 166);
  opacity: 0.6;
  position: absolute;
  width: 100vw;
  height: 100vw;
  top: -170%;
  left: 0;
  border-radius: 50%;
  filter: blur(200px);
}

.mil-radial-g-2 {
  background-color: rgb(242, 116, 87);
  opacity: 0.6;
  position: absolute;
  width: 100vw;
  height: 100vw;
  top: -170%;
  left: 0;
  border-radius: 50%;
  filter: blur(200px);
}

.mil-radial-g-3 {
  background-color: #FDE400;
  opacity: 1;
  position: absolute;
  width: 60vw;
  height: 300px;
  bottom: -200px;
  right: 0;
  border-radius: 500px 0 0 0;
  filter: blur(200px);
}

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

content list

------------------------------------------- */
.mil-banner-list {
  display: flex;
}
.mil-banner-list li {
  display: flex;
  align-items: center;
  position: relative;
  list-style-type: none;
  margin-bottom: 24px;
  margin-right: 24px;
  color: rgb(160, 205, 205);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-banner-list li:last-child {
  margin-right: 0;
}
.mil-banner-list li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: solid 2px rgb(160, 205, 205);
  color: rgb(160, 205, 205);
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.mil-banner-list.mil-type-2 li {
  color: var(--text-main);
}
.mil-banner-list.mil-type-2 li:before {
  border: solid 2px rgb(3, 166, 166);
  color: rgb(3, 166, 166);
}

.mil-list-1 li {
  position: relative;
  padding-left: 45px;
  list-style-type: none;
  margin-bottom: 24px;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
@media screen and (max-width: 992px) {
  .mil-list-1 li {
    opacity: 1;
  }
}
.mil-list-1 li:before {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% + 24px);
  background-color: var(--border-weak);
  position: absolute;
  top: 0;
  left: 14px;
}
.mil-list-1 li:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--bg);
  background-color: rgb(3, 166, 166);
  position: absolute;
  top: 6px;
  left: 8px;
}
.mil-list-1 li:last-child {
  margin-bottom: 0;
}
.mil-list-1 li:last-child:before {
  display: none;
}
.mil-list-1.mil-accent li:after {
  background-color: rgb(242, 116, 87);
}

.mil-list-2 li {
  position: relative;
  padding-left: 52px;
  list-style-type: none;
  margin-bottom: 24px;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-list-2 li:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgb(3, 166, 166);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--surface-solid-2);
  border: solid 1px var(--border-weak);
  position: absolute;
  top: -4px;
  left: 0;
}
.mil-list-2 li:last-child {
  margin-bottom: 0;
}
.mil-list-2.mil-type-2 li:after {
  background-color: rgb(3, 166, 166);
  color: rgb(255, 255, 255);
}
.mil-list-2.mil-type-3 li:after {
  background-color: rgb(13, 81, 82);
  color: rgb(3, 166, 166);
}
.mil-list-2.mil-accent li:after {
  background-color: rgb(242, 116, 87);
}

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

brands

------------------------------------------- */
.mil-brand {
  margin: 0 auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-brand img {
  display: inline-block;
}
.mil-brand:hover {
  opacity: 1;
  filter: grayscale(0);
}

.mil-brand-card {
  background-color: rgb(39, 38, 38);
  border-radius: 40px;
  padding: 30px;
}
.mil-brand-card img {
  filter: grayscale(100%);
  opacity: 0.5;
}

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

facts

------------------------------------------- */
.mil-fact-bg {
  padding: 60px;
  border-radius: 40px;
  background: linear-gradient(0deg, #224D50 0%, #1C6360 100%);
}

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

testimonials

------------------------------------------- */
.mil-testimonials blockquote.mil-with-bg {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
}
.mil-testimonials blockquote.mil-with-bg .mil-customer {
  margin-top: auto;
  gap: 12px;
}
.mil-testimonials blockquote.mil-with-bg .mil-customer img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: cover;
}
.mil-testimonials blockquote.mil-with-bg h6 {
  color: var(--text-main);
}
@media (max-width: 992px) {
  .mil-testimonials blockquote.mil-with-bg {
    min-height: auto;
  }
}

.mil-testi-pagination {
  margin-top: 60px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.mil-testi-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgb(137, 141, 150);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-testi-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgb(242, 116, 87);
}

.mil-slider-nav-1 {
  position: absolute;
  z-index: 2;
  top: 27%;
  left: -132px;
  display: flex;
  justify-content: space-between;
  width: calc(100% + 144px + 120px);
}

.mil-testi-prev {
  cursor: pointer;
  text-align: center;
  background-color: rgb(242, 116, 87);
  height: 72px;
  width: 72px;
  border-radius: 50%;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.mil-testi-prev:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  transform: rotate(180deg);
  color: rgb(255, 255, 255);
}
.mil-testi-prev.swiper-button-disabled {
  background-color: rgba(196, 196, 196, 0.2);
  cursor: not-allowed;
}

.mil-testi-next {
  cursor: pointer;
  text-align: center;
  background-color: rgb(242, 116, 87);
  height: 72px;
  width: 72px;
  border-radius: 50%;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.mil-testi-next:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  color: rgb(255, 255, 255);
}
.mil-testi-next.swiper-button-disabled {
  background-color: rgba(196, 196, 196, 0.2);
  cursor: not-allowed;
}

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

accordion

------------------------------------------- */
.mil-accordion {
  width: 100%;
}
.mil-accordion .mil-accordion-group .mil-accordion-menu {
  color: var(--text-main);
  padding: 30px 0;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 992px) {
  .mil-accordion .mil-accordion-group .mil-accordion-menu {
    align-items: flex-start;
  }
}
.mil-accordion .mil-accordion-group .mil-accordion-menu h5 {
  width: calc(100% - 45px);
}
.mil-accordion .mil-accordion-group .mil-accordion-menu .mil-accordion-icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: var(--surface-solid-2);
  border: solid 1px var(--border-weak);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-accordion .mil-accordion-group .mil-accordion-menu .mil-accordion-icon.mil-dark {
  background-color: var(--surface-solid-3);
}
.mil-accordion .mil-accordion-group .mil-accordion-menu .mil-accordion-icon.mil-dark i {
  color: var(--text-main);
}
@media screen and (max-width: 992px) {
  .mil-accordion .mil-accordion-group .mil-accordion-menu .mil-accordion-icon {
    width: 30px;
    height: 30px;
  }
}
.mil-accordion .mil-accordion-group .mil-accordion-menu .mil-accordion-icon.mil-active {
  background-color: rgb(242, 116, 87);
}
.mil-accordion .mil-accordion-group .mil-accordion-menu .mil-accordion-icon.mil-active i {
  color: rgb(255, 255, 255);
}
.mil-accordion .mil-accordion-group .mil-accordion-content {
  padding-right: 100px;
  height: 0;
  overflow: hidden;
  margin-bottom: 15px;
}
@media screen and (max-width: 992px) {
  .mil-accordion .mil-accordion-group .mil-accordion-content {
    padding-right: 0;
  }
}
.mil-accordion .mil-accordion-group:last-child .mil-accordion-content {
  margin-bottom: 0;
}

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

illustrations

------------------------------------------- */
.mil-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  width: 100%;
}
.mil-image-frame.mil-visible-overflow {
  overflow: visible;
}
.mil-image-frame img {
  width: 100%;
  border-radius: 40px;
}
.mil-image-frame .mil-img-box {
  text-align: center;
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 225px;
  height: 225px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mil-image-frame .mil-img-box.mil-left-box {
  right: auto;
  left: -60px;
}
.mil-image-frame .mil-img-box.mil-left-max {
  left: -120px;
}
.mil-image-frame .mil-img-box.mil-right-max {
  right: -50px;
  bottom: -50px;
}
.mil-image-frame .mil-img-box.mil-accent-box {
  background: linear-gradient(180deg, #F27457 0%, #A08488 100%);
}
.mil-image-frame .mil-img-box.mil-soft-box {
  background: linear-gradient(0deg, #B3D4D8 0%, #DEECE8 100%);
}
.mil-image-frame .mil-img-box div {
  width: 100%;
}
.mil-image-frame .mil-img-box img {
  position: static !important;
  width: 90px;
  border-radius: 0;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .mil-image-frame .mil-img-box {
    display: inline-flex;
    right: auto;
    left: 15px;
    bottom: 15px;
    width: 175px;
    height: 175px;
    padding: 30px 30px;
  }
  .mil-image-frame .mil-img-box br {
    display: block;
  }
  .mil-image-frame .mil-img-box.mil-left-box {
    right: auto;
    left: 15px;
  }
}
.mil-image-frame.mil-image-frame-2 {
  padding-bottom: 180%;
}
.mil-image-frame.mil-image-frame-2 img {
  position: absolute;
  top: 0;
  left: 0;
}

.mil-illustration-absolute {
  width: 800px;
  margin: 0 auto;
  height: 400px;
  position: relative;
}
.mil-illustration-absolute img {
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .mil-illustration-absolute {
    width: 100%;
    height: auto;
  }
  .mil-illustration-absolute img {
    position: static;
  }
}
.mil-illustration-absolute.mil-type-2 {
  height: 250px;
}
@media screen and (max-width: 992px) {
  .mil-illustration-absolute.mil-type-2 {
    width: 100%;
    height: auto;
  }
}
.mil-illustration-absolute.mil-type-3 {
  height: 350px;
}
@media screen and (max-width: 992px) {
  .mil-illustration-absolute.mil-type-3 {
    width: 100%;
    height: auto;
  }
}

.mil-illustration-fix {
  margin-bottom: 160px;
}
@media screen and (max-width: 992px) {
  .mil-illustration-fix {
    padding-bottom: 80px;
    margin-bottom: 0;
  }
}

.mil-gradient-1 {
  position: absolute;
  z-index: -1;
  width: 130%;
  height: 70%;
  left: -30%;
  top: 50%;
  background: #F27457;
  opacity: 0.7;
  transform: translate(0, -50%);
  filter: blur(250px);
}

.mil-video-pos {
  width: 100%;
  position: absolute;
}
.mil-video-pos .mil-video {
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 135px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mil-video-pos .mil-video img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
}
.mil-video-pos .mil-video .mil-video-play {
  background-color: rgb(242, 116, 87);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-video-pos .mil-video .mil-video-play i {
  font-size: 24px;
  color: rgb(242, 250, 250);
}
.mil-video-pos .mil-video .mil-video-play:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 1200px) {
  .mil-video-pos {
    position: static;
  }
}

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

steps

------------------------------------------- */
.mil-step {
  opacity: 0.6;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-step:hover {
  opacity: 1;
}
@media screen and (max-width: 992px) {
  .mil-step {
    opacity: 1;
  }
}

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

icon box

------------------------------------------- */
.mil-icon-box {
  display: flex;
  border-radius: 40px;
  flex-direction: column;
}
.mil-icon-box img {
  display: block;
  width: 60px;
}
.mil-icon-box.mil-with-bg {
  padding: 60px 30px;
  background-color: var(--surface-solid-2);
  border: solid 1px var(--border-weak);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light mode icon-box enhanced styles */
html[data-theme="light"] .mil-icon-box.mil-with-bg {
  background-color: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow: 0 2px 8px rgba(11, 18, 32, 0.04);
}

html[data-theme="light"] .mil-icon-box.mil-with-bg:hover {
  transform: translateY(-8px);
  background-color: #ffffff;
  border-color: rgba(3, 166, 166, 0.4);
  box-shadow: 
    0 20px 50px rgba(3, 166, 166, 0.12),
    0 8px 24px rgba(11, 18, 32, 0.08),
    0 0 0 1px rgba(3, 166, 166, 0.15);
}

html[data-theme="light"] .mil-icon-box.mil-with-bg:hover h5 {
  color: rgb(13, 81, 82);
  transition: color 0.3s ease;
}

html[data-theme="light"] .mil-icon-box.mil-with-bg:hover img {
  transform: scale(1.08);
  transition: transform 0.35s ease;
}

html[data-theme="light"] .mil-icon-box.mil-with-bg img {
  transition: transform 0.35s ease;
}
.mil-icon-box.mil-dark {
  padding: 60px 30px;
  background: linear-gradient(0deg, #224D50 0%, #1C6360 100%);
}
.mil-icon-box.mil-dark-2 {
  padding: 60px 30px;
  background-color: rgb(39, 38, 38);
}
.mil-icon-box.mil-bg-fix {
  padding: 60px 30px;
}
.mil-icon-box.mil-center {
  text-align: center;
}
.mil-icon-box.mil-center img {
  margin-left: auto;
  margin-right: auto;
}
.mil-icon-box.mil-hover {
  padding: 60px 30px;
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-icon-box.mil-hover:hover, .mil-icon-box.mil-hover.mil-hover-active {
  background-color: var(--surface-solid-3);
}
.mil-icon-box.mil-hover:hover h5, .mil-icon-box.mil-hover:hover p, .mil-icon-box.mil-hover.mil-hover-active h5, .mil-icon-box.mil-hover.mil-hover-active p {
  color: var(--text-main);
}
@media screen and (max-width: 992px) {
  .mil-icon-box {
    width: 100%;
    height: auto;
  }
  .mil-icon-box.mil-hover {
    background-color: var(--surface-solid-2);
    border: solid 1px var(--border-weak);
  }
  .mil-icon-box.mil-hover h5 {
    color: var(--text-main);
  }
}
@media screen and (max-width: 768px) {
  .mil-icon-box.mil-bg-fix {
    background-color: var(--surface-1);
  }
}

.mil-icon-box-2 {
  display: flex;
  align-items: flex-start;
}
.mil-icon-box-2 img {
  margin-right: 30px;
}
.mil-icon-box-2 p {
  width: 81%;
}
.mil-icon-box-2.mil-hover {
  opacity: 0.5;
  cursor: default;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-icon-box-2.mil-hover .mil-button-transform {
  padding: 0;
  background-color: transparent;
  color: rgb(242, 116, 87);
}
.mil-icon-box-2.mil-hover:hover, .mil-icon-box-2.mil-hover.mil-hover-active {
  opacity: 1;
}
.mil-icon-box-2.mil-hover:hover .mil-button-transform, .mil-icon-box-2.mil-hover.mil-hover-active .mil-button-transform {
  background-color: rgb(242, 116, 87);
  padding: 0 30px;
  color: rgb(255, 255, 255);
}
@media screen and (max-width: 992px) {
  .mil-icon-box-2.mil-hover {
    flex-direction: column;
    opacity: 1;
  }
}

.mil-icon-box-2-frame:hover .mil-icon-box-2.mil-hover {
  opacity: 0.5;
}
.mil-icon-box-2-frame:hover .mil-icon-box-2.mil-hover .mil-button-transform {
  padding: 0;
  background-color: transparent;
  color: rgb(242, 116, 87);
}
.mil-icon-box-2-frame:hover .mil-icon-box-2.mil-hover:hover {
  opacity: 1;
}
.mil-icon-box-2-frame:hover .mil-icon-box-2.mil-hover:hover .mil-button-transform {
  background-color: rgb(242, 116, 87);
  padding: 0 30px;
  color: rgb(255, 255, 255);
}

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

team

------------------------------------------- */
.mil-team-card {
  text-align: center;
}
.mil-team-card .mil-portrait {
  position: relative;
  padding-bottom: 130%;
  border-radius: 40px;
  overflow: hidden;
}
.mil-team-card .mil-portrait img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

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

vacancie

------------------------------------------- */
.mil-vacancie {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 100px;
  transform: translateX(-100px);
  background: var(--surface-solid-2);
  border: solid 1px var(--border-weak);
  width: calc(100% + 200px);
  border-radius: 40px;
}
.mil-vacancie:after {
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, #224D50 0%, #1C6360 100%);
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-vacancie .mil-left {
  display: block;
  z-index: 2;
  padding-right: 60px;
}
.mil-vacancie .mil-right {
  display: flex;
  justify-content: flex-end;
  z-index: 2;
}
.mil-vacancie .mil-tags {
  font-size: 14px;
  display: flex;
}
.mil-vacancie .mil-tags li {
  list-style-type: none;
  margin-right: 30px;
  color: var(--text-muted);
}
.mil-vacancie:hover:after {
  opacity: 1;
}
.mil-vacancie:hover h4 {
  color: rgb(242, 250, 250);
}
@media screen and (max-width: 992px) {
  .mil-vacancie {
    transform: translateX(0);
    width: 100%;
    padding: 60px;
    flex-direction: column;
    align-items: flex-start;
  }
  .mil-vacancie .mil-left {
    margin-bottom: 30px;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .mil-vacancie .mil-tags {
    flex-direction: column;
  }
  .mil-vacancie .mil-tags li {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

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

blog

------------------------------------------- */
.mil-blog-card {
  display: block;
  background-color: var(--surface-solid-2);
  border: solid 1px var(--border-weak);
  border-radius: 40px;
}
.mil-blog-card .mil-card-cover {
  position: relative;
  overflow: hidden;
  overflow: hidden;
  border-radius: 40px;
  padding-bottom: 65%;
}
.mil-blog-card .mil-card-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mil-blog-card .mil-descr {
  padding: 30px 30px 40px;
}

.mil-pub-cover {
  width: 100%;
  padding-bottom: 50%;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
}
.mil-pub-cover img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}
.mil-pub-cover.mil-inner {
  padding-bottom: 65%;
}
@media screen and (max-width: 768px) {
  .mil-pub-cover {
    padding-bottom: 65%;
  }
}

.mil-pup-tags {
  display: flex;
  padding: 0;
}
.mil-pup-tags li {
  list-style-type: none;
  margin-right: 10px;
}
.mil-pup-tags li:last-child {
  margin-right: 0;
}
.mil-pup-tags li a {
  font-size: 14px;
  display: block;
  padding: 6px 30px;
  border-radius: 10px;
  border: solid 1px rgb(196, 196, 196);
  color: rgb(196, 196, 196);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-pup-tags li a:hover {
  color: rgb(3, 166, 166);
  border: solid 1px rgb(3, 166, 166);
}
@media screen and (max-width: 768px) {
  .mil-pup-tags {
    flex-direction: column;
  }
  .mil-pup-tags li {
    margin-bottom: 15px;
    margin-right: 0;
  }
  .mil-pup-tags li:last-child {
    margin-bottom: 0;
  }
  .mil-pup-tags li a {
    text-align: center;
  }
}

.mil-share-frame {
  display: flex;
  align-items: center;
}
.mil-share-frame h6 {
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .mil-share-frame {
    flex-direction: column;
  }
  .mil-share-frame h6 {
    margin-bottom: 15px;
    margin-right: 0;
  }
}

.mil-pup-share {
  display: flex;
  padding: 0;
}
.mil-pup-share li {
  list-style-type: none;
  margin-right: 10px;
}
.mil-pup-share li:last-child {
  margin-right: 0;
}
.mil-pup-share li a {
  font-size: 14px;
  display: block;
  padding: 6px 15px;
  border-radius: 10px;
  background-color: var(--surface-solid-2);
  border: solid 1px var(--border-weak);
  color: var(--text-muted);
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-pup-share li a i {
  color: var(--text-muted);
  margin-right: 10px;
}
.mil-pup-share li a:hover {
  background-color: rgb(3, 166, 166);
  color: rgb(255, 255, 255);
}
.mil-pup-share li a:hover i {
  color: rgb(255, 255, 255);
}

.mil-next-post {
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: solid 1px var(--border-weak);
  border-bottom: solid 1px var(--border-weak);
}
.mil-next-post .mil-descr {
  text-align: right;
  padding-right: 60px;
}
.mil-next-post .mil-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 40px;
  overflow: hidden;
}
.mil-next-post .mil-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-next-post .mil-cover i {
  background-color: rgb(242, 116, 87);
  color: rgb(255, 255, 255);
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-next-post .mil-cover:hover img {
  transform: scale(1.1);
}
.mil-next-post .mil-cover:hover i {
  transform: scale(1);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .mil-next-post {
    flex-direction: column;
  }
  .mil-next-post .mil-descr {
    text-align: center;
    margin-bottom: 30px;
    padding: 0;
  }
}

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

comments

------------------------------------------- */
.mil-comments li {
  list-style-type: none;
}
.mil-comments li .mil-comment {
  display: flex;
  margin-bottom: 40px;
}
.mil-comments li .mil-comment .mil-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.mil-comments li .mil-comment .mil-avatar img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.mil-comments li .mil-comment .mil-comment-text {
  position: relative;
  padding-left: 20px;
  width: calc(100% - 60px);
}
.mil-comments li .mil-comment .mil-comment-text .mil-reply {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 600;
  font-size: 14px;
  font-family: "Switzer-Variable";
  color: rgb(242, 116, 87);
}
.mil-comments li ul {
  padding-left: 70px;
}
@media screen and (max-width: 768px) {
  .mil-comments li .mil-comment .mil-avatar {
    width: 40px;
    height: 40px;
  }
  .mil-comments li .mil-comment .mil-comment-text {
    padding-left: 15px;
    width: calc(100% - 40px);
  }
  .mil-comments li ul {
    padding-left: 55px;
  }
}

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

form

------------------------------------------- */
.mil-input {
  width: 100%;
  height: 60px;
  border: solid 1px var(--border-weak);
  background-color: var(--surface-solid-2);
  font-weight: 600;
  font-size: 14px;
  font-family: "Switzer-Variable";
  border-radius: var(--radius-lg);
  padding: 0 24px;
  color: var(--text-main);
  transition: var(--transition-normal);
}
.mil-input:focus {
  border-color: rgba(242, 116, 87, 0.7);
  outline: none;
  background-color: var(--surface-solid-3);
  box-shadow: 0 0 0 4px rgba(242, 116, 87, 0.14);
}
.mil-input::placeholder {
  font-weight: 600;
  font-size: 14px;
  font-family: "Switzer-Variable";
  color: var(--text-muted);
}

textarea {
  width: 100%;
  border: solid 1px var(--border-weak);
  background-color: var(--surface-solid-2);
  border-radius: 20px;
  padding: 24px 24px;
  color: var(--text-main);
}
textarea::placeholder {
  font-weight: 600;
  font-size: 14px;
  font-family: "Switzer-Variable";
  color: var(--text-muted);
}

.mil-checkbox-frame {
  display: flex;
  align-items: center;
}
.mil-checkbox-frame p {
  padding-left: 15px;
}

.mil-checkbox {
  position: relative;
  height: 24px;
  width: 24px;
}

.mil-checkbox label {
  background-color: var(--surface-solid-2);
  border: 1px solid var(--border-weak);
  border-radius: 3px;
  cursor: pointer;
  height: 24px;
  width: 24px;
  left: 0;
  position: absolute;
  top: 0;
}

.mil-checkbox label:after {
  border: 2px solid rgb(255, 255, 255);
  border-top: none;
  border-right: none;
  content: "";
  height: 6px;
  left: 5px;
  opacity: 0;
  position: absolute;
  top: 6px;
  transform: rotate(-45deg);
  width: 12px;
}

.mil-checkbox input[type=checkbox] {
  visibility: hidden;
}

.mil-checkbox input[type=checkbox]:checked + label {
  background-color: rgb(242, 116, 87);
  border-color: rgb(242, 116, 87);
}

.mil-checkbox input[type=checkbox]:checked + label:after {
  opacity: 1;
}

.mil-subscripe-form {
  position: relative;
  display: flex;
}
.mil-subscripe-form .mil-input {
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .mil-subscripe-form {
    flex-direction: column;
  }
  .mil-subscripe-form .mil-input {
    margin-bottom: 15px;
  }
}

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

text list

------------------------------------------- */
.mil-text-list li {
  text-align: left !important;
  display: flex;
  align-items: center;
  list-style-type: none;
  margin-bottom: 10px;
}
.mil-text-list li:before {
  display: block;
  content: "";
  background-color: rgb(160, 205, 205);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 20px;
}
.mil-text-list li:last-child {
  margin-bottom: 0;
}
.mil-text-list.mil-check li:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  padding: 5px;
  font-size: 10px;
  color: rgb(3, 166, 166);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--surface-solid-2);
  border: solid 1px var(--border-weak);
}
.mil-text-list.mil-check.mil-type-2 li:before {
  background-color: rgb(3, 166, 166);
  color: var(--text-main);
}

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

price

------------------------------------------- */
.mil-switcher {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: var(--surface-solid-2);
  border: solid 1px var(--border-strong);
  width: 245px;
  padding: 0;
  border-radius: 50px;
}
.mil-switcher:after {
  content: "-30%";
  background: linear-gradient(180deg, #F27457 0%, #A08488 100%);
  padding: 10px 15px;
  border-radius: 40px;
  position: absolute;
  top: -20px;
  right: -20px;
  font-family: "Switzer-Variable";
  font-size: 12px;
  font-weight: 600;
  color: rgb(255, 255, 255);
}
.mil-switcher span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  text-align: center;
  height: 60px;
  cursor: pointer;
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Switzer-Variable";
  margin-right: 5px;
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
.mil-switcher span:last-child {
  margin-right: 0;
}
.mil-switcher span.mil-active {
  background-color: var(--surface-solid-3);
  color: var(--text-main);
}

.mil-price-card {
  padding: 60px 30px;
  text-align: center;
  border-radius: 40px;
}
.mil-price-card .mil-sup-text {
  font-size: 18px;
  margin-left: 5px;
}
.mil-price-card.mil-featured {
  background: linear-gradient(0deg, #224D50 0%, #1C6360 100%);
}
.mil-price-card li {
  list-style: none;
}
@media screen and (max-width: 768px) {
  .mil-price-card {
    background-color: rgba(196, 196, 196, 0.05);
  }
}

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

footer

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

/* Footer Enhancement - UI/UX Pro Max */
footer {
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-weak) 20%, var(--border-weak) 80%, transparent 100%);
}

footer .mil-footer-logo {
  display: inline-block;
  transition: var(--transition-normal);
}

footer .mil-footer-logo:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

footer h6 {
  color: var(--text-main);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 13px;
  position: relative;
  padding-bottom: 16px;
}

footer h6::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
}

footer .mil-footer-list li {
  list-style-type: none;
}

footer .mil-footer-list li a {
  color: var(--text-soft);
  transition: var(--transition-fast);
  display: inline-block;
  position: relative;
}

footer .mil-footer-list li a:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

footer .mil-footer-list.mil-footer-list-2 {
  display: flex;
}
footer .mil-footer-list.mil-footer-list-2 li {
  margin-right: 30px;
  margin-bottom: 0;
}
footer .mil-footer-list.mil-footer-list-2 li a {
  transition: 0.2s cubic-bezier(0, 0, 0.3642, 1);
}
footer .mil-footer-list.mil-footer-list-2 li a:hover {
  color: var(--color-primary);
}
@media (max-width: 768px) {
  footer .mil-footer-list.mil-footer-list-2 {
    flex-direction: column;
  }
  footer .mil-footer-list.mil-footer-list-2 li {
    margin-bottom: 15px;
  }
}

footer .mil-footer-bottom {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: solid 1px var(--border-weak);
  margin-top: 40px;
}

footer .mil-footer-bottom p {
  color: var(--text-muted);
  font-size: 14px;
}

footer .mil-footer-bottom a {
  color: var(--color-secondary);
  transition: var(--transition-fast);
}

footer .mil-footer-bottom a:hover {
  color: var(--color-primary);
}

/* Footer with dark background */
footer.mil-footer-with-bg {
  background: linear-gradient(180deg, var(--surface-solid-1) 0%, var(--surface-solid-2) 100%);
  position: relative;
}

footer.mil-footer-with-bg::before {
  background: linear-gradient(90deg, transparent 0%, var(--color-secondary) 20%, var(--color-primary) 80%, transparent 100%);
  opacity: 0.3;
}

footer.mil-footer-with-bg .mil-footer-bottom {
  border-top: solid 1px var(--border-weak);
}

footer.mil-footer-dark {
  background: linear-gradient(180deg, var(--surface-solid-1) 0%, var(--surface-solid-2) 100%);
}
footer.mil-footer-dark .mil-footer-bottom {
  border-top: solid 1px var(--border-weak);
}
footer.mil-footer-dark-2 {
  background: linear-gradient(180deg, var(--surface-solid-1) 0%, var(--surface-solid-2) 100%);
}
footer.mil-footer-dark-2 .mil-footer-bottom {
  border-top: solid 1px var(--border-weak);
}

.mil-footer-space-fix {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

/* Newsletter form enhancement */
.mil-subscripe-form-footer {
  position: relative;
}

.mil-subscripe-form-footer input {
  background-color: var(--surface-2);
  border: 1px solid var(--border-weak);
  border-radius: var(--radius-sm);
  height: 56px;
  padding: 0 60px 0 20px;
  color: var(--text-main);
  font-size: 14px;
  transition: var(--transition-normal);
  width: 100%;
}

.mil-subscripe-form-footer input::placeholder {
  color: var(--text-muted);
}

.mil-subscripe-form-footer input:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(3, 166, 166, 0.15);
}

.mil-subscripe-form-footer button {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  border: none;
  position: absolute;
  top: 8px;
  right: 8px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.mil-subscripe-form-footer button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(3, 166, 166, 0.3);
}

.mil-subscripe-form-footer button i {
  color: var(--color-white);
  font-size: 16px;
}

.mil-subscripe-form-footer button i.mil-dark {
  color: var(--color-white);
}

/* Checkbox enhancement */
.mil-checkbox-frame {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mil-checkbox {
  position: relative;
}

.mil-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-secondary);
  cursor: pointer;
}

.mil-checkbox-frame p {
  color: var(--text-muted);
  font-size: 13px;
}/*# sourceMappingURL=style.css.map */


/* ============================================
   UI/UX Pro Max - Global Enhancements
   Based on Fintech/Professional Design System
============================================ */

/* Enhanced Button Styles */
.mil-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.mil-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(242, 116, 87, 0.25);
}

.mil-btn:active {
  transform: translateY(0);
}

/* Light mode button enhancements */
html[data-theme="light"] .mil-btn:not(.mil-border):not(.mil-light) {
  box-shadow: 0 4px 15px rgba(242, 116, 87, 0.2);
}

html[data-theme="light"] .mil-btn:not(.mil-border):not(.mil-light):hover {
  box-shadow: 0 8px 30px rgba(242, 116, 87, 0.35);
}

/* Enhanced Card Interactions */
.mil-blog-card,
.mil-price-card,
.mil-career-card {
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mil-blog-card:hover,
.mil-career-card:hover {
  transform: translateY(-8px);
}

html[data-theme="light"] .mil-blog-card,
html[data-theme="light"] .mil-career-card {
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow: 0 2px 8px rgba(11, 18, 32, 0.04);
}

html[data-theme="light"] .mil-blog-card:hover,
html[data-theme="light"] .mil-career-card:hover {
  border-color: rgba(3, 166, 166, 0.3);
  box-shadow: 
    0 20px 40px rgba(11, 18, 32, 0.1),
    0 0 0 1px rgba(3, 166, 166, 0.1);
}

/* Price Card Enhancements */
.mil-price-card {
  position: relative;
  overflow: hidden;
}

.mil-price-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mil-price-card:hover::after,
.mil-price-card.mil-featured::after {
  opacity: 1;
}

html[data-theme="light"] .mil-price-card {
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.1);
}

html[data-theme="light"] .mil-price-card:hover {
  border-color: rgba(3, 166, 166, 0.4);
  box-shadow: 0 20px 50px rgba(3, 166, 166, 0.12);
}

/* Enhanced Form Inputs */
.mil-input {
  transition: all 0.3s ease;
  border: 1px solid var(--border-weak);
}

.mil-input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(3, 166, 166, 0.15);
  outline: none;
}

html[data-theme="light"] .mil-input {
  background: #ffffff;
  border-color: rgba(11, 18, 32, 0.12);
}

html[data-theme="light"] .mil-input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(3, 166, 166, 0.1);
}

/* Enhanced Navigation - removed duplicate underline, original uses ::before */

/* Blockquote/Testimonial Enhancements */
blockquote.mil-with-bg {
  position: relative;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html[data-theme="light"] blockquote.mil-with-bg {
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow: 0 4px 20px rgba(11, 18, 32, 0.05);
}

html[data-theme="light"] blockquote.mil-with-bg:hover {
  border-color: rgba(3, 166, 166, 0.25);
  box-shadow: 0 16px 40px rgba(11, 18, 32, 0.1);
}

/* Section Dividers */
.mil-section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-weak), transparent);
  margin: 80px 0;
}

/* Enhanced List Items */
.mil-list-2 li {
  transition: all 0.3s ease;
}

.mil-list-2 li:hover::after {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(3, 166, 166, 0.3);
}

/* Image Hover Effects */
.mil-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.mil-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mil-image-frame:hover::after {
  opacity: 1;
}

.mil-image-frame img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mil-image-frame:hover img {
  transform: scale(1.05);
}

/* Stats/Counter Enhancements */
.mil-counter {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced Scroll Progress */
.mil-progress-track {
  background: var(--surface-2);
}

.mil-progress {
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .mil-btn:hover {
    transform: none;
  }
  
  .mil-icon-box.mil-with-bg:hover,
  .mil-blog-card:hover,
  .mil-price-card:hover {
    transform: none;
  }
  
  /* Better touch feedback */
  .mil-btn:active,
  .mil-icon-box.mil-with-bg:active {
    transform: scale(0.98);
    opacity: 0.9;
  }
}

/* Focus States for Keyboard Navigation */
.mil-btn:focus-visible,
.mil-input:focus-visible,
.mil-social-icon:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Skeleton Loading States */
.mil-skeleton {
  background: linear-gradient(90deg, var(--surface-2) 25%, var(--surface-3) 50%, var(--surface-2) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

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

.mil-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-weak), transparent);
}

/* Newsletter Form Enhancement */
.mil-newsletter-form {
  position: relative;
}

.mil-newsletter-form .mil-btn {
  background: linear-gradient(135deg, var(--color-primary), #e85a3d);
}

.mil-newsletter-form .mil-btn:hover {
  background: linear-gradient(135deg, #e85a3d, var(--color-primary));
}

/* Smooth Page Transitions */
.mil-wrapper {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Enhanced Dropdown Menu */
.mil-has-children ul {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top center;
}

html[data-theme="light"] .mil-has-children ul {
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.1);
  box-shadow: 0 10px 40px rgba(11, 18, 32, 0.15);
}

/* CTA Section Enhancement */
.mil-cta .mil-out-frame {
  position: relative;
  overflow: hidden;
}

.mil-cta .mil-out-frame::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(3, 166, 166, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Text Selection */
::selection {
  background: rgba(3, 166, 166, 0.3);
  color: var(--text-main);
}

/* Improved Link Hover */
a:not(.mil-btn):not(.mil-logo):hover {
  color: var(--color-secondary);
}

/* Badge/Tag Styles */
.mil-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  background: var(--surface-2);
  color: var(--text-soft);
  transition: all 0.3s ease;
}

.mil-tag:hover {
  background: var(--color-secondary);
  color: #ffffff;
}

/* Accent Line Decoration */
.mil-accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
  border-radius: 2px;
  margin-bottom: 20px;
}

/* Enhanced Swiper Pagination */
.swiper-pagination-bullet {
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
  transform: scale(1.2);
}


/* Vacancy Card Enhancements */
.mil-vacancie {
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--radius-lg);
}

.mil-vacancie:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

html[data-theme="light"] .mil-vacancie {
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.08);
}

html[data-theme="light"] .mil-vacancie:hover {
  border-color: rgba(3, 166, 166, 0.3);
  box-shadow: 0 16px 40px rgba(11, 18, 32, 0.1);
}

/* Tags Enhancement */
.mil-tags li {
  transition: all 0.3s ease;
}

.mil-tags li:hover {
  background: var(--color-secondary);
  color: #ffffff;
}

/* FAQ/Accordion Enhancements */
.mil-accordion-item {
  transition: all 0.3s ease;
}

.mil-accordion-item:hover {
  background: var(--surface-2);
}

/* Contact Info Enhancement */
.mil-contact-info {
  transition: all 0.3s ease;
}

.mil-contact-info:hover {
  transform: translateX(4px);
}

/* Publication/Blog Detail Enhancements */
.mil-publication-content img {
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.mil-publication-content img:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Coming Soon Page Enhancement */
.mil-coming-soon {
  position: relative;
}

.mil-coming-soon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(3, 166, 166, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Enhanced Breadcrumbs */
.mil-breadcrumbs-modern a {
  transition: all 0.3s ease;
}

.mil-breadcrumbs-modern a:hover {
  color: var(--color-secondary);
}

/* Service Card Enhancements */
.mil-service-card {
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mil-service-card:hover {
  transform: translateY(-6px);
}

html[data-theme="light"] .mil-service-card {
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.08);
}

html[data-theme="light"] .mil-service-card:hover {
  border-color: rgba(3, 166, 166, 0.3);
  box-shadow: 0 16px 40px rgba(11, 18, 32, 0.1);
}

/* Step/Process Enhancements */
.mil-step {
  transition: all 0.3s ease;
}

.mil-step:hover {
  transform: scale(1.02);
}

/* Quote Section Enhancement */
.mil-quote blockquote {
  position: relative;
}

.mil-quote blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 80px;
  color: var(--color-secondary);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

/* Enhanced Out Frame */
.mil-out-frame {
  position: relative;
  overflow: hidden;
}

.mil-out-frame.mil-visible::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(3, 166, 166, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Light Mode Specific Enhancements */
html[data-theme="light"] .mil-out-frame {
  background-color: var(--surface-solid-2);
}

html[data-theme="light"] .mil-out-frame.mil-visible {
  background: linear-gradient(135deg, #0d5152 0%, #1a7a7a 100%);
}

/* Ensure text is visible on dark background in light mode */
html[data-theme="light"] .mil-out-frame.mil-visible h1,
html[data-theme="light"] .mil-out-frame.mil-visible h2,
html[data-theme="light"] .mil-out-frame.mil-visible h3,
html[data-theme="light"] .mil-out-frame.mil-visible h4,
html[data-theme="light"] .mil-out-frame.mil-visible h5,
html[data-theme="light"] .mil-out-frame.mil-visible h6,
html[data-theme="light"] .mil-out-frame.mil-visible p,
html[data-theme="light"] .mil-out-frame.mil-visible span,
html[data-theme="light"] .mil-out-frame.mil-visible li,
html[data-theme="light"] .mil-out-frame.mil-visible .mil-light {
  color: rgba(255, 255, 255, 0.95) !important;
}

html[data-theme="light"] .mil-out-frame.mil-visible .mil-soft,
html[data-theme="light"] .mil-out-frame.mil-visible .mil-dark-soft {
  color: rgba(255, 255, 255, 0.75) !important;
}

html[data-theme="light"] .mil-out-frame.mil-visible .mil-accent {
  color: #F27457 !important;
}

/* Improved Text Readability in Light Mode */
html[data-theme="light"] .mil-soft {
  color: rgba(11, 18, 32, 0.7);
}

html[data-theme="light"] h1,
html[data-theme="light"] h2,
html[data-theme="light"] h3,
html[data-theme="light"] h4,
html[data-theme="light"] h5,
html[data-theme="light"] h6 {
  color: rgba(11, 18, 32, 0.92);
}

/* Enhanced Scroll Animations - DISABLED for direct display */
.mil-up {
  opacity: 1;
  transform: none;
}

.mil-up.mil-visible {
  opacity: 1;
  transform: none;
}

/* Staggered Animation Delays - DISABLED */
.mil-up:nth-child(1) { transition-delay: 0s; }
.mil-up:nth-child(2) { transition-delay: 0s; }
.mil-up:nth-child(3) { transition-delay: 0s; }
.mil-up:nth-child(4) { transition-delay: 0s; }
.mil-up:nth-child(5) { transition-delay: 0s; }
.mil-up:nth-child(6) { transition-delay: 0s; }


/* Facts/Stats Section Alignment Fix */
.mil-facts .row {
  justify-content: center;
}

.mil-facts .col-xl-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mil-facts .h1.mil-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.mil-facts .mil-counter {
  min-width: auto;
}

/* Ensure consistent spacing */
.mil-facts .mil-pale {
  margin-left: 2px;
}

@media (max-width: 992px) {
  .mil-facts .col-xl-4 {
    margin-bottom: 40px;
  }
}


/* Fix text visibility on dark background sections in light mode */
html[data-theme="light"] .mil-out-frame[style*="background-image"] h1,
html[data-theme="light"] .mil-out-frame[style*="background-image"] h2,
html[data-theme="light"] .mil-out-frame[style*="background-image"] h3,
html[data-theme="light"] .mil-out-frame[style*="background-image"] h4,
html[data-theme="light"] .mil-out-frame[style*="background-image"] h5,
html[data-theme="light"] .mil-out-frame[style*="background-image"] h6,
html[data-theme="light"] .mil-out-frame[style*="background-image"] p,
html[data-theme="light"] .mil-out-frame[style*="background-image"] .mil-light {
  color: rgba(255, 255, 255, 0.95) !important;
}

html[data-theme="light"] .mil-out-frame[style*="background-image"] .mil-soft,
html[data-theme="light"] .mil-out-frame[style*="background-image"] .mil-dark-soft {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Also fix mil-image class sections */
html[data-theme="light"] .mil-out-frame.mil-image h1,
html[data-theme="light"] .mil-out-frame.mil-image h2,
html[data-theme="light"] .mil-out-frame.mil-image h3,
html[data-theme="light"] .mil-out-frame.mil-image h4,
html[data-theme="light"] .mil-out-frame.mil-image h5,
html[data-theme="light"] .mil-out-frame.mil-image h6,
html[data-theme="light"] .mil-out-frame.mil-image p,
html[data-theme="light"] .mil-out-frame.mil-image .mil-light {
  color: rgba(255, 255, 255, 0.95) !important;
}

html[data-theme="light"] .mil-out-frame.mil-image .mil-soft,
html[data-theme="light"] .mil-out-frame.mil-image .mil-dark-soft {
  color: rgba(255, 255, 255, 0.75) !important;
}


/* Light soft text for dark backgrounds */
.mil-light-soft {
  color: rgba(255, 255, 255, 0.8);
}

/* Enhanced CTA section text visibility */
.mil-out-frame.mil-visible .mil-light,
.mil-out-frame.mil-image .mil-light {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mil-out-frame.mil-visible .mil-light-soft,
.mil-out-frame.mil-image .mil-light-soft {
  color: rgba(255, 255, 255, 0.85);
}


/* -------------------------------------------
   Auth Pages (Login/Register)
------------------------------------------- */

/* Auth Section */
.mil-auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px;
  position: relative;
  background: var(--bg);
}

.mil-auth-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(3, 166, 166, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(242, 116, 87, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* Auth Card */
.mil-auth-card {
  background: var(--surface-solid-2);
  border: 1px solid var(--border-weak);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.mil-auth-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(3, 166, 166, 0.2) 0%, transparent 50%, rgba(242, 116, 87, 0.1) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mil-auth-card:hover::before {
  opacity: 1;
}

html[data-theme="light"] .mil-auth-card {
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(11, 18, 32, 0.08);
}

/* Auth Logo */
.mil-auth-logo img {
  transition: transform 0.3s ease;
}

.mil-auth-logo:hover img {
  transform: scale(1.05);
}

/* Auth Form */
.mil-auth-form {
  width: 100%;
}

/* Form Group */
.mil-form-group {
  position: relative;
}

.mil-form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.mil-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.mil-label-row .mil-form-label {
  margin-bottom: 0;
}

/* Input with Icon */
.mil-input-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.mil-input-icon > i:first-child {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  font-size: 16px;
  pointer-events: none;
  transition: color 0.3s ease;
}

.mil-input-with-icon {
  padding-left: 48px !important;
  padding-right: 48px;
}

.mil-input-icon:focus-within > i:first-child {
  color: var(--color-secondary);
}

/* Password Toggle */
.mil-password-toggle {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.mil-password-toggle:hover {
  color: var(--color-secondary);
}

/* Auth Divider */
.mil-auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 14px;
}

.mil-auth-divider::before,
.mil-auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-weak);
}

/* Social Login */
.mil-social-login {
  display: flex;
  gap: 12px;
}

.mil-social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--border-weak);
  background: var(--surface-2);
  color: var(--text-main);
}

.mil-social-btn i {
  font-size: 18px;
}

.mil-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mil-social-btn.mil-github:hover {
  background: #24292e;
  border-color: #24292e;
  color: #ffffff;
}

.mil-social-btn.mil-google:hover {
  background: #4285f4;
  border-color: #4285f4;
  color: #ffffff;
}

html[data-theme="light"] .mil-social-btn {
  background: #ffffff;
  border-color: rgba(11, 18, 32, 0.12);
}

/* Checkbox Enhancement */
.mil-checkbox-frame {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mil-checkbox {
  position: relative;
  width: 20px;
  height: 20px;
}

.mil-checkbox input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}

.mil-checkbox label {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-strong);
  border-radius: 4px;
  background: var(--surface-2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.mil-checkbox label::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.2s ease;
}

.mil-checkbox input:checked + label {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}

.mil-checkbox input:checked + label::after {
  transform: rotate(45deg) scale(1);
}

/* Auth Input Enhancement */
.mil-auth-form .mil-input {
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--surface-1);
  border: 1px solid var(--border-weak);
  transition: all 0.3s ease;
}

.mil-auth-form .mil-input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(3, 166, 166, 0.15);
  background: var(--surface-solid-1);
}

html[data-theme="light"] .mil-auth-form .mil-input {
  background: #ffffff;
  border-color: rgba(11, 18, 32, 0.12);
}

html[data-theme="light"] .mil-auth-form .mil-input:focus {
  background: #ffffff;
  border-color: var(--color-secondary);
}

/* Auth Page Responsive */
@media (max-width: 768px) {
  .mil-auth-section {
    padding: 100px 0 40px;
  }
  
  .mil-auth-card {
    padding: 32px 24px;
    margin: 0 16px;
  }
  
  .mil-social-login {
    flex-direction: column;
  }
  
  .mil-social-btn {
    width: 100%;
  }
}

/* Register Page Specific */
.mil-register-form .mil-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 576px) {
  .mil-register-form .mil-form-row {
    grid-template-columns: 1fr;
  }
}

/* Password Strength Indicator */
.mil-password-strength {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.mil-password-strength span {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--surface-3);
  transition: background 0.3s ease;
}

.mil-password-strength.weak span:nth-child(1) {
  background: #ef4444;
}

.mil-password-strength.medium span:nth-child(1),
.mil-password-strength.medium span:nth-child(2) {
  background: #f59e0b;
}

.mil-password-strength.strong span:nth-child(1),
.mil-password-strength.strong span:nth-child(2),
.mil-password-strength.strong span:nth-child(3) {
  background: #10b981;
}

/* Terms Checkbox */
.mil-terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.mil-terms-checkbox .mil-checkbox {
  flex-shrink: 0;
  margin-top: 2px;
}

.mil-terms-checkbox p {
  font-size: 14px;
  line-height: 1.5;
}

/* Auth Success/Error Messages */
.mil-auth-message {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 20px;
}

.mil-auth-message.mil-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.mil-auth-message.mil-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* Full Width Button */
.mil-btn.mil-fw {
  width: 100%;
  justify-content: center;
}

/* ML Icon Margin */
.mil-ml-10 {
  margin-left: 10px;
}


/* Auth Header with Login Link */
.mil-auth-header {
  position: relative;
  text-align: center;
}

.mil-auth-header h3 {
  margin: 0;
}

.mil-auth-link {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-secondary);
  transition: color 0.3s ease;
}

.mil-auth-link:hover {
  color: var(--color-primary);
}

/* Input with Button (Verification Code) */
.mil-input-with-btn {
  display: flex;
  gap: 12px;
}

.mil-input-with-btn .mil-input {
  flex: 1;
}

.mil-verify-btn {
  flex-shrink: 0;
  padding: 0 20px;
  height: 52px;
  border: 1px solid var(--color-secondary);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.mil-verify-btn:hover:not(.disabled) {
  background: var(--color-secondary);
  color: #ffffff;
}

.mil-verify-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  border-color: var(--border-weak);
  color: var(--text-muted);
}

html[data-theme="light"] .mil-verify-btn {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

html[data-theme="light"] .mil-verify-btn:hover:not(.disabled) {
  background: var(--color-secondary);
  color: #ffffff;
}

/* Input with Toggle (Password) */
.mil-input-with-toggle {
  padding-right: 48px !important;
}

/* Simplified Auth Form Input */
.mil-auth-form .mil-input {
  height: 52px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  background: var(--surface-1);
  border: 1px solid var(--border-weak);
  font-size: 15px;
  width: 100%;
  transition: all 0.3s ease;
}

.mil-auth-form .mil-input::placeholder {
  color: var(--text-muted);
}

.mil-auth-form .mil-input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(3, 166, 166, 0.15);
  background: var(--surface-solid-1);
  outline: none;
}

html[data-theme="light"] .mil-auth-form .mil-input {
  background: #ffffff;
  border-color: rgba(11, 18, 32, 0.15);
}

html[data-theme="light"] .mil-auth-form .mil-input:focus {
  background: #ffffff;
  border-color: var(--color-secondary);
}


/* Auth Title with Underline */
.mil-auth-title-box {
  text-align: center;
}

.mil-auth-title-box h3 {
  margin-bottom: 16px;
}

.mil-title-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
  border-radius: 2px;
  margin: 0 auto;
}


/* -------------------------------------------
   Library Page Styles
------------------------------------------- */

/* Search Box */
.mil-library-search {
  max-width: 600px;
  margin: 0 auto;
}

.mil-search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--surface-solid-2);
  border: 1px solid var(--border-weak);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.mil-search-box:focus-within {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(3, 166, 166, 0.15);
}

.mil-search-box i {
  color: var(--text-muted);
  font-size: 16px;
}

.mil-search-box input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--text-main);
  font-size: 15px;
  outline: none;
}

.mil-search-box input::placeholder {
  color: var(--text-muted);
}

.mil-search-clear {
  width: 24px;
  height: 24px;
  border: none;
  background: var(--surface-3);
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mil-search-clear:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Sidebar */
.mil-library-sidebar {
  position: sticky;
  top: 100px;
}

.mil-filter-section {
  background: var(--surface-solid-2);
  border: 1px solid var(--border-weak);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}

.mil-filter-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.mil-filter-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mil-filter-tab {
  padding: 10px 14px;
  border: 1px solid var(--border-weak);
  border-radius: var(--radius-sm);
  background: var(--surface-1);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.mil-filter-tab:hover {
  border-color: var(--color-secondary);
  color: var(--text-main);
}

.mil-filter-tab.active {
  background: rgba(3, 166, 166, 0.12);
  border-color: var(--color-secondary);
  color: var(--text-main);
}

.mil-filter-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mil-filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--text-soft);
  font-size: 14px;
  transition: color 0.3s ease;
}

.mil-filter-check:hover {
  color: var(--text-main);
}

.mil-filter-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-secondary);
}

.mil-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mil-tag-chip {
  padding: 6px 12px;
  border: 1px solid var(--border-weak);
  border-radius: 999px;
  background: var(--surface-1);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mil-tag-chip:hover {
  border-color: var(--color-secondary);
  color: var(--text-main);
}

.mil-tag-chip.active {
  background: rgba(3, 166, 166, 0.12);
  border-color: var(--color-secondary);
  color: var(--text-main);
}

/* Results */
.mil-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.mil-results-count {
  font-weight: 600;
  color: var(--text-main);
}

.mil-results-sort select {
  padding: 8px 12px;
  border: 1px solid var(--border-weak);
  border-radius: var(--radius-sm);
  background: var(--surface-solid-2);
  color: var(--text-main);
  font-size: 14px;
  cursor: pointer;
}

/* Indicator Grid */
.mil-indicator-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .mil-indicator-grid {
    grid-template-columns: 1fr;
  }
}

/* Indicator Card */
.mil-indicator-card {
  background: var(--surface-solid-2);
  border: 1px solid var(--border-weak);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mil-indicator-card:hover {
  border-color: var(--color-secondary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.mil-card-image {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(3, 166, 166, 0.15), rgba(242, 116, 87, 0.1));
}

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

.mil-indicator-card:hover .mil-card-image img {
  transform: scale(1.05);
}

.mil-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.mil-card-badge.mil-free {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.mil-card-badge.mil-premium {
  background: rgba(3, 166, 166, 0.15);
  color: var(--color-secondary);
  border: 1px solid rgba(3, 166, 166, 0.3);
}

.mil-card-content {
  padding: 16px;
}

.mil-card-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.mil-card-excerpt {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mil-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mil-card-date {
  font-size: 12px;
  color: var(--text-muted);
}

.mil-card-platforms {
  display: flex;
  gap: 6px;
}

.mil-platform-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-soft);
}

/* -------------------------------------------
   Indicator Detail Page Styles
------------------------------------------- */

/* Back Link */
.mil-detail-breadcrumb {
  padding-top: 120px;
  padding-bottom: 30px;
}

.mil-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--border-weak);
  border-radius: var(--radius-sm);
  background: var(--surface-solid-2);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mil-back-link:hover {
  border-color: var(--color-secondary);
  color: var(--text-main);
}

/* Indicator Header */
.mil-indicator-header {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-weak);
}

.mil-indicator-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.mil-indicator-tag {
  padding: 4px 10px;
  border: 1px solid var(--border-weak);
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}

.mil-indicator-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}

.mil-indicator-date {
  color: var(--text-muted);
  font-size: 14px;
}

.mil-indicator-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 992px) {
  .mil-indicator-actions {
    margin-top: 24px;
  }
}

/* Chart Preview */
.mil-chart-preview {
  background: var(--surface-solid-2);
  border: 1px solid var(--border-weak);
  border-radius: var(--radius-lg);
  padding: 16px;
}

.mil-chart-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-1);
  max-height: 450px;
}

.mil-chart-frame img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

/* Documentation */
.mil-indicator-doc {
  background: var(--surface-solid-2);
  border: 1px solid var(--border-weak);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.mil-indicator-doc h2 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--text-main);
}

.mil-indicator-doc h3 {
  font-size: 18px;
  margin: 32px 0 12px;
  color: var(--text-main);
}

.mil-indicator-doc h4 {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--text-main);
}

.mil-indicator-doc p {
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 12px;
}

.mil-doc-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
  padding: 16px;
  background: var(--surface-1);
  border-radius: var(--radius-sm);
}

.mil-doc-toc a {
  padding: 6px 12px;
  border: 1px solid var(--border-weak);
  border-radius: var(--radius-sm);
  background: var(--surface-solid-2);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mil-doc-toc a:hover {
  border-color: var(--color-secondary);
  color: var(--text-main);
}

.mil-doc-list {
  margin: 12px 0 12px 20px;
  color: var(--text-soft);
  line-height: 1.8;
}

.mil-doc-list li {
  margin-bottom: 8px;
}

.mil-doc-list strong {
  color: var(--text-main);
}

.mil-faq-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-weak);
}

.mil-faq-item:last-child {
  border-bottom: none;
}

.mil-faq-item h4 {
  color: var(--color-secondary);
}

/* Sidebar */
.mil-indicator-sidebar {
  position: sticky;
  top: 100px;
}

.mil-sidebar-card {
  background: var(--surface-solid-2);
  border: 1px solid var(--border-weak);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}

.mil-sidebar-card h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-soft);
  margin-bottom: 16px;
}

/* Platform List */
.mil-platform-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mil-platform-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: var(--surface-1);
  border: 1px solid var(--border-weak);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.mil-platform-item:hover:not(.mil-disabled) {
  border-color: var(--color-secondary);
}

.mil-platform-item.mil-disabled {
  opacity: 0.5;
}

.mil-platform-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mil-platform-item .mil-platform-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-main);
  overflow: hidden;
}

.mil-platform-item .mil-platform-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mil-platform-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mil-platform-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-main);
}

.mil-platform-status {
  font-size: 12px;
  color: var(--text-muted);
}

/* Info List */
.mil-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mil-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mil-info-label {
  font-size: 13px;
  color: var(--text-muted);
}

.mil-info-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

/* Related List */
.mil-related-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mil-related-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: var(--surface-1);
  border: 1px solid var(--border-weak);
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  font-size: 14px;
  transition: all 0.3s ease;
}

.mil-related-item:hover {
  border-color: var(--color-secondary);
  color: var(--text-main);
}

.mil-related-item i {
  font-size: 12px;
  color: var(--text-muted);
}

/* Light Mode Adjustments */
html[data-theme="light"] .mil-indicator-card,
html[data-theme="light"] .mil-filter-section,
html[data-theme="light"] .mil-sidebar-card,
html[data-theme="light"] .mil-indicator-doc,
html[data-theme="light"] .mil-chart-preview {
  background: #ffffff;
}

html[data-theme="light"] .mil-search-box,
html[data-theme="light"] .mil-back-link {
  background: #ffffff;
}


/* -------------------------------------------
   Enhanced Navigation Bar (Redesigned)
------------------------------------------- */

/* Nav Login Link - Secondary */
.mil-nav-link {
  padding: 10px 18px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.mil-nav-link:hover {
  color: var(--text-main);
}

.mil-nav-link.mil-active {
  color: var(--color-primary);
}

/* Nav CTA Button - Primary (咨询) */
.mil-nav-cta {
  background: var(--color-primary) !important;
  border: none !important;
  padding: 10px 22px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  border-radius: var(--radius-sm) !important;
  color: #ffffff !important;
  white-space: nowrap;
  transition: all 0.25s ease !important;
}

.mil-nav-cta:hover {
  background: #e85a3d !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242, 116, 87, 0.3);
}

/* Enhanced Top Panel - Dark Mode (Default) */
.mil-top-panel {
  background: rgba(15, 22, 36, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mil-top-panel.mil-active {
  background: rgba(15, 22, 36, 0.96);
}

/* Light Mode - Full Override */
html[data-theme="light"] .mil-top-panel {
  background: rgba(255, 255, 255, 0.95) !important;
  border-bottom: 1px solid rgba(11, 18, 32, 0.08) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

html[data-theme="light"] .mil-top-panel.mil-active {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

html[data-theme="light"] .mil-nav-link {
  color: #5a6a85;
}

html[data-theme="light"] .mil-nav-link:hover {
  color: #0b1220;
}

html[data-theme="light"] .mil-nav-link.mil-active {
  color: var(--color-primary);
}

html[data-theme="light"] .mil-nav-cta {
  background: var(--color-primary) !important;
  box-shadow: 0 2px 12px rgba(242, 116, 87, 0.25);
}

html[data-theme="light"] .mil-nav-cta:hover {
  box-shadow: 0 4px 20px rgba(242, 116, 87, 0.35);
}

/* Light Mode - Menu Button */
html[data-theme="light"] .mil-menu-btn {
  background-color: #f0f2f5;
}

html[data-theme="light"] .mil-menu-btn span,
html[data-theme="light"] .mil-menu-btn span:after,
html[data-theme="light"] .mil-menu-btn span:before {
  background-color: #0b1220;
}

/* Light Mode - Top Menu Links */
html[data-theme="light"] .mil-top-menu ul li a {
  color: #5a6a85;
}

html[data-theme="light"] .mil-top-menu ul li a:hover,
html[data-theme="light"] .mil-top-menu ul li.mil-active > a {
  color: #0b1220;
}

/* Light Mode - Dropdown */
html[data-theme="light"] .mil-top-menu ul li ul {
  background: #ffffff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

html[data-theme="light"] .mil-top-menu ul li ul li a {
  color: #5a6a85;
}

html[data-theme="light"] .mil-top-menu ul li ul li a:hover {
  color: #0b1220;
  background: rgba(11, 18, 32, 0.04);
}

/* Menu Buttons */
.mil-menu-buttons {
  gap: 6px !important;
}

/* Responsive */
@media (max-width: 1200px) {
  .mil-nav-link {
    display: none;
  }
  
  .mil-nav-cta {
    padding: 10px 18px !important;
  }
}

@media (max-width: 768px) {
  .mil-nav-cta {
    padding: 9px 14px !important;
    font-size: 13px !important;
  }
}
