/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@font-face {
  font-family: "Aptos Bold";
  src: url("../fonts/Aptos-Bold.woff2") format("woff2"),
    url("../fonts/Aptos-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aptos";
  src: url("../fonts/Aptos.woff2") format("woff2"),
    url("../fonts/Aptos.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aptos Black";
  src: url("../fonts/Aptos-Black.woff2") format("woff2"),
    url("../fonts/Aptos-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aptos Semibold";
  src: url("../fonts/Aptos-SemiBold.woff2") format("woff2"),
    url("../fonts/Aptos-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aptos Light";
  src: url("../fonts/Aptos-Light.woff2") format("woff2"),
    url("../fonts/Aptos-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aptos ExtraBold";
  src: url("Aptos-ExtraBold.woff2") format("woff2"),
    url("Aptos-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aptos Display";
  src: url("../fonts/AptosDisplay.woff2") format("woff2"),
    url("../fonts/AptosDisplay.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-black: 0, 0, 0;
  --color-white: 255, 255, 255;
  --color-dark: 8, 8, 8;
  --color-main: 129, 158, 168;
  --color-blue: 16, 21, 59;
  --color-gray: 250, 250, 250;
  --color-gray-2: 129, 129, 129;
  --color-gray-3: 234, 234, 234;
  --color-default: 34, 34, 34;
  --color-corporate: 101, 28, 50;
  --color-real-estate: 107, 82, 22;
  --color-proprierty: 18, 18, 18;
  --color-edge: 74, 79, 79;
  --color-tech: 143, 0, 255;
  --color-wealth: 101, 28, 50;
}

::-moz-selection {
  background: #bfdbec;
  text-shadow: none;
}

::selection {
  background: #bfdbec;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  background-color: transparent;
  border-top: 1px solid #ebebeb;
  margin: 10px 0;
  padding: 0;
  opacity: 1;
}

hr.dashed {
  border-top: 1px dashed #ebebeb;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

a {
  color: rgb(var(--color-default));
  text-decoration: none;
  transition: all 150ms ease-in-out;
}

a:hover,
a:focus {
  text-decoration: none;
  color: rgb(var(--color-main));
}

p {
  margin-bottom: 35px;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
  font-family: "Aptos";
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  color: rgba(var(--color-default));
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== Typography ========== */

h1 {
  font-size: 60px;
  line-height: 75px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 55px;
  line-height: 63px;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -0.02em;
}

h4 {
  font-size: 30px;
  line-height: 40px;
  letter-spacing: -0.02em;
}

h5 {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
}

.text-3xs {
  font-size: 10px;
  line-height: 18px;
}

.text-xxs {
  font-size: 12px;
  line-height: 18px;
}

.text-xs {
  font-size: 14px;
  line-height: 21px;
}

.text-base {
  font-size: 16px;
  line-height: 24px;
}

.text-md {
  font-size: 18px;
  line-height: 30px;
}

.text-lg {
  font-size: 20px;
  line-height: 30px;
}

.text-xl {
  font-size: 24px;
  line-height: 40px;
}

.text-xxl {
  font-size: 30px;
  line-height: 40px;
}

.lh-auto {
  line-height: normal;
}

.text-13 {
  font-size: 13px;
}

.heading {
  letter-spacing: -0.02em;
}

/* ========== Colors ========== */
.color-black {
  color: rgb(var(--color-black));
}

.color-dark {
  color: rgb(var(--color-dark));
}

.color-default {
  color: rgba(var(--color-default));
}

.color-white {
  color: rgb(var(--color-white));
}

.color-main {
  color: rgba(var(--color-main));
}

.color-blue {
  color: rgba(var(--color-blue));
}

.color-gray {
  color: rgb(var(--color-gray));
}

.color-gray-2 {
  color: rgb(var(--color-gray-2));
}

.color-corporate {
  color: rgb(var(--color-corporate));
}

.color-real-estate {
  color: rgb(var(--color-real-estate));
}

.color-proprierty {
  color: rgb(var(--color-proprierty));
}

.color-edge {
  color: rgb(var(--color-edge));
}

.color-wealth {
  color: rgb(var(--color-wealth));
}

.color-tech {
  color: rgb(var(--color-tech));
}

.color-brown {
  color: #503521;
}

.bg-white {
  background-color: rgb(var(--color-white));
}

.bg-gray {
  background-color: rgb(var(--color-gray));
}

.bg-blue {
  background-color: rgb(var(--color-blue));
}

.bg-notary {
  background-color: #e2dcd5;
}

.bg-corporate {
  background-color: rgb(var(--color-corporate));
}

.bg-real-estate {
  background-color: rgb(var(--color-real-estate));
}

.bg-proprierty {
  background-color: rgb(var(--color-proprierty));
}

.bg-edge {
  background-color: rgb(var(--color-edge));
}

.bg-wealth {
  background-color: rgb(var(--color-wealth));
}

.bg-tech {
  background-color: rgb(var(--color-tech));
}

.bg-la {
  background-color: #f4f2ee;
}

/* ========== Forms & Input ========== */

.form-control {
  padding: 10px 12px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: rgb(var(--color-default));
  background-clip: padding-box;
  background-color: rgb(var(--color-white));
  border-radius: 0;
  border: 1px solid #e7e7e7;
}

.form-control::placeholder {
  color: rgba(51, 62, 66, 0.6);
}

.form-select {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 400;
  background-clip: padding-box;
  border: 1px solid #edeeed;
  border-radius: 4px;
}

.form-control:focus,
.form-select:focus {
  color: rgb(var(--color-dark));
  background-color: rgb(var(--color-white));
  border-color: #dfdfdf;
  outline: 0;
  box-shadow: none;
}

.form-control:disabled {
  background-color: #ffffff;
  border: 1px solid #e9e7ec;
}

/* ========== Button ========== */

.btn {
  font-size: 14px;
  line-height: 20px;
  padding: 10px 25px;
  border-radius: 0;
  position: relative;
}

.btn:hover {
  color: rgb(var(--color-white));
}

.btn:active {
  outline: 0;
  border: 0;
}

.btn-primary {
  background-color: rgb(var(--color-main));
  border: 0;
  position: relative;
  z-index: 4;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn:first-child:active {
  background-color: rgb(98, 122, 130);
}

.btn-search:hover,
.btn-search:active,
.btn-search:focus,
.btn.btn-search:first-child:active {
  background-color: transparent !important;
}

.btn.btn-toggle:first-child:active {
  background-color: transparent;
}

.button-wrap {
  position: relative;
}

.btn-more-news {
  background-color: rgb(var(--color-blue));
  color: rgb(var(--color-white));
}

.btn-more-news:hover {
  background-color: rgb(var(--color-main));
  color: rgb(var(--color-white));
}

.btn-subs {
  background-color: rgb(var(--color-blue));
  color: rgb(var(--color-white));
}

.btn-subs:hover {
  background-color: #0f1435;
  color: rgb(var(--color-white));
}

.searching {
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: rgb(var(--color-blue));
  padding: 5px;
}

.close-search {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 10;
}

.btn-wa {
  background-color: #60d76a;
  border: 0;
  position: relative;
  z-index: 4;
  color: rgb(var(--color-white));
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-wa:hover {
  background-color: #46a84e;
}

.wa-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 80;
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1049;
  width: 100%;
  transition: all 150ms ease-in-out;
  background-color: rgb(var(--color-white));
}

.header.smaller {
  box-shadow: 0px 2px 12.1px rgba(0, 0, 0, 0.02);
}

.header.smaller .header-inner {
  padding: 5px 0;
  transition: all 150ms ease-in-out;
}

.logo {
  max-width: 70px;
  transition: all 150ms ease-in-out;
}

.header.smaller .logo {
  max-width: 50px;
  transition: all 150ms ease-in-out;
}

.header-inner {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 150ms ease-in-out;
}

.navigation {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.main-navs,
.action-header {
  display: flex;
  align-items: center;
  padding-left: 0;
  margin: 0;
  list-style: none;
  gap: 40px;
}

.action-header {
  gap: 20px;
}

.main-navs li:last-child {
  border-right: 1px solid #ddd;
  padding-right: 20px;
}

.main-navs li {
  position: relative;
}

.main-navs li .main-nav {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 14px;
  font-family: "Aptos SemiBold";
  letter-spacing: -0.02em;
  display: inline-flex;
}

.main-navs li .main-nav:hover {
  color: rgb(var(--color-main));
}

.main-nav.active {
  color: rgb(var(--color-main));
}

.main-nav.actived {
  font-family: "Aptos Bold" !important;
  color: rgb(var(--color-main));
}

.dropdown-menu {
  padding-top: 15px;
  background: transparent;
  border: 0;
  margin-left: -25px;
}

.dropdown-menu.lang {
  left: -15px;
  min-width: 100px;
  margin-left: 0px;
}

.drop-inner {
  background: #f4f4f4;
  border-bottom: 5px solid rgb(var(--color-main));
  border-left: 0px solid #fafafa;
  border-right: 0px solid #fafafa;
  border-radius: 0;
  padding: 15px 10px;
}

.drop-inner.corporate {
  border-bottom: 10px solid rgb(var(--color-corporate));
}

.drop-inner.corporate a:hover {
  background-color: rgb(var(--color-corporate));
}

.drop-inner.realestate {
  border-bottom: 10px solid rgb(var(--color-real-estate));
}

.drop-inner.realestate a:hover {
  background-color: rgb(var(--color-real-estate));
}

.drop-inner.propriertary {
  border-bottom: 10px solid rgb(var(--color-proprierty));
}

.drop-inner.propriertary a:hover {
  background-color: rgb(var(--color-proprierty));
}

.drop-inner.technology {
  border-bottom: 10px solid rgb(var(--color-tech));
}

.drop-inner.technology a:hover {
  background-color: rgb(var(--color-tech));
}

.drop-inner.wealth {
  border-bottom: 10px solid rgb(var(--color-wealth));
}

.drop-inner.wealth a:hover {
  background-color: rgb(var(--color-wealth));
}

.drop-inner.edge {
  border-bottom: 10px solid rgb(var(--color-edge));
}

.drop-inner.edge a:hover {
  background-color: rgb(var(--color-edge));
}

.language {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  position: relative;
}

.language::before {
  content: url(../img/globe-icn.svg);
  width: 17px;
  height: 17px;
  display: inline-block;
}

.language::after {
  content: url(../img/polygon-icn.svg);
  width: 9px;
  height: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: rgb(var(--color-white));
  background-color: rgb(var(--color-main));
}

.dropdown-item.active,
.dropdown-item:active {
  color: rgb(var(--color-white));
  text-decoration: none;
  background-color: rgb(var(--color-main));
}

/* ========== Menu Mobile ========== */
.mobile-nav,
.inner-nav {
  max-width: 350px;
  height: 100vh;
  background-color: rgb(var(--color-white));
  position: fixed;
  left: -350px;
  top: 0;
  z-index: 190;
  width: 100%;
  padding: 30px;
  transition: all 150ms ease-in-out;
  box-shadow: 0px 0px 8px 0px rgba(106, 78, 38, 0.24);
}

.mobile-nav.show,
.inner-nav.show {
  left: 0;
}

.overlay-mobile {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: all 150ms ease-in-out;
}

.overlay-mobile.show {
  visibility: visible;
  opacity: 1;
}

.btn-toggle {
  padding: 0;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
}

.menu-mobile {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.nav-footer {
  padding-bottom: 40px;
}

.link-mobile {
  display: block;
}

.link-mobile.active {
  color: rgb(var(--color-main));
}

.one-content,
.two-content,
.three-content,
.four-content,
.five-content,
.six-content {
  display: none;
}

.one-content.show,
.two-content.show,
.three-content.show,
.four-content.show,
.five-content.show,
.six-content.show {
  display: block;
}

/* ========== Content ========== */
.bg-hero {
  background-size: cover;
  width: 100%;
  height: 100vh;
  background-position: center center;
  display: flex;
  align-items: center;
}

.coming-content {
  padding: 15vh 0;
}

.img-black {
  filter: contrast(0) brightness(0);
}

.sections {
  padding: 80px 0;
}

.border-intro {
  border-right: 1px solid #eaeaea;
}

.border-intro-bottom {
  border-bottom: 1px solid #eaeaea;
}

.intro-item {
  padding: 40px 30px;
}

.services-items {
  display: block;
  position: relative;
  padding: 45px 40px;
  height: 100%;
}

.services-items.six {
  height: auto;
  background-color: #191e43;
}

.services-items h5 {
  color: rgb(var(--color-blue));
  transition: all 100ms ease-in-out;
}

.services-items.six h5 {
  color: rgb(var(--color-white));
  transition: all 100ms ease-in-out;
}

.services-items.one svg,
.services-items.two svg,
.services-items.three svg,
.services-items.four svg,
.services-items.five svg,
.services-items.six-dt svg,
.services-items.seven svg {
  transition: all 100ms ease-in-out;
  fill: rgb(var(--color-dark));
}

.services-items.six svg {
  transition: all 100ms ease-in-out;
  fill: rgb(var(--color-white));
}

.services-items.one:hover,
.services-items.two:hover,
.services-items.three:hover,
.services-items.four:hover,
.services-items.five:hover,
.services-items.six:hover,
.services-items.six-dt:hover {
  background-color: rgb(var(--color-main));
  color: rgb(var(--color-white));
}

.services-items.two:hover {
  background-color: rgb(var(--color-corporate));
}

.services-items.three:hover {
  background-color: rgb(var(--color-real-estate));
}

.services-items.four:hover {
  background-color: rgb(var(--color-proprierty));
}

.services-items.five:hover {
  background-color: rgb(var(--color-corporate));
}

.services-items.six:hover {
  background-color: rgb(var(--color-edge));
}

.services-items.six-dt:hover {
  background-color: rgb(var(--color-edge));
}

.services-items.seven:hover {
  color: rgb(var(--color-white));
  background-color: #503521;
}

.services-items:hover h5 {
  color: rgb(var(--color-white));
}

.services-items:hover svg {
  fill: rgb(var(--color-white));
}

.services-items {
  border-bottom: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
}

.services-items.six {
  border-bottom: 1px solid #4e59a8;
  border-right: 0px solid #eaeaea;
}

.services-items.six-dt {
  border-bottom: 1px solid transparent;
  border-right: 1px solid #eaeaea;
}

.services-items:hover {
  border-bottom: 1px solid rgb(var(--color-main));
  border-right: 1px solid rgb(var(--color-main));
}

.services-items.two:hover {
  border-bottom: 1px solid rgb(var(--color-corporate));
  border-right: 1px solid rgb(var(--color-corporate));
}

.services-items.three:hover {
  border-bottom: 1px solid rgb(var(--color-real-estate));
  border-right: 1px solid rgb(var(--color-real-estate));
}

.services-items.four:hover {
  border-bottom: 1px solid rgb(var(--color-proprierty));
  border-right: 1px solid rgb(var(--color-proprierty));
}

.services-items.six:hover {
  border-bottom: 1px solid rgb(var(--color-edge));
  border-right: 0px solid rgb(var(--color-proprierty));
}

.services-items.six-dt:hover {
  border-bottom: 1px solid rgb(var(--color-edge));
  border-right: 1px solid transparent;
}

.services-items .cate {
  text-transform: uppercase;
  color: rgba(var(--color-main));
}

.services-items:hover .cate {
  color: rgba(var(--color-white));
}

.services-items.seven:hover {
  border-bottom: 1px solid #503521;
  border-right: 1px solid #503521;
}

.arrow-top {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 30px;
  right: 30px;
  transition: all 100ms ease-in-out;
  border-radius: 50%;
  background-color: rgb(var(--color-main));
}

.arrow-top svg {
  transition: all 100ms ease-in-out;
  fill: rgb(var(--color-white)) !important;
}

.services-items.one:hover .arrow-top svg {
  fill: rgb(var(--color-main)) !important;
}

.services-items.one:hover .arrow-top {
  transition: all 100ms ease-in-out;
  background-color: rgb(var(--color-white));
}

.two .arrow-top {
  background-color: rgb(var(--color-corporate));
}

.two:hover .arrow-top {
  background-color: rgb(var(--color-white));
}

.services-items.two:hover .arrow-top svg {
  fill: rgb(var(--color-corporate)) !important;
}

.three .arrow-top {
  background-color: rgb(var(--color-real-estate));
}

.three:hover .arrow-top {
  background-color: rgb(var(--color-white));
}

.services-items.three:hover .arrow-top {
  transition: all 100ms ease-in-out;
  background-color: rgb(var(--color-white));
}

.services-items.three:hover .arrow-top svg {
  fill: rgb(var(--color-real-estate)) !important;
}

.four .arrow-top {
  background-color: rgb(var(--color-proprierty));
}

.four:hover .arrow-top {
  background-color: rgb(var(--color-white));
}

.services-items.four:hover .arrow-top {
  transition: all 100ms ease-in-out;
  background-color: rgb(var(--color-white));
}

.services-items.four:hover .arrow-top svg {
  fill: rgb(var(--color-proprierty)) !important;
}

.six .arrow-top {
  background-color: rgb(var(--color-edge));
}

.six:hover .arrow-top {
  background-color: rgb(var(--color-white));
}

.services-items.six:hover .arrow-top {
  transition: all 100ms ease-in-out;
  background-color: rgb(var(--color-white));
}

.services-items.six:hover .arrow-top svg {
  fill: rgb(var(--color-edge)) !important;
}

.six-dt .arrow-top {
  background-color: rgb(var(--color-edge));
}

.six-dt:hover .arrow-top {
  background-color: rgb(var(--color-white));
}

.services-items.six-dt:hover .arrow-top {
  transition: all 100ms ease-in-out;
  background-color: rgb(var(--color-white));
}

.services-items.six-dt:hover .arrow-top svg {
  fill: rgb(var(--color-edge)) !important;
}

.seven .arrow-top {
  background-color: #503521;
}

.services-items.seven:hover .arrow-top svg {
  fill: #503521 !important;
}

.services-items.seven:hover .arrow-top {
  transition: all 100ms ease-in-out;
  background-color: rgb(var(--color-white));
}

.main-testi {
  font-style: italic;
  font-size: 35px;
  line-height: 43px;
  letter-spacing: -0.02em;
  color: rgb(var(--color-blue));
}

.second-testi {
  color: rgb(var(--color-blue));
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.04em;
}

.counters {
  font-size: 50px;
  line-height: 61px;
  letter-spacing: -0.04em;
  color: rgb(var(--color-main));
}

.thumb-tittle {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.04em;
  color: rgb(var(--color-dark));
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thumb-tittle:hover {
  color: rgb(var(--color-main));
}

.thumb-excerpt {
  line-height: 22px;
  color: rgb(var(--color-gray-2));
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-items figure {
  aspect-ratio: 16/9;
  overflow: hidden;
  transition: all 100ms ease-in-out;
}

.news-items figure img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: all 100ms ease-in-out;
}

.news-items:hover figure img {
  transform: scale(1.2);
}

.cta-footer {
  background-position: center center;
  background-size: cover;
  padding: 40px 0;
}

.icon-email {
  position: absolute;
  left: 10px;
  top: 5px;
}

.subs-form input {
  padding-left: 35px;
}

.link-popup {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 30px;
  border: 1px solid #eaeaea;
}

.contact-icon {
  position: absolute;
  top: 5px;
  right: 10px;
}

.hero-inside {
  margin-top: 100px;
  height: 320px;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb li {
  font-size: 14px;
  color: rgb(var(--color-main));
}

.breadcrumb li::after {
  content: "";
  background-image: url(../img/arrow.svg);
  width: 10px;
  height: 10px;
  background-size: 10px;
  display: inline-block;
  margin-left: 10px;
}

.breadcrumb li a {
  font-size: 14px;
  color: rgb(var(--color-white));
}

.breadcrumb li:last-child::after {
  display: none;
}

.img-vimi {
  overflow: hidden;
  aspect-ratio: 1/1.5;
}

.img-vimi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.teams-item {
  aspect-ratio: 1/1.2;
  overflow: hidden;
  position: relative;
}

.teams-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.linkedIn {
  position: absolute;
  z-index: 3;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgb(var(--color-main));
}

.linkedIn:hover {
  background-color: rgb(var(--color-blue));
}

.team-info {
  width: calc(100% - 20px);
  background-color: rgb(var(--color-white));
  padding: 25px;
  position: absolute;
  left: 10px;
  bottom: 10px;
}

.nav-team {
  width: 100px;
  position: relative;
}

.box-cta {
  background-size: cover;
  background-position: center center;
  padding: 60px 50px;
  position: relative;
  z-index: 2;
}

.box-cta::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(16, 21, 59, 0.67) 0%, #10153b 73.69%);
  z-index: -1;
}

.box-cta.side {
  background-size: cover;
  background-position: left center;
  padding: 30px;
  position: relative;
  z-index: 2;
  padding-top: 200px;
}

.box-cta.side::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(16, 21, 59, 0.67) 0%,
    #10153b 73.69%
  );
  z-index: -1;
}

.paginations {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.nav-pagi {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(var(--color-gray-3));
}

.nav-pagi:hover {
  background-color: rgb(var(--color-blue));
}

.nav-pagi svg {
  fill: rgb(var(--color-blue));
}

.nav-pagi:hover svg {
  fill: rgb(var(--color-white));
}

.paginations input {
  border-color: rgb(var(--color-gray-3));
  background-color: rgb(var(--color-gray-3));
  text-align: center;
  width: 50px;
}

.check-main {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-main li {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 15px;
}

.check-main li::before {
  content: "";
  width: 18px;
  height: 18px;
  background-image: url(../img/check.svg);
  background-size: 18px;
  display: inline-block;
}

.check-main li span {
  width: calc(100% - 40px);
}

.shared {
  list-style: none;
  justify-content: center;
  padding: 0;
  display: flex;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  border: 0;
}

.guide-box {
  background-color: rgb(var(--color-gray));
  padding: 30px;
  border-right: 2px solid rgb(var(--color-main));
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 18px;
  color: rgb(var(--color-blue));
  font-family: "Aptos Semibold";
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

.accordion-button:not(.collapsed) {
  color: rgb(var(--color-blue));
  background-color: rgb(var(--color-white));
  box-shadow: none;
}

.accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: none;
}

.faqs.accordion-button::after,
.cor.accordion-button::after,
.rE.accordion-button::after,
.prop.accordion-button::after,
.tech.accordion-button::after,
.wealth.accordion-button::after {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(var(--color-main));
  margin-left: auto;
  content: "+";
  font-size: 30px;
  color: rgb(var(--color-white));
  background-image: none;
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}

.cor.accordion-button::after,
.prop.accordion-button::after,
.tech.accordion-button::after,
.wealth.accordion-button::after,
.rE.accordion-button::after {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  margin-left: auto;
  content: "+";
  font-size: 30px;
  color: rgb(var(--color-corporate));
}

.prop.accordion-button::after {
  color: rgb(var(--color-proprierty));
}

.tech.accordion-button::after {
  color: rgb(var(--color-tech));
}

.wealth.accordion-button::after {
  color: rgb(var(--color-wealth));
}

.rE.accordion-button::after {
  color: rgb(var(--color-real-estate));
}

.faqs.accordion-button:not(.collapsed)::after,
.cor.accordion-button:not(.collapsed)::after,
.prop.accordion-button:not(.collapsed)::after,
.tech.accordion-button:not(.collapsed)::after,
.wealth.accordion-button:not(.collapsed)::after,
.rE.accordion-button:not(.collapsed)::after {
  content: "-";
  background-image: none;
  transform: none;
  transition: all 100ms ease-in-out;
}

.edgeFaq .accordion-item {
  margin-bottom: 10px;
  border: 1px solid #eaeaea;
}

.accordion-flush.edgeFaq .accordion-item:first-child {
  border-top: 1px solid #eaeaea;
}

.accordion-flush.edgeFaq .accordion-item:last-child {
  border-bottom: 1px solid #eaeaea;
}

.edgeFaq .accordion-button {
  font-size: 16px;
  color: rgb(var(--color-blue));
  font-family: "Aptos Bold";
  letter-spacing: -0.04em;
}

.arrow-main {
  width: 25px;
  height: 25px;
  background-color: rgb(var(--color-main));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.img-wide {
  overflow: hidden;
  aspect-ratio: 16/5;
}

.img-wide.two {
  overflow: hidden;
  aspect-ratio: 16/7;
}

.img-one {
  overflow: hidden;
  aspect-ratio: 1/0.91;
}

.img-thumb {
  overflow: hidden;
  aspect-ratio: 16/9;
}

.img-tt {
  overflow: hidden;
  aspect-ratio: 3/2;
}

.img-wide img,
.img-tt img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.img-oneOne {
  overflow: hidden;
  aspect-ratio: 1/0.8;
}

.bg-real {
  background-position: center;
  background-size: cover;
  position: relative;
}

.bg-real::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    #fafafa 12.11%,
    rgba(148, 148, 148, 0) 100%
  );
  top: 0;
  left: 0;
}

.img-faq {
  overflow: hidden;
  aspect-ratio: 1/1.1;
}

.bg-pro {
  background-size: cover;
  background-position: center;
  position: relative;
}

.bg-pro::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #10153b 0%, rgba(148, 148, 148, 0) 100%);
  top: 0;
  left: 0;
}

.bg-wealth {
  background-size: cover;
  background-position: center;
  position: relative;
}

.bg-wealth::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #181e50 0%, rgba(16, 21, 59, 0.73) 100%);
  top: 0;
  left: 0;
}

.border-proprierty {
  border-bottom: 2px solid rgb(var(--color-proprierty));
}

.border-tech {
  border-bottom: 2px solid rgb(var(--color-tech));
}

.border-wealth {
  border-bottom: 2px solid rgb(var(--color-wealth));
}

.link-tech {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  text-decoration-color: #8f00ff !important;
  text-decoration: underline;
  text-underline-offset: 5px;
  font-size: 14px;
  font-family: "Aptos Semibold";
}

.link-tech:hover {
  color: rgb(var(--color-tech));
  text-decoration-color: #8f00ff !important;
  text-decoration: underline;
}

.bg-faq-tech {
  background-position: center;
  background-size: cover;
  position: relative;
}

.bg-faq-tech::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    #fafafa 0%,
    rgba(148, 148, 148, 0.6) 100%
  );
  top: 0;
  left: 0;
}

.bg-row {
  background-size: cover;
  background-position: center center;
}

.bg-edge-faq {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.bg-edge-faq::before {
  content: "";
  display: block;
  padding: 35vh;
}

.img-one img,
.img-thumb img,
.bg-edge-faq img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.faq-edge {
  max-width: 575px;
  padding: 50px 0;
  height: 100%;
}

.list-detail {
  padding-left: 0px;
  list-style: none;
}

.list-detail p {
  margin-bottom: 25px;
}

.list-detail li {
  display: flex;
  gap: 15px;
}

.list-detail.corporate li::before {
  content: "";
  width: 28px;
  height: 28px;
  background-image: url(../img/li-corporate.svg);
  background-size: 28px;
  background-repeat: no-repeat;
  display: inline-block;
}

.list-detail li span {
  width: calc(100% - 30px);
}

.list-detail.realEstate li::before,
.list-detail.proP li::before,
.list-detail.Tech li::before,
.list-detail.Wealth li::before,
.list-detail.Edge li::before {
  content: "";
  width: 28px;
  height: 28px;
  background-image: url(../img/li-real.svg);
  background-size: 18px;
  background-repeat: no-repeat;
  display: inline-block;
}

.list-detail.proP li::before {
  background-image: url(../img/li-prop.svg);
}

.list-detail.Tech li::before {
  background-image: url(../img/li-tech.svg);
}

.list-detail.Wealth li::before {
  background-image: url(../img/li-wealth.svg);
}

.list-detail.Edge li::before {
  background-image: url(../img/li-edge.svg);
}

.link-side {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Aptos Semibold";
  font-size: 14px;
  line-height: 19px;
}

.link-side span {
  width: calc(100% - 35px);
}

.link-side::after {
  content: "";
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-image: url(../img/arrow-link.svg);
  background-repeat: no-repeat;
  background-size: 30px;
}

.link-side.corporate::after {
  background-color: rgb(var(--color-corporate));
}

.link-side.corporate:hover,
.link-side.corporate.active {
  color: #ffffff;
  background-color: rgb(var(--color-corporate));
}

.link-side-real,
.link-side-real.proP {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 18px;
  font-family: "Aptos Semibold";
  border: 1px solid #eaeaea;
  background-color: rgb(var(--color-gray));
  padding: 8px 12px;
}

.link-side-real.active {
  background-color: rgb(var(--color-real-estate));
  color: rgb(var(--color-white));
}

.link-side-real.proP.active {
  background-color: rgb(var(--color-proprierty));
  color: rgb(var(--color-white));
}

.link-side-real:hover {
  background-color: rgb(var(--color-real-estate));
  color: rgb(var(--color-white));
}

.link-side-real.proP:hover {
  background-color: rgb(var(--color-proprierty));
  color: rgb(var(--color-white));
}

.icn-re,
.icn-re.proP {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(var(--color-real-estate));
  border-radius: 50%;
}

.icn-re.proP {
  background-color: rgb(var(--color-proprierty));
}

.icn-re svg {
  fill: #fff;
}

.link-side-real:hover .icn-re,
.link-side-real.active .icn-re {
  background-color: rgb(var(--color-white));
}

.link-side-real:hover .icn-re svg,
.link-side-real.active .icn-re svg {
  fill: rgb(var(--color-real-estate));
}

.link-side-real.proP:hover .icn-re svg,
.link-side-real.proP.active .icn-re svg {
  fill: rgb(var(--color-proprierty));
}

.error-content {
  padding: 30vh 0 20vh;
}

.font-error {
  font-size: 212px;
  line-height: 240px;
}

.content-search {
  margin-top: 80px;
  padding: 80px 0;
}

.icon-la {
  color: #503521;
}

/* ========== Footer ========== */
.footer {
  position: relative;
  background: rgb(var(--color-blue));
  color: rgb(var(--color-white));
}

.footer p {
  margin-bottom: 15px;
}

.footer-inner {
  padding: 60px 0;
}

.nav-bottom {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-bottom li a {
  font-family: "Aptos Light";
  color: rgb(var(--color-white));
}

.nav-bottom li a:hover {
  font-family: "Aptos Light";
  color: rgb(var(--color-main));
}

.social-media {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-media .social {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #555555;
}

.social-media .social:hover {
  background-color: rgb(var(--color-white));
}

.social-media.contact .social:hover {
  background-color: rgb(var(--color-blue));
}

.social-media .social svg {
  fill: rgb(var(--color-white));
}

.social-media.contact .social svg {
  fill: rgb(var(--color-blue));
}

.social-media .social:hover svg {
  fill: rgb(var(--color-blue));
}

.social-media.contact .social:hover svg {
  fill: rgb(var(--color-white));
}

.copy {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #1a2156;
}

/* ========== overide ========== */
.testi.swiper-horizontal > .swiper-pagination-bullets,
.testi.swiper-pagination-bullets.swiper-pagination-horizontal,
.testi.swiper-pagination-custom,
.testi.swiper-pagination-fraction {
  bottom: 0px;
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.testi .swiper-pagination-bullet {
  width: 25px;
  height: 3px;
  display: inline-block;
  border-radius: 0;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

.testi .swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: rgb(var(--color-main));
}

.teams.swiper-button-next,
.teams.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgb(var(--color-white));
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.teams.swiper-button-next:after,
.teams.swiper-button-prev:after {
  display: none;
}

.teams.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 0;
  left: auto;
}

.teams.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 0;
  right: auto;
}

/* ========== Scroll ========== */

.content-menu::-webkit-scrollbar {
  width: 5px;
  border-radius: 3px;
}

/* Track */
.content-menu::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
.content-menu::-webkit-scrollbar-thumb {
  background: #f3f3f3;
}

/* Handle on hover */
.content-menu::-webkit-scrollbar-thumb {
  background: #f3f3f3;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden,
[hidden] {
  display: none !important;
}

.text-left {
  text-align: left !important;
}

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

.text-italic {
  font-style: italic;
}

.text-hidden {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-extraBold {
  font-family: "Aptos ExtraBold";
}

.text-bold {
  font-family: "Aptos Bold";
}

.text-semiBold {
  font-family: "Aptos Semibold";
}

.text-medium {
  font-weight: 500;
}

.text-normal {
  font-weight: 400;
}

.text-light {
  font-family: "Aptos Light";
}

.text-Black {
  font-family: "Aptos Black";
}

.h-100vh {
  height: 100vh;
}

.mh-0 {
  min-height: 0;
}

.line-height {
  line-height: 0;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   Responsive Design.
   ========================================================================== */

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 600px;
  }
}

@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }

  .border-sm-bottom-0 {
    border-bottom: 0 !important;
  }
}

@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1000px;
  }
}

@media (min-width: 1025px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 1140px;
  }

  .action-header li:last-child {
    display: none;
  }
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1175px;
  }

  .hide-desktop {
    display: none;
  }
}

@media (min-width: 1400px) {
}

@media (min-width: 1025px) and (max-width: 1199px) {
}

@media (min-width: 992px) {
}

@media (max-width: 1024px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    padding-left: 20px;
    padding-right: 20px;
  }

  .main-navs {
    display: none;
  }
}

@media (max-width: 991px) {
  .comingsoon {
    font-size: 90px;
    text-align: center;
    line-height: 100px;
  }

  .intro-item {
    padding: 30px 20px;
  }

  .img-vimi {
    overflow: hidden;
    aspect-ratio: 1/0.8;
  }

  .faq-edge {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .bg-hero {
    background-position: center center;
    gap: 40px;
  }

  .comingsoon {
    font-size: 50px;
    text-align: center;
    line-height: 60px;
  }

  h1 {
    font-size: 40px;
    line-height: 45px;
  }

  h2 {
    font-size: 35px;
    line-height: 40px;
    letter-spacing: -0.02em;
  }

  h3 {
    font-size: 25px;
    line-height: 35px;
  }

  h4 {
    font-size: 20px;
    line-height: 30px;
  }

  .counters {
    font-size: 30px;
    line-height: 61px;
    letter-spacing: -0.04em;
    color: rgb(var(--color-main));
  }

  .action-header li:nth-last-child(2) {
    display: none;
  }

  .border-intro {
    border-right: 0px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
  }

  .main-testi {
    font-size: 20px;
    line-height: 30px;
  }

  .box-cta {
    background-size: cover;
    background-position: center center;
    padding: 40px 30px;
  }

  .box-cta::after {
    background: linear-gradient(
      180deg,
      rgba(16, 21, 59, 0.67) 0%,
      #10153b 73.69%
    );
  }

  .accordion-button {
    font-size: 16px;
    gap: 10px;
  }

  .font-error {
    font-size: 182px;
    line-height: 200px;
  }
}

@media (min-width: 768px) {
}

@media (max-width: 1000px) and (orientation: landscape) {
}

@media (max-width: 700px) and (orientation: landscape) {
}

/* ==========================================================================
   Print styles.
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

/* Testimonials Slider Dots Styling */
.testi.swiper-pagination {
  position: relative;
  bottom: 0;
  padding-top: 30px;
  text-align: center;
}

.testi.swiper-pagination .swiper-pagination-bullet {
  width: 22px;
  height: 3px;
  background: #e0e0e0;
  opacity: 1;
  border-radius: 6px;
  margin: 0 6px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.testi.swiper-pagination .swiper-pagination-bullet-active {
  background: #0073aa;
  width: 32px;
  border-radius: 6px;
}

/* Hover effect for dots */
.testi.swiper-pagination .swiper-pagination-bullet:hover {
  background: #999;
}

/* Smooth transition for testimonials */
.testimonials .swiper-slide {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonials .swiper-slide-active {
  opacity: 1;
}

/* Ensure proper height */
.testimonials {
  min-height: 300px;
}

/* Mobile responsiveness */
@media (max-width: 767px) {
  .testi.swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }

  .testi.swiper-pagination .swiper-pagination-bullet-active {
    width: 24px;
  }
}

/* Proprietary Page Styles */
.color-proprietary {
  color: #8b4513;
  /* Adjust color as needed */
}

.border-proprietary {
  border-color: #8b4513;
}

.bg-pro {
  background-size: cover;
  background-position: center;
  position: relative;
}

.accordion-button.prop {
  color: #8b4513;
}

.services-items.four {
  padding: 30px;
  display: block;
  min-height: 300px;
}

/* Real Estate Page Styles */
.color-real-estate {
  color: #a67c00;
  /* Adjust sesuai kebutuhan */
}

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

.services-items.three {
  padding: 30px;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  min-height: 280px;
}

.services-items.three:hover {
  background: #f8f9fa;
}

.accordion-button.rE {
  background: transparent;
  color: #fff;
}

.accordion-button.rE:not(.collapsed) {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.img-faq img {
  border-radius: 8px;
}

/* Mobile: hanya tampilkan menu level-1 di panel utama */
.mobile-nav .submenu-mobile {
  display: none;
}

a.link-side.corporate.sidebar-tab-link {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* ========================================
   USER DROPDOWN POSITIONING FIX
   ======================================== */

.gana-user-menu.dropdown {
  position: relative;
}

.gana-user-menu .dropdown-menu {
  position: absolute !important;
  top: calc(100% + 4px) !important;
  right: 0 !important;
  left: auto !important;
  margin: 0 !important;
  min-width: 100%;
  transform: none !important;
  background: transparent !important;
  border: 0 !important;
  padding-top: 0 !important;
}

/* Background putih & border di drop-inner */
.gana-user-menu .drop-inner {
  background: #ffffff;
  border: 1px solid #fafafa;
  border-bottom: 5px solid rgb(var(--color-main));
  border-radius: 0;
  padding: 10px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Dropdown items */
.gana-user-menu .dropdown-item {
  padding: 10px 20px;
  white-space: nowrap;
  color: rgb(var(--color-default));
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.15s ease-in-out;
  background: transparent;
}

/* Hover effect - smooth tanpa kedip */
.gana-user-menu .dropdown-item:hover,
.gana-user-menu .dropdown-item:focus {
  background-color: rgb(var(--color-main)) !important;
  color: rgb(var(--color-white)) !important;
}

/* SVG icon color on hover */
.gana-user-menu .dropdown-item:hover svg,
.gana-user-menu .dropdown-item:focus svg {
  color: rgb(var(--color-white));
  fill: currentColor;
}

/* Divider */
.gana-user-menu .dropdown-divider {
  margin: 0.5rem 0;
  border-top: 1px solid #ebebeb;
  opacity: 1;
}

/* Login button name max width */
.gana-login-name {
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Mobile responsive */
@media (max-width: 767px) {
  .gana-login-name {
    max-width: 80px;
  }
}

/* ========================================
   MOBILE USER MENU STYLING
   ======================================== */

/* Mobile user button styling */
.gana-mobile-user-menu {
  width: 100%;
}

.gana-mobile-user-btn {
  position: relative;
  padding: 12px 20px;
  text-align: left;
  border-radius: 4px;
}

.gana-mobile-user-btn img.avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.mobile-menu-arrow {
  transition: transform 0.3s ease;
}

.gana-mobile-user-btn[aria-expanded="true"] .mobile-menu-arrow {
  transform: rotate(180deg);
}

/* Mobile dropdown menu styling */
.mobile-user-dropdown {
  background: #ffffff;
  border: 1px solid rgba(var(--color-main), 0.2);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: rgb(var(--color-default));
  text-decoration: none;
  transition: all 0.15s ease-in-out;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}

.mobile-dropdown-item:hover,
.mobile-dropdown-item:focus {
  background-color: rgb(var(--color-main));
  color: rgb(var(--color-white));
}

.mobile-dropdown-item svg {
  flex-shrink: 0;
  color: inherit;
}

.mobile-dropdown-item:hover svg,
.mobile-dropdown-item:focus svg {
  color: rgb(var(--color-white));
}

.mobile-dropdown-divider {
  height: 1px;
  background-color: #ebebeb;
  margin: 0;
}

/* Login button mobile styling */
.gana-mobile-login-btn {
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.gana-mobile-login-btn svg {
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .mobile-nav .nav-footer {
    padding-bottom: 20px;
  }
}
