@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");
/*===========================
  COMMON css 
===========================*/
:root {
  --font-family: "Inter", sans-serif;
  --primary: #155bd5;
  --primary-dark: #1c3ab6;
  --primary-light: #e2f1ff;
  --accent: #00d4d7;
  --accent-dark: #00bac1;
  --accent-light: #dff9f8;
  --success: #13d527;
  --success-dark: #00ae11;
  --success-light: #eafbe7;
  --secondary: #8f15d5;
  --secondary-dark: #6013c7;
  --secondary-light: #f4e5fa;
  --info: #15b2d5;
  --info-dark: #0f8ca8;
  --info-light: #e0f5fa;
  --caution: #dbbb25;
  --caution-dark: #d58f15;
  --caution-light: #fbf9e4;
  --error: #e6185e;
  --error-dark: #bf1257;
  --error-light: #fce4eb;
  --black: #1d1d1d;
  --dark-1: #2d2d2d;
  --dark-2: #4d4d4d;
  --dark-3: #6d6d6d;
  --gray-1: #8d8d8d;
  --gray-2: #adadad;
  --gray-3: #cdcdcd;
  --gray-4: #e0e0e0;
  --light-1: #efefef;
  --light-2: #f5f5f5;
  --light-3: #fafafa;
  --white: #ffffff;
  --gradient-1: linear-gradient(180deg, #155bd5 0%, #1c3ab6 100%);
  --gradient-2: linear-gradient(180deg, #155bd5 13.02%, #00d4d7 85.42%);
  --gradient-3: linear-gradient(180deg, #155bd5 0%, #8f15d5 100%);
  --gradient-4: linear-gradient(180deg, #155bd5 0%, #13d527 100%);
  --gradient-5: linear-gradient(180deg, #155bd5 0%, #15bbd5 100%);
  --gradient-6: linear-gradient(180deg, #155bd5 0%, #dbbb25 100%);
  --gradient-7: linear-gradient(180deg, #155bd5 0%, #e6185e 100%);
  --gradient-8: linear-gradient(180deg, #1c3ab6 0%, #00bac1 100%);
  --gradient-9: linear-gradient(180deg, #00d4d7 13.02%, #155bd5 85.42%);
  --shadow-1: 0px 0px 1px rgba(40, 41, 61, 0.08),
    0px 0.5px 2px rgba(96, 97, 112, 0.16);
  --shadow-2: 0px 0px 1px rgba(40, 41, 61, 0.04),
    0px 2px 4px rgba(96, 97, 112, 0.16);
  --shadow-3: 0px 0px 2px rgba(40, 41, 61, 0.04),
    0px 4px 8px rgba(96, 97, 112, 0.16);
  --shadow-4: 0px 2px 4px rgba(40, 41, 61, 0.04),
    0px 8px 16px rgba(96, 97, 112, 0.16);
  --shadow-5: 0px 2px 8px rgba(40, 41, 61, 0.04),
    0px 16px 24px rgba(96, 97, 112, 0.16);
  --shadow-6: 0px 2px 8px rgba(40, 41, 61, 0.08),
    0px 20px 32px rgba(96, 97, 112, 0.24);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--black);
  font-size: 16px;
}
@media (max-width: 991px) {
  body {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
}

a {
  display: inline-block;
}

a,
button,
a:hover,
a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--black);
  margin: 0px;
}

h1,
.h1 {
  font-size: 2.75em;
  line-height: 1.25;
}

h2,
.h2 {
  font-size: 2.25em;
  line-height: 1.25;
}

h3,
.h3 {
  font-size: 1.75em;
  line-height: 1.25;
}

h4,
.h4 {
  font-size: 1.5em;
  line-height: 1.25;
}

h5,
.h5 {
  font-size: 1.25em;
  line-height: 1.25;
}

h6,
.h6 {
  font-size: 0.875em;
  line-height: 1.25;
}

.display-1 {
  font-size: 5.5em;
  line-height: 1.25;
}

.display-2 {
  font-size: 4.75em;
  line-height: 1.25;
}

.display-3 {
  font-size: 4em;
  line-height: 1.25;
}

.display-4 {
  font-size: 3.25em;
  line-height: 1.25;
}

p {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  color: var(--dark-3);
  margin: 0px;
}

.text-small {
  font-size: 0.875em;
  line-height: 1.5;
}

.text-lg {
  font-size: 1.15em;
  line-height: 1.5;
}

.bg_cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.btn {
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
}
.btn:hover {
  color: inherit;
}
.btn:focus {
  box-shadow: none;
  outline: none;
}
.btn.btn-lg {
  font-size: 1.15em;
  padding: 16px 24px;
}
.btn.btn-sm {
  padding: 8px 16px;
}
.btn.square {
  border-radius: 0px;
}
.btn.semi-rounded {
  border-radius: 12px;
}
.btn.rounded-full {
  border-radius: 50px;
}
.btn.icon-left span,
.btn.icon-left i {
  margin-right: 8px;
}
.btn.icon-right span,
.btn.icon-right i {
  margin-left: 8px;
}
.btn.icon-btn {
  width: 48px;
  height: 48px;
  padding: 0;
  line-height: 48px;
}
.btn.icon-btn.btn-lg {
  width: 56px;
  height: 56px;
  line-height: 56px;
}
.btn.icon-btn.btn-sm {
  width: 40px;
  height: 40px;
  line-height: 40px;
}


/* ===== Buttons Css ===== */
.primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.active.primary-btn, .primary-btn:hover, .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

.primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.active.primary-btn-outline, .primary-btn-outline:hover, .primary-btn-outline:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}


/* One Click Scrool Top Button*/
.scroll-top {
  width: 48px;
  height: 48px;
  background: var(--primary);
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #fff !important;
  border-radius: 14px;
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(21, 91, 213, 0.3);
}
.scroll-top i {
  transition: transform 0.3s ease;
}
.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(21, 91, 213, 0.4);
}
.scroll-top:hover i {
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .scroll-top {
    width: 44px;
    height: 44px;
    font-size: 16px;
    border-radius: 12px;
    bottom: 20px;
    right: 16px;
  }
}

/*===========================
  Section Title Five CSS
===========================*/
.section-title-five {
  text-align: center;
  max-width: 550px;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-five {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .section-title-five {
    margin-bottom: 35px;
  }
}
.section-title-five h6 {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 30px;
  padding: 8px 30px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .section-title-five h6 {
    padding: 6px 24px;
    font-size: 13px;
  }
}
.section-title-five h2 {
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-five h2 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
@media (max-width: 767px) {
  .section-title-five h2 {
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
}
.section-title-five .col-12 {
  display: flex;
  justify-content: center;
}
.section-title-five .content {
  text-align: center;
}
.section-title-five p {
  color: var(--dark-2);
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .section-title-five p {
    font-size: 15px;
  }
}

/* Светлый вариант для тёмного фона */
.section-title-five--light h6 {
  color: var(--white);
  border-color: var(--white);
  margin-bottom: 0;
}
.section-title-five--light h2 {
  color: var(--white);
}
.section-title-five--light p {
  color: rgba(255, 255, 255, 0.8);
}

/*===========================
  N3Lab Logo
===========================*/
.n3-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.n3-logo img {
  height: 42px;
  width: auto;
}
.n3-logo-text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 23px;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* White variant (navbar on blue) */
.n3-logo--white img {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}
.n3-logo--white .n3-logo-text {
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
/* Dark variant (sidebar, footer) */
.n3-logo--dark img {
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.15));
}
.n3-logo--dark .n3-logo-text {
  color: var(--black);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.made-in-ayroui{
  position: fixed;
  left: 5px;
  bottom: 5px;
  z-index: 999;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.made-in-ayroui:hover{
  transform: translateY(-5px);
}


/*===========================
  NAVBAR css 
===========================*/
.navbar-toggler:focus {
  box-shadow: none;
}

.mb-100 {
  margin-bottom: 100px;
}

/*===== NAVBAR NINE =====*/
.navbar-area.navbar-nine {
  background: var(--primary);
  padding: 10px 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease-out 0s;
}
.sticky {
  position: fixed !important;
  z-index: 99 !important;
  top: 0;
  width: 100%;
  background: rgba(21, 91, 213, 0.85) !important;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine {
    padding: 10px 0;
  }
}
.navbar-area.navbar-nine .navbar-brand {
  margin: 0;
}
.navbar-area.navbar-nine .navbar {
  position: relative;
  padding: 0;
}
.navbar-area.navbar-nine .navbar .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  margin: 5px 0;
  display: block;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar-area.navbar-nine .navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}
@media only screen and (max-width: 991px) {
  .navbar-area.navbar-nine .navbar .navbar-collapse {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    background-color: #155bd5 !important;
    background-image: linear-gradient(135deg, #155bd5 0%, #1c3ab6 100%) !important;
    z-index: 9999 !important;
    padding: 20px 24px !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(0, 0, 0, 0.25) !important;
    /* Отключаем Bootstrap анимацию */
    display: none !important;
    height: auto !important;
    overflow: visible !important;
    transition: none !important;
  }
  .navbar-area.navbar-nine .navbar .navbar-collapse.collapsing {
    display: block !important;
    opacity: 0.5;
    transform: translateY(-8px);
  }
  .navbar-area.navbar-nine .navbar .navbar-collapse.show {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
    animation: menuFadeIn 0.2s ease forwards;
  }
  @keyframes menuFadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media only screen and (min-width: 992px) {
  .navbar-area.navbar-nine .navbar .navbar-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav {
    margin-right: 0;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item {
  position: relative;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
  display: flex;
  align-items: center;
  padding: 11px 16px;
  color: var(--white);
  position: relative;
  border-radius: 5px;
  font-weight: 500;
  font-size: 17px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin: 14px 0;
  opacity: 0.7;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a:hover {
  opacity: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a {
    padding: 14px 16px;
    display: block;
    border: 0;
    margin: 4px 0;
    opacity: 1;
    font-size: 16px;
    font-weight: 500;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
  }
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a:hover,
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a.active {
    background: rgba(255, 255, 255, 0.18);
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a.active {
  opacity: 1;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item a i {
  font-size: 12px;
  font-weight: 700;
  padding-left: 7px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item a i {
    position: relative;
    top: -5px;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu {
  position: absolute;
  left: 0;
  top: 130%;
  width: 230px;
  background-color: var(--white);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 99;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu {
    position: relative !important;
    width: 100% !important;
    left: 0 !important;
    top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    right: auto;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all none ease-out 0s;
    -moz-transition: all none ease-out 0s;
    -ms-transition: all none ease-out 0s;
    -o-transition: all none ease-out 0s;
    transition: all none ease-out 0s;
    box-shadow: none;
    text-align: left;
    border-top: 0;
    height: 0;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  height: auto;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    height: 0;
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu.show {
    height: auto;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li {
  position: relative;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-nav-toggler {
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  position: relative;
  color: var(--dark-2);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 0;
  margin: 0 0;
  z-index: 5;
  opacity: 1;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a i {
  font-weight: 700;
  font-size: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a i {
    display: none;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li a .sub-nav-toggler i {
  display: inline-block;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li .sub-menu.show {
    visibility: visible;
    height: auto;
    position: relative;
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-nav-toggler {
  color: var(--white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover .sub-nav-toggler {
    color: var(--primary);
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a {
  color: var(--primary);
  padding-left: 22px;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a i {
  color: var(--primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a {
    color: var(--primary);
  }
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a::after {
  opacity: 1;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-menu li:hover > a::before {
  opacity: 1;
}
.navbar-area.navbar-nine .navbar .navbar-nav .nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 115%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-nav .nav-item .sub-nav-toggler {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 14px;
    font-size: 16px;
    background: none;
    border: 0;
    color: var(--white);
  }
}
.navbar-area.navbar-nine .navbar .navbar-btn {
  display: flex;
  align-items: center;
  margin-left: auto;
  order: 3;
}
.navbar-area.navbar-nine .navbar .navbar-btn .menu-bar {
  font-size: 24px;
  position: relative;
  color: var(--white);
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: none;
  background: transparent;
  display: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media (min-width: 992px) {
  .navbar-area.navbar-nine .navbar .navbar-btn .menu-bar {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.navbar-area.navbar-nine .navbar .navbar-btn .menu-bar:hover {
  color: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
}
/* Mobile: position navbar-btn before toggler */
@media (max-width: 991px) {
  .navbar-area.navbar-nine .navbar .navbar-btn {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 767px) {
  .navbar-area.navbar-nine .navbar .navbar-btn {
    right: 50px;
  }
}

/*===== LANGUAGE LABEL (superscript after N3Lab) =====*/
.lang-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 3px;
  vertical-align: super;
  top: -0.6em;
  position: relative;
}

/*===== LANGUAGE SWITCHER =====*/
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 4px;
  margin-right: 16px;
}
.lang-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 26px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
}
.lang-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.lang-link--active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
}
/* Tablet & Mobile */
@media (max-width: 991px) {
  .lang-switcher {
    padding: 4px;
    margin-right: 14px;
    border-radius: 7px;
  }
  .lang-link {
    min-width: 36px;
    height: 28px;
    font-size: 12px;
  }
  .lang-label {
    font-size: 9px;
  }
}

/*===== SIDEBAR ONE =====*/
.sidebar-left {
  position: fixed;
  top: 0;
  right: 0;
  background-color: var(--white);
  height: 100%;
  width: 350px;
  padding-top: 80px;
  z-index: 999;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 0.4s ease-in-out;
  text-align: left;
}
.sidebar-left.open {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
@media (max-width: 767px) {
  .sidebar-left {
    width: 250px;
  }
}
.sidebar-left .sidebar-close {
  position: absolute;
  top: 30px;
  right: 30px;
}
.sidebar-left .sidebar-close .close {
  font-size: 18px;
  color: var(--black);
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -ms-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
.sidebar-left .sidebar-close .close:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.sidebar-left .sidebar-content {
  padding: 0px 30px;
}
.sidebar-left .sidebar-content .sidebar-menu {
  margin-top: 30px;
}
.sidebar-left .sidebar-content .sidebar-menu .menu-title {
  font-size: 18px;
  font-weight: 600;
}
.sidebar-left .sidebar-content .sidebar-menu ul {
  margin-top: 15px;
}
.sidebar-left .sidebar-content .sidebar-menu ul li a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 8px 0;
  color: var(--dark-3);
  position: relative;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: block;
}
.sidebar-left .sidebar-content .sidebar-menu ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}
.sidebar-left .sidebar-content .text {
  margin-top: 20px;
}
.sidebar-left .sidebar-content .sidebar-social {
  margin-top: 30px;
}
.sidebar-left .sidebar-content .sidebar-social .social-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}
.sidebar-left .sidebar-content .sidebar-social ul li {
  display: inline-block;
  margin-right: 5px;
}
.sidebar-left .sidebar-content .sidebar-social ul li:last-child {
  margin: 0;
}
.sidebar-left .sidebar-content .sidebar-social ul li a {
  height: 38px;
  width: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  border-radius: 50%;
  font-size: 18px;
  color: #666;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sidebar-left .sidebar-content .sidebar-social ul li a:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: transparent;
}
.sidebar-left .sidebar-content .sidebar-social ul li a svg {
  width: 18px;
  height: 18px;
}
.sidebar-left .sidebar-content .sidebar-social ul li a i {
  font-size: 18px;
  line-height: 1;
}

.overlay-left {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 99;
}
.overlay-left.open {
  display: block;
}


/* ===== Buttons Css ===== */
.header-eight .primary-btn {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-2);
}
.header-eight .active.primary-btn, .header-eight .primary-btn:hover, .header-eight .primary-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-4);
}
.header-eight .deactive.primary-btn {
  background: var(--gray-4);
  color: var(--dark-3);
  pointer-events: none;
}

/*======================================
    header Area CSS
========================================*/
.header-eight {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary);
  overflow: hidden;
}

/* Video wrapper - positioned on the right */
.hero-video-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 1;
}
.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
/* Gradient overlay for seamless blend */
.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    var(--primary) 0%,
    var(--primary) 5%,
    rgba(21, 91, 213, 0.95) 15%,
    rgba(21, 91, 213, 0.7) 35%,
    rgba(21, 91, 213, 0.3) 60%,
    rgba(21, 91, 213, 0) 100%
  );
  z-index: 2;
}
/* Diagonal decorative element */
.header-eight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 45%;
  width: 200px;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 50%,
    transparent 100%
  );
  transform: skewX(-15deg);
  z-index: 3;
  pointer-events: none;
}

/* Content area */
.header-eight .container {
  position: relative;
  z-index: 5;
}
.header-eight .header-content {
  padding: 140px 0 100px 0;
  max-width: 560px;
}
.header-eight .header-content h1 {
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1.15;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.header-eight .header-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

/* Hero buttons */
.header-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.header-eight .header-buttons .primary-btn {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.header-eight .header-buttons .primary-btn:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.header-eight .header-buttons .primary-btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.header-eight .header-buttons .primary-btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-eight {
    min-height: auto;
  }
  .hero-video-wrapper {
    width: 50%;
  }
  .header-eight .header-content {
    padding: 120px 0 80px 0;
    max-width: 400px;
  }
  .header-eight .header-content h1 {
    font-size: 2.5rem;
  }
  .header-eight .header-content p {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .header-eight {
    min-height: 100vh;
    min-height: 100svh;
  }
  .hero-video-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
  }
  .hero-video-overlay {
    background: linear-gradient(
      135deg,
      rgba(21, 91, 213, 0.92) 0%,
      rgba(21, 91, 213, 0.75) 50%,
      rgba(21, 91, 213, 0.85) 100%
    );
  }
  .header-eight::before {
    display: none;
  }
  .header-eight .header-content {
    padding: 120px 0 80px 0;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 200px);
    min-height: calc(100svh - 200px);
  }
  .header-eight .header-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .header-eight .header-content p {
    font-size: 0.95rem;
    margin-bottom: 32px;
  }
  .header-buttons {
    justify-content: center;
  }
  .header-eight .header-buttons .primary-btn,
  .header-eight .header-buttons .primary-btn-outline {
    padding: 14px 28px;
    font-size: 14px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .header-eight .header-content {
    padding: 100px 0 60px 0;
    min-height: calc(100vh - 160px);
    min-height: calc(100svh - 160px);
  }
  .header-eight .header-content h1 {
    font-size: 1.75rem;
  }
  .header-eight .header-content p {
    font-size: 0.9rem;
  }
  .header-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .header-eight .header-buttons .primary-btn,
  .header-eight .header-buttons .primary-btn-outline {
    width: 100%;
    text-align: center;
  }
}

/*===========================
  about-05 css
===========================*/
.about-five {
  background-color: var(--light-3);
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-five {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .about-five {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.about-five-content {
  padding-left: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-five-content {
    padding-left: 0;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .about-five-content {
    padding-left: 0;
    text-align: center;
    margin-bottom: 40px;
  }
}
.about-five-content .small-title {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 30px;
  padding: 8px 30px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .about-five-content .small-title {
    padding: 6px 24px;
    font-size: 13px;
  }
}
.about-five-content .main-title {
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--dark-1);
  margin-top: 0;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-five-content .main-title {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .about-five-content .main-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}
.about-five-content .about-five-tab {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .about-five-content .about-five-tab {
    margin-top: 28px;
  }
}
.about-five-content .about-five-tab nav {
  border: none;
  background-color: var(--white);
  padding: 5px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  width: 100%;
}
.about-five-content .about-five-tab nav .nav-tabs {
  border: none;
  display: flex;
  gap: 4px;
  width: 100%;
}
.about-five-content .about-five-tab nav button {
  border: none;
  color: var(--dark-2);
  font-weight: 500;
  font-size: 15px;
  background-color: transparent;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
  margin: 0;
  flex: 1;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-five-content .about-five-tab nav button {
    padding: 10px 16px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .about-five-content .about-five-tab nav {
    flex-direction: column;
  }
  .about-five-content .about-five-tab nav .nav-tabs {
    flex-direction: column;
    width: 100%;
  }
  .about-five-content .about-five-tab nav button {
    padding: 12px 16px;
    font-size: 14px;
    width: 100%;
  }
}
.about-five-content .about-five-tab nav button:hover {
  color: var(--primary);
  background-color: var(--light-3);
}
.about-five-content .about-five-tab nav button.active {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
}
.about-five-content .about-five-tab .tab-content {
  border: none;
  padding-top: 28px;
  position: relative;
  display: grid;
}
.about-five-content .about-five-tab .tab-content .tab-pane {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.about-five-content .about-five-tab .tab-content .tab-pane.show.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .about-five-content .about-five-tab .tab-content {
    text-align: left;
    padding-top: 24px;
  }
}
.about-five-content .about-five-tab .tab-content p {
  margin-bottom: 16px;
  color: var(--dark-1);
  line-height: 1.75;
  font-size: 16px;
}
@media (max-width: 767px) {
  .about-five-content .about-five-tab .tab-content p {
    font-size: 15px;
    line-height: 1.7;
  }
}
.about-five-content .about-five-tab .tab-content p:last-child {
  margin: 0;
}

.about-image-five {
  position: relative;
  z-index: 2;
  padding: 40px;
  margin-left: -20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-image-five {
    padding: 30px;
    margin-left: -10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-five {
    margin-bottom: 0;
    padding: 30px;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .about-image-five {
    margin-bottom: 0;
    padding: 0;
    margin-left: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.about-image-five .shape {
  position: absolute;
  z-index: -1;
  opacity: 0.45;
  width: 106px;
  height: auto;
}
.about-image-five .shape-left {
  left: -2px;
  top: 8px;
}
.about-image-five .shape-right {
  right: -2px;
  bottom: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-five .shape {
    width: 90px;
  }
}
@media (max-width: 767px) {
  .about-image-five .shape {
    display: none;
  }
}
.about-image-five img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}
@media (min-width: 1200px) {
  .about-image-five img {
    transform: scale(1.08);
    transform-origin: center center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-image-five img {
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .about-image-five img {
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
  }
}


/*===========================
  services css
===========================*/
.services-eight {
  padding: 60px 0 100px;
  scroll-margin-top: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-eight {
    padding: 50px 0 80px;
  }
}
@media (max-width: 767px) {
  .services-eight {
    padding: 40px 0 60px;
  }
}
.services-eight .row {
  display: flex;
  flex-wrap: wrap;
}
.services-eight .row > [class*="col-"] {
  display: flex;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .services-eight .row > [class*="col-"] {
    margin-bottom: 20px;
  }
}
.services-eight .single-services {
  padding: 40px 30px;
  border: none;
  border-radius: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .services-eight .single-services {
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
}
.services-eight .single-services:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.services-eight .single-services:hover .service-icon {
  color: var(--white);
  background: var(--primary);
  transform: scale(1.05);
}
.services-eight .single-services .service-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 24px;
  background: var(--primary-light);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 36px;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 767px) {
  .services-eight .single-services .service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }
}
.services-eight .single-services .service-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .services-eight .single-services .service-icon svg {
    width: 28px;
    height: 28px;
  }
}
.services-eight .single-services .service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.services-eight .single-services .service-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--dark-1);
}
@media (max-width: 767px) {
  .services-eight .single-services .service-content h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.services-eight .single-services .service-content p {
  color: var(--dark-2);
  flex: 1;
  margin: 0;
  line-height: 1.7;
  font-size: 15px;
}
@media (max-width: 767px) {
  .services-eight .single-services .service-content p {
    font-size: 14px;
    line-height: 1.65;
  }
}


/*======================================
    Projects Area CSS
========================================*/
.projects-area {
  padding: 60px 0 100px;
  background: var(--light-3);
  scroll-margin-top: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .projects-area {
    padding: 50px 0 80px;
  }
}
@media (max-width: 767px) {
  .projects-area {
    padding: 40px 0 60px;
  }
}

.projects-area .row {
  --bs-gutter-x: 2rem;
}
.project-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  margin-bottom: 30px;
  transition: all 0.4s ease;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.project-card:hover {
  box-shadow: var(--shadow-5);
  transform: translateY(-5px);
}

.project-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: all 0.5s ease;
}
.project-card:hover .project-image > img {
  transform: scale(1.05);
}

/* Варианты отображения изображений на карточках */
/* Скриншоты приложений — показываем верхнюю часть (шапку) */
.project-image--app > img {
  object-position: center top;
}
/* Фото устройств — показываем целиком с фоном */
.project-image--device {
  background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
}
.project-image--device > img {
  object-fit: contain;
  padding: 12px;
}
/* Фото с центрированием */
.project-image--center > img {
  object-position: center center;
}
/* Фото с фокусом на верхней части */
.project-image--top > img {
  object-position: center top;
}

/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-image {
    aspect-ratio: 4 / 3;
  }
}
/* Mobile */
@media (max-width: 767px) {
  .project-image {
    aspect-ratio: 16 / 10;
  }
  .project-card {
    height: auto;
  }
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.project-card:hover .project-overlay {
  opacity: 1;
  visibility: visible;
}
.project-overlay .btn {
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.project-card:hover .project-overlay .btn {
  transform: translateY(0);
}

.project-info {
  padding: 22px 26px;
  text-align: center;
  border-top: 1px solid var(--gray-4);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 110px;
}
.project-info h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.project-tagline {
  font-size: 14px;
  color: var(--dark-2);
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* Project Modal */
/* Prevent body scroll when modal is open on mobile */
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
@media (min-width: 768px) {
  body.modal-open {
    position: static;
  }
}

.project-modal .modal-dialog {
  max-height: 95vh;
}
.project-modal .modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  max-height: 95vh;
  display: flex;
  flex-direction: column;
}
.project-modal .modal-header {
  border-bottom: 1px solid var(--gray-4);
  padding: 20px 24px;
  flex-shrink: 0;
}
.project-modal .modal-title {
  font-weight: 700;
  color: var(--black);
}
.project-modal .modal-body {
  padding: 0;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.project-modal .btn-close:focus {
  box-shadow: none;
}

/* Carousel in Modal */
.project-modal .carousel {
  background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}
.project-modal .carousel-inner {
  aspect-ratio: 16 / 9;
  max-height: 60vh;
  overflow: hidden;
}
.project-modal .carousel-item {
  height: 100%;
}
.project-modal .carousel-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: zoom-in;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-modal .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.project-modal .carousel-item a .zoom-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transform: scale(1);
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.project-modal .carousel-item a .zoom-hint i {
  font-size: 20px;
  color: var(--primary);
}
.project-modal .carousel-item a:hover .zoom-hint {
  opacity: 1;
  transform: scale(1.1);
  background: var(--white);
}
/* Touch devices - always show zoom hint */
@media (hover: none) and (pointer: coarse) {
  .project-modal .carousel-item a .zoom-hint {
    opacity: 0.9;
  }
}
.carousel-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, var(--gray-3) 0%, var(--gray-4) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.carousel-placeholder i {
  font-size: 80px;
  color: var(--gray-1);
}
.carousel-placeholder span {
  font-size: 18px;
  color: var(--gray-1);
  font-weight: 500;
}

.project-modal .carousel-control-prev,
.project-modal .carousel-control-next {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.3s ease;
}
.project-modal .carousel-control-prev {
  left: 20px;
}
.project-modal .carousel-control-next {
  right: 20px;
}
.project-modal .carousel-control-prev:hover,
.project-modal .carousel-control-next:hover {
  background: var(--primary-dark);
}
.project-modal .carousel-indicators {
  margin-bottom: 15px;
}
.project-modal .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--white);
  opacity: 0.5;
  border: none;
}
.project-modal .carousel-indicators button.active {
  opacity: 1;
  background-color: var(--primary);
}

/* Project Description in Modal */
.project-description {
  padding: 30px;
}
.project-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.project-description h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}
.project-lead {
  font-size: 16px;
  color: var(--dark-2);
  line-height: 1.7;
  margin-bottom: 24px;
}
.project-description p {
  color: var(--dark-3);
  line-height: 1.7;
}

/* Project Features */
.project-features {
  margin-bottom: 24px;
}
.project-features h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}
.project-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.project-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: var(--dark-3);
  font-size: 15px;
}
.project-features li i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 2px;
}

/* Project Use Cases */
.project-usecases {
  margin-bottom: 24px;
}
.project-usecases h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}
.usecase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.usecase-tag {
  background: var(--light-2);
  color: var(--dark-2);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid var(--gray-4);
}

/* Project Actions */
.project-actions {
  padding-top: 16px;
  border-top: 1px solid var(--gray-4);
}
.project-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.project-actions .btn i {
  font-size: 18px;
}

/* Tablet adjustments for project modals */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-modal .carousel-inner {
    max-height: 50vh;
  }
}

/* Mobile adjustments for projects */
@media (max-width: 767px) {
  .project-modal .modal-dialog {
    margin: 8px;
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
  }
  .project-modal .modal-content {
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    border-radius: 12px;
  }
  .project-modal .modal-body {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }
  .project-modal .carousel-inner {
    aspect-ratio: 4 / 3;
    max-height: 35vh;
  }
  .project-modal .carousel-control-prev,
  .project-modal .carousel-control-next {
    width: 36px;
    height: 36px;
  }
  .project-modal .carousel-control-prev {
    left: 8px;
  }
  .project-modal .carousel-control-next {
    right: 8px;
  }
  .project-modal .carousel-item a .zoom-hint {
    width: 36px;
    height: 36px;
    bottom: 10px;
    right: 10px;
  }
  .project-modal .carousel-item a .zoom-hint i {
    font-size: 16px;
  }
  .project-modal .carousel-indicators {
    margin-bottom: 10px;
  }
  .project-modal .carousel-indicators button {
    width: 10px;
    height: 10px;
  }
  .carousel-placeholder {
    min-height: 200px;
  }
  .carousel-placeholder i {
    font-size: 50px;
  }
  .project-description {
    padding: 20px;
  }
  .project-description h4 {
    font-size: 20px;
  }
  .project-lead {
    font-size: 15px;
  }
  .project-features li {
    font-size: 14px;
  }
  .usecase-tag {
    font-size: 12px;
    padding: 5px 12px;
  }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
  .project-image {
    aspect-ratio: 4 / 3;
  }
  .project-info {
    padding: 18px 20px;
    min-height: 100px;
  }
  .project-info h4 {
    font-size: 17px;
  }
  .project-tagline {
    font-size: 13px;
  }
  .project-modal .modal-dialog {
    margin: 6px;
    max-height: calc(100vh - 12px);
    max-height: calc(100dvh - 12px);
  }
  .project-modal .modal-content {
    max-height: calc(100vh - 12px);
    max-height: calc(100dvh - 12px);
  }
  .project-modal .modal-header {
    padding: 12px 14px;
  }
  .project-modal .modal-title {
    font-size: 16px;
  }
  .project-modal .carousel-inner {
    aspect-ratio: 4 / 3;
    max-height: 30vh;
  }
  .project-description {
    padding: 16px;
  }
  .project-description h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .project-lead {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .project-features {
    margin-bottom: 20px;
  }
  .project-features h5,
  .project-usecases h5 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .project-features li {
    font-size: 13px;
    padding: 6px 0;
  }
  .project-features li i {
    font-size: 16px;
  }
  .project-usecases {
    margin-bottom: 20px;
  }
  .usecase-tags {
    gap: 6px;
  }
  .usecase-tag {
    font-size: 11px;
    padding: 4px 10px;
  }
  .project-description {
    padding-bottom: 20px;
  }
  .project-actions {
    padding: 14px 0 6px;
  }
  .project-actions .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 14px;
  }
}


/*===== VIDEO ONE =====*/
.video-one {
  background-color: var(--light-3);
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-one {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .video-one {
    padding: 60px 0;
  }
}
.video-one .video-title h5 {
  font-weight: 600;
  color: var(--primary);
}
.video-one .video-title h2 {
  font-weight: 700;
  color: var(--black);
  margin-top: 10px;
}
.video-one .video-title .text-lg {
  margin-top: 24px;
  color: var(--dark-3);
}
.video-one .video-content {
  position: relative;
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}
.video-one .video-content img {
  border-radius: 8px;
}
.video-one .video-content a {
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding-left: 3px;
}
@media (max-width: 767px) {
  .video-one .video-content a {
    width: 68px;
    height: 68px;
    line-height: 68px;
    font-size: 20px;
  }
}
.video-one .video-content a:hover {
  background-color: var(--white);
  color: var(--primary);
}


/*===== PRICING THIRTEEN =====*/
.pricing-fourteen {
  padding: 100px 0;
  background-color: var(--light-3);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing-fourteen {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .pricing-fourteen {
    padding: 60px 0;
  }
}
.pricing-style-fourteen {
  border: 1px solid var(--light-1);
  border-radius: 10px;
  margin-top: 30px;
  background-color: var(--white);
  transition: all 0.4s ease;
  padding: 50px 35px;
  text-align: center;
  z-index: 0;
}
.pricing-style-fourteen:hover {
  box-shadow: var(--shadow-4);
}
.pricing-style-fourteen.middle {
  box-shadow: var(--shadow-4);
}
.pricing-style-fourteen.middle .title {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.pricing-style-fourteen .title {
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--primary);
  padding: 8px 20px;
  border: 2px solid var(--primary);
  display: inline-block;
  border-radius: 30px;
  font-size: 16px;
}
.pricing-style-fourteen .table-head p {
  color: var(--dark-3);
}
.pricing-style-fourteen .price {
  padding-top: 30px;
}
.pricing-style-fourteen .amount {
  font-weight: 600;
  display: inline-block;
  position: relative;
  padding-left: 15px;
  font-size: 55px;
}
.pricing-style-fourteen .currency {
  font-weight: 400;
  color: var(--dark-3);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 6px;
}
.pricing-style-fourteen .duration {
  display: inline-block;
  font-size: 18px;
  color: var(--dark-3);
  font-weight: 400;
}
.pricing-style-fourteen .light-rounded-buttons {
  margin: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}
.pricing-style-fourteen .table-list li {
  position: relative;
  margin-bottom: 10px;
  color: var(--dark-3);
  text-align: left;
}
.pricing-style-fourteen .table-list li:last-child {
  margin: 0;
}
.pricing-style-fourteen .table-list li i {
  color: var(--primary);
  font-size: 16px;
  padding-right: 8px;
}
.pricing-style-fourteen .table-list li i.deactive {
  color: var(--dark-3);
}




/* ===== Buttons Css ===== */
.call-action .inner-content .light-rounded-buttons .primary-btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}
.call-action .inner-content .light-rounded-buttons .active.primary-btn-outline, .call-action .inner-content .light-rounded-buttons .primary-btn-outline:hover, .call-action .inner-content .light-rounded-buttons .primary-btn-outline:focus {
  background: var(--white);
  color: var(--primary);
  border-color: transparent;
}
.call-action .inner-content .light-rounded-buttons .deactive.primary-btn-outline {
  color: var(--dark-3);
  border-color: var(--gray-4);
  pointer-events: none;
}

/*===== call action four =====*/
.call-action {
  z-index: 2;
  padding: 100px 0;
  background: linear-gradient(45deg, var(--primary), var(--primary-dark));
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .call-action {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .call-action {
    padding: 60px 0;
  }
}
.call-action:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url("assets/images/call-action/overlay.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  z-index: -1;
}
.call-action .inner-content {
  text-align: center;
}
.call-action .inner-content h2 {
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--white);
}
.call-action .inner-content p {
  color: var(--white);
}
.call-action .inner-content .light-rounded-buttons {
  margin-top: 45px;
  display: block;
}
.call-action .inner-content .light-rounded-buttons .primary-btn-outline {
  border-color: var(--white);
  color: var(--white);
}



/*===== latest-news-area =====*/
.latest-news-area {
  background: var(--white);
  padding: 100px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .latest-news-area {
    padding: 80px;
  }
}
@media (max-width: 767px) {
  .latest-news-area {
    padding: 60px 0;
  }
}
.latest-news-area .single-news {
  margin-top: 30px;
}
.latest-news-area .single-news .image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.latest-news-area .single-news .image img {
  height: 100%;
  width: 100%;
  transition: all 0.4s ease;
}
.latest-news-area .single-news .image .meta-details {
  display: inline-block;
  padding: 6px 15px 6px 7px;
  border-radius: 30px;
  background-color: var(--primary);
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.latest-news-area .single-news .image .meta-details img {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  display: inline-block;
}
.latest-news-area .single-news .image .meta-details span {
  color: var(--white);
  display: inline-block;
  margin-left: 10px;
  font-size: 10px;
  font-weight: 500;
}
.latest-news-area .single-news .content-body .title {
  margin: 30px 0 20px 0;
}
.latest-news-area .single-news .content-body .title a {
  color: var(--black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.latest-news-area .single-news .content-body .title a:hover {
  color: var(--primary);
}
.latest-news-area .single-news .content-body p {
  color: var(--dark-3);
}
.latest-news-area .single-news:hover .image .thumb {
  transform: scale(1.1) rotate(1deg);
}


/*======================================
    Brand CSS
========================================*/
.brand-area {
  padding: 60px 0 100px;
  scroll-margin-top: 70px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-area {
    padding: 50px 0 80px;
  }
}
@media (max-width: 767px) {
  .brand-area {
    padding: 40px 0 50px;
  }
}

.brand-area .clients-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
}

.brand-area .clients-logos .single-image {
  aspect-ratio: 1.5 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 18px;
  transition: all 0.3s ease;
  overflow: hidden;
  min-width: 0;
}

.brand-area .clients-logos .single-image:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.brand-area .clients-logos .single-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.85;
  transition: all 0.3s ease;
  max-width: 100%;
}

.brand-area .clients-logos .single-image:hover img {
  opacity: 1;
  filter: brightness(1.05) saturate(1.1);
}

/* Tablet */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-area .clients-logos {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
  .brand-area .clients-logos .single-image {
    padding: 14px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .brand-area .clients-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .brand-area .clients-logos .single-image {
    padding: 14px;
    aspect-ratio: 1.3 / 1;
    border-radius: 10px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .brand-area .clients-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .brand-area .clients-logos .single-image {
    padding: 16px;
    aspect-ratio: 1.4 / 1;
  }
}

/* Very small mobile */
@media (max-width: 360px) {
  .brand-area .clients-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .brand-area .clients-logos .single-image {
    padding: 12px;
    aspect-ratio: 1.3 / 1;
  }
}

/*======================================
  Contact CSS
========================================*/
.contact-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 100%);
  padding: 60px 0 100px;
  scroll-margin-top: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-section {
    padding: 50px 0 80px;
  }
}
@media (max-width: 767px) {
  .contact-section {
    padding: 40px 0 50px;
  }
  .contact-section > .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-card {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .contact-card {
    grid-template-columns: 1fr;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
}

/* Left side - Map background */
.contact-card-left {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-card-left {
    min-height: 400px;
  }
}
@media (max-width: 767px) {
  .contact-card-left {
    min-height: 340px;
  }
}

.contact-map-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.contact-map-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.7) brightness(1.05);
}
@media (max-width: 767px) {
  .contact-map-bg img {
    object-position: 60% center;
  }
}

/* City Slideshow */
.city-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.city-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}

.city-slide.active {
  opacity: 1;
  z-index: 2;
}

.city-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) brightness(1.05);
}

/* City location badge */
.city-location {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  margin-top: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.city-location-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary-light);
  border-radius: 50%;
  color: var(--primary);
  flex-shrink: 0;
}

.city-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.city-item {
  background: transparent;
  border: none;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-3);
  cursor: pointer;
  border-radius: 20px;
  transition: background 1s ease, color 1s ease;
  white-space: nowrap;
}

.city-item:hover {
  color: var(--primary);
  background: var(--primary-light);
  transition: background 0.2s ease, color 0.2s ease;
}

.city-item.active {
  background: var(--primary);
  color: #fff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .city-location {
    padding-top: 22px;
  }
}

@media (max-width: 767px) {
  .city-location {
    padding-top: 20px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .city-location-icon {
    width: 32px;
    height: 32px;
  }
  .city-location-icon svg {
    width: 16px;
    height: 16px;
  }
  .city-list {
    gap: 4px;
  }
  .city-item {
    padding: 5px 10px;
    font-size: 13px;
  }
}

.contact-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.95) 25%,
      rgba(255, 255, 255, 0.6) 55%,
      rgba(255, 255, 255, 0.1) 85%,
      rgba(255, 255, 255, 0) 100%
    );
}
@media (max-width: 991px) {
  .contact-card-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.95) 30%,
        rgba(255, 255, 255, 0.5) 60%,
        rgba(255, 255, 255, 0.1) 90%,
        rgba(255, 255, 255, 0) 100%
      );
  }
}

.contact-card-info {
  position: relative;
  z-index: 3;
  padding: 50px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-card-info {
    padding: 44px 36px;
  }
}
@media (max-width: 767px) {
  .contact-card-info {
    padding: 28px 20px;
  }
}

.contact-card-info h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-card-info h2 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .contact-card-info h2 {
    font-size: 24px;
  }
}

.contact-card-info > p {
  font-size: 15px;
  color: var(--dark-3);
  line-height: 1.7;
  margin-bottom: 36px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-card-info > p {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .contact-card-info > p {
    font-size: 14px;
    margin-bottom: 28px;
  }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-details {
    gap: 14px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .contact-details {
    gap: 14px;
    margin-bottom: 22px;
  }
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
}
.contact-link:hover {
  color: var(--primary);
  transform: translateX(4px);
}
.contact-link--static {
  cursor: default;
}
.contact-link--static:hover {
  transform: none;
}
.contact-icon-box {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 12px;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.contact-link:hover .contact-icon-box {
  background: var(--primary);
  color: var(--white);
}
.contact-link--static:hover .contact-icon-box {
  background: var(--primary-light);
  color: var(--primary);
}
.contact-icon-box svg {
  width: 20px;
  height: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-link {
    font-size: 15px;
    gap: 12px;
  }
  .contact-icon-box {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .contact-link {
    font-size: 15px;
    gap: 12px;
  }
  .contact-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .contact-icon-box svg {
    width: 18px;
    height: 18px;
  }
}


/* Right side - Form */
.contact-card-right {
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-card-right {
    padding: 44px 36px;
  }
}
@media (max-width: 767px) {
  .contact-card-right {
    padding: 24px 20px 28px;
  }
}

.contact-form .form-field {
  margin-bottom: 14px;
  position: relative;
}
@media (max-width: 767px) {
  .contact-form .form-field {
    margin-bottom: 12px;
  }
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  font-family: var(--font-family);
  border: 2px solid var(--gray-4);
  border-radius: 12px;
  background: var(--light-3);
  color: var(--black);
  transition: all 0.2s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-1);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(21, 91, 213, 0.1);
}
.contact-form textarea {
  resize: none;
  min-height: 90px;
}

/* Required field validation */
.contact-form input:required:invalid:not(:focus):not(:placeholder-shown),
.contact-form textarea:required:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #ef4444;
  background: #fef2f2;
}
.contact-form .form-field.error input,
.contact-form .form-field.error textarea {
  border-color: #ef4444;
  background: #fef2f2;
}
.contact-form .form-field.error input:focus,
.contact-form .form-field.error textarea:focus {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}
.contact-form .error-message {
  display: none;
  font-size: 12px;
  color: #ef4444;
  margin-top: 6px;
  padding-left: 4px;
}
.contact-form .form-field.error .error-message {
  display: block;
}

@media (max-width: 767px) {
  .contact-form input,
  .contact-form textarea {
    padding: 13px 16px;
    font-size: 14px;
    border-radius: 10px;
  }
}

.contact-form .btn {
  width: 100%;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 8px;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.contact-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 91, 213, 0.35);
}
.contact-form .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact-form .smart-captcha {
  margin-top: 4px;
}

.form-status {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  margin-top: 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.form-status:empty {
  display: none;
}
.form-status.success {
  color: #16a34a;
  background: #f0fdf4;
  padding: 10px 14px;
}
.form-status.error {
  color: #dc2626;
  background: #fef2f2;
  padding: 10px 14px;
}

/* Footer eleven css */
.footer-eleven {
  padding: 60px 0 40px;
  background-color: var(--white);
  border-top: 1px solid var(--gray-4);
}
.footer-eleven .footer-content {
  text-align: center;
}
.footer-eleven .n3-logo {
  justify-content: center;
}
.footer-eleven .footer-desc {
  color: var(--dark-3);
  margin-top: 16px;
  font-size: 16px;
}
.footer-eleven .footer-social {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.footer-eleven .footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--light-2);
  color: var(--dark-2);
  font-size: 20px;
  transition: all 0.3s ease;
}
.footer-eleven .footer-social a:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-eleven .footer-social a svg {
  width: 20px;
  height: 20px;
}
.footer-eleven .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-4);
  gap: 24px;
}
.footer-eleven .footer-copy {
  color: var(--gray-1);
  font-size: 14px;
  margin: 0;
}
.footer-eleven .footer-legal {
  display: flex;
  align-items: center;
}
.footer-eleven .footer-legal a {
  color: var(--gray-1);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s ease;
}
.footer-eleven .footer-legal a:hover {
  color: var(--primary);
}
.footer-eleven .footer-legal span {
  color: var(--gray-3);
  margin: 0 12px;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 767px) {
  .footer-eleven {
    padding: 40px 0 30px;
  }
  .footer-eleven .footer-desc {
    font-size: 15px;
  }
  .footer-eleven .footer-social {
    margin-top: 20px;
  }
  .footer-eleven .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .footer-eleven .footer-social a svg {
    width: 18px;
    height: 18px;
  }
  .footer-eleven .footer-bottom {
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
    padding-top: 20px;
  }
  .footer-eleven .footer-legal {
    order: 1;
  }
  .footer-eleven .footer-copy {
    order: 2;
    font-size: 13px;
  }
  .footer-eleven .footer-legal a {
    font-size: 13px;
  }
  .footer-eleven .footer-legal span {
    font-size: 13px;
    margin: 0 8px;
  }
}

/*======================================
  Cookie Banner CSS
========================================*/
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 9999;
  background: var(--dark-1);
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  max-width: calc(100% - 32px);
}
.cookie-banner.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.cookie-content {
  padding: 14px 20px 14px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cookie-text {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.6);
}
.cookie-text p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  white-space: nowrap;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.cookie-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.02);
}
.cookie-btn-icon {
  display: none;
  width: 18px;
  height: 18px;
}

/* Tablet */
@media (max-width: 767px) {
  .cookie-banner {
    bottom: 16px;
    left: 16px;
    right: 16px;
    transform: translateX(0) translateY(20px);
    border-radius: 16px;
    max-width: none;
  }
  .cookie-banner.show {
    transform: translateX(0) translateY(0);
  }
  .cookie-content {
    padding: 16px 20px;
    flex-direction: column;
    gap: 14px;
  }
  .cookie-text {
    text-align: center;
  }
  .cookie-icon {
    display: none;
  }
  .cookie-text p {
    font-size: 13px;
    text-align: center;
    line-height: 1.5;
    white-space: normal;
  }
  .cookie-btn {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
  }
  .cookie-btn-icon {
    display: block;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .cookie-content {
    padding: 14px 16px;
    gap: 12px;
  }
  .cookie-text p {
    font-size: 12px;
  }
  .cookie-btn {
    padding: 12px 16px;
    font-size: 13px;
  }
  .cookie-btn-icon {
    width: 16px;
    height: 16px;
  }
}


/*===========================
  Legal Pages (Privacy, Offer)
===========================*/
.legal-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-4);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.legal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dark-2);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.back-link:hover {
  color: var(--primary);
  background: var(--primary-light);
}
.back-link i {
  font-size: 18px;
}

.legal-content {
  padding: 60px 0 80px;
  min-height: calc(100vh - 180px);
  background: linear-gradient(180deg, var(--light-3) 0%, var(--white) 100%);
}
.legal-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.legal-hero {
  text-align: center;
  margin-bottom: 48px;
}
.legal-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.legal-subtitle {
  font-size: 1.15rem;
  color: var(--dark-2);
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 0.875rem;
  color: var(--gray-1);
}

.legal-body {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-3);
  padding: 48px 56px;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-4);
}
.legal-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-section h2 {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.legal-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-1);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark-2);
  margin-bottom: 16px;
}
.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 16px 0;
  padding-left: 0;
}
.legal-section ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-2);
}
.legal-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.legal-section ul li:last-child {
  margin-bottom: 0;
}
.legal-section ul li strong {
  color: var(--dark-1);
}

.legal-section a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.legal-section a:hover {
  color: var(--primary-dark);
}

.legal-contact {
  background: var(--light-2);
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 16px;
}
.legal-contact p {
  margin-bottom: 8px;
  color: var(--dark-1);
}
.legal-contact p:last-child {
  margin-bottom: 0;
}

/* Legal Footer */
.legal-footer {
  background: var(--light-2);
  border-top: 1px solid var(--gray-4);
  padding: 32px 0;
}
.legal-footer-content {
  text-align: center;
}
.legal-footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.legal-footer-links a {
  color: var(--dark-2);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.legal-footer-links a:hover,
.legal-footer-links a.active {
  color: var(--primary);
}
.legal-footer-links .divider {
  width: 4px;
  height: 4px;
  background: var(--gray-3);
  border-radius: 50%;
}
.legal-footer-copy {
  font-size: 14px;
  color: var(--gray-1);
}

/* Responsive */
@media (max-width: 991px) {
  .legal-content {
    padding: 48px 0 60px;
  }
  .legal-hero h1 {
    font-size: 2rem;
  }
  .legal-body {
    padding: 36px 40px;
  }
}

@media (max-width: 767px) {
  .legal-header {
    padding: 12px 0;
  }
  .back-link span {
    display: none;
  }
  .back-link {
    padding: 8px;
  }
  .legal-content {
    padding: 36px 0 48px;
  }
  .legal-hero {
    margin-bottom: 32px;
  }
  .legal-hero h1 {
    font-size: 1.75rem;
  }
  .legal-subtitle {
    font-size: 1rem;
  }
  .legal-body {
    padding: 28px 24px;
    border-radius: 12px;
  }
  .legal-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
  .legal-section h2 {
    font-size: 1.2rem;
  }
  .legal-section h3 {
    font-size: 1rem;
  }
  .legal-section p,
  .legal-section ul li {
    font-size: 0.9375rem;
  }
  .legal-contact {
    padding: 20px 22px;
  }
  .legal-footer {
    padding: 24px 0;
  }
  .legal-footer-links {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .legal-hero h1 {
    font-size: 1.5rem;
  }
  .legal-body {
    padding: 24px 20px;
  }
  .legal-section h2 {
    font-size: 1.1rem;
  }
}
