/* styles/base.css - EXACT ORIGINAL STYLES ADAPTED FOR FULLPAGE.JS */
:root {
  --primary-color: #2A2A2A;
  --secondary-color: #EA6F23;
  --tertiary-color: #000000;
  --quaternary-color: #FFFFFF;
  --quinary-color: #2B2B2B;
  --font-primary: 'Open Sans', sans-serif;
  --font-secondary: 'Century Gothic', sans-serif;
  --spacing-lg: clamp(1.5rem, 2vw, 2rem); 
  --spacing-md: clamp(1rem, 1.5vw, 1.5rem);
}

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

.fp-watermark {
  display: none !important;
}
.fp-watermark {
  display: none !important;
}
.fp-slidesNav {
    position: absolute !important;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 1001 !important;
    text-align: center !important;
    width: auto !important;
}
.fp-slidesNav ul {
    display: flex !important;
    justify-content: center !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
}
.fp-slidesNav ul li {
    display: inline-block !important;
    margin: 0 !important;
}
.fp-slidesNav ul li a {
    display: block !important;
}
.fp-slidesNav ul li a span {
    width: 8px !important;
    height: 8px !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}
.fp-slidesNav ul li a.active span {
    background: #f57c00 !important; 
    transform: scale(1.2) !important;
}
/* Hide Fullpage.js default arrows */
.fp-controlArrow {
    display: none !important;
}
body {
  font-family: 'Open Sans', sans-serif;
  overflow: hidden;
}

/* Fullpage sections */
.section {
  position: relative;
  height: 100vh;
  width: 100%;
}

/* Different background colors for each section */
#section1 {
  background: #E9EAEC;
}

#section2 {
  background: #F1EEE1;
}

#section3 {
  background: #EBE1F1;
}

#section4 {
  background: #E1E6F1;
}

#section5 {
  background: #F1E1E2;
}

#section6 {
  background: #E9EAEC;
}

/* NEW: FullPage.js Slide Structure */
.slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  position: relative;
}

/* ADAPTED: Original internal-content -> slide-content */
.slide-content {
  width: min(90%, 70vw); 
  max-height: 85vh;
  overflow-y: auto;
  color: #333;
  text-align: left;
  overflow-y: auto !important;
  overscroll-behavior: contain;
  max-height: 85vh;
  pointer-events: auto;
  width: 100%;
  margin: 0 auto;
}

/* FullPage.js Scrollable Content */
.fp-scrollable {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
}

.fp-scroller {
  padding: 20px;
}

.section-content {
  text-align: center;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section-content h1 {
  font-size: clamp(2rem, 4vw, 3em);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ADAPTED: internal-sections-container for slides */
.internal-sections-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Content styling for slides */
.slide-content h2,
.internal-content h2 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: clamp(1.2rem, 2.5vw, 1.5em);
}

.slide-content h3,
.internal-content h3 {
  color: #34495e;
  margin: 10px 0 10px 0;
  font-size: 1.5em;
}

.slide-content p,
.internal-content p {
  line-height: 1.2;
  margin-bottom: 15px;
  font-size: clamp(1rem, 2vw, 1.1em);
}

.product-principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(220px, 25vw, 300px), 1fr));
  gap: clamp(15px, 2vw, 30px);
  margin-top: clamp(15px, 2vw, 30px);
}

.principle-card {
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
}

.principle-card h4 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.3em;
  font-weight: 600;
}

/* Individual card styling (unchanged) */
.principle-card,
.team-card,
.platform-card {
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Left Circle Menu */
.left-circle-menu {
  position: fixed;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

.circle-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.circle-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.circle-item.active {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  transform: scale(1.1);
  border-color: white;
}

.circle-item:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.circle-item::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 60px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.circle-item:hover::after {
  opacity: 1;
}

/* Right Circle Menu */
.right-circle-menu {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

.section-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.menu-dot.active {
  background: white;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.menu-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.menu-dot::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.menu-dot:hover::after {
  opacity: 1;
}

/* Internal section navigation */
.internal-nav {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.internal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.internal-dot.active {
  background: white;
  transform: scale(1.3);
}

/* Fixed Logo */
.fixed-logo {
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 1001;/* Start hidden and slide in */
  opacity: 0;
  transform: translateX(120px);
  animation: logoFlyIn 1s cubic-bezier(.19,1,.22,1) forwards;
  animation-delay: 0.5s; /* slight delay */
}
/* Fly-in animation from the right */
@keyframes logoFlyIn {
  from {
    opacity: 0;
    transform: translateX(120px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Hide logo on home section */
.fp-viewing-home .fixed-logo {
  display: none;
}

/* Show logo on all other sections */
.fp-viewing-services .fixed-logo,
.fp-viewing-platform .fixed-logo,
.fp-viewing-about .fixed-logo,
.fp-viewing-careers .fixed-logo,
.fp-viewing-contact .fixed-logo {
  display: block;
}

/* Custom scrollbar */
.slide-content::-webkit-scrollbar,
.internal-content::-webkit-scrollbar {
  width: 6px;
}

.slide-content::-webkit-scrollbar-track,
.internal-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.slide-content::-webkit-scrollbar-thumb,
.internal-content::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.slide-content::-webkit-scrollbar-thumb:hover,
.internal-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.5);
}

/* Demo content styles */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hide all internal sections by default */
.internal-section {
  display: none;
}

.internal-section.active {
  display: flex;
}

/* Left Half Circle Menu */
.left-circle-menu {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  width: 800px;
  height: 800px;
  pointer-events: none;
}

.left-circle-menu .half-circle-image {
  position: absolute;
  left: -450px;
  top: 50%;
  transform: translateY(-50%);
  width: 800px;
  height: 800px;
  z-index: 1;
  pointer-events: auto;
  transition: transform 0.8s ease-in-out;
}

.left-circle-menu .half-circle-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
  pointer-events: none;
}

.left-circle-menu .menu {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: auto;
  z-index: 15;
}

.left-circle-menu .menu .dot {
  height: 8px;
  width: 8px;
  background-color: #333;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  opacity: 1;
  visibility: visible;
}

.left-circle-menu .menu-item.active .dot {
  background-color: #EA6F23;
}

.left-circle-menu .menu-item .text {
  opacity: 0.5;
  visibility: visible;
  transition: none;
  color: #8C8C8E;
}

.left-circle-menu .menu-item:hover .text {
  opacity: 1;
  visibility: visible;
}

.left-circle-menu .menu-item.active .text {
  opacity: 1;
  visibility: visible;
  color: #EA6F23;
}

.left-circle-menu .menu-item {
  position: absolute;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  transform: translate(-50%, -50%);
  transition: top 0.3s, left 0.3s;
  pointer-events: auto;
}

.left-circle-menu .menu-item.active a {
  color: #EA6F23;
}

.left-circle-menu .menu-item a {
  color: #8C8C8E;
  text-decoration: none;
  display: inline-block;
  padding: 5px 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

/* Menu item positions */
.left-circle-menu .menu-item:nth-child(1) {
  top: 30%;
  left: 73%;
}

.left-circle-menu .menu-item:nth-child(2) {
  top: 38%;
  left: 79%;
}

.left-circle-menu .menu-item:nth-child(3) {
  top: 46%;
  left: 81.5%;
}

.left-circle-menu .menu-item:nth-child(4) {
  top: 54%;
  left: 82%;
}

.left-circle-menu .menu-item:nth-child(5) {
  top: 63%;
  left: 78%;
}

.left-circle-menu .menu-item:nth-child(6) {
  top: 70%;
  left: 74%;
}

/* Right Application Circle Menu */
.half-ApplicationCircle-image {
  position: fixed;
  right: -250px;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
  width: 500px;
  height: 500px;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.6s ease,
    visibility 0s linear 0.8s;
}

.half-ApplicationCircle-image.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
  transition:
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.6s ease,
    visibility 0s linear 0s;
}
.half-ApplicationCircle-image.retrigger {
  animation: slideReenter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes slideReenter {
  0% {
    transform: translateY(-50%) translateX(60%);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }
}

.half-ApplicationCircle-image.show {
  opacity: 1;
}

.half-ApplicationCircle-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.7s cubic-bezier(.22, 1, .36, 1);
  transform-origin: center center;
}

/* Hide all menus by default */
.menu-product,
.menu-platform,
.menu-team,
.menu-application {
  display: none;
}

/* Show active menu */
.menu-product.active,
.menu-platform.active,
.menu-team.active,
.menu-application.active {
  display: block;
}

.Application-menu-item {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #333;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: top 0.3s, left 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 20;
}

.menu-product a {
  text-decoration: none;
  color: inherit;
}

.menu-product .text,
.menu-platform .text,
.menu-team .text,
.menu-application .text {
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-product-item a,
.Platform-menu-item a,
.menu-team-item a,
.Application-menu-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.Application-menu-item .dot {
  height: 8px;
  width: 8px;
  background-color: #000;
  border-radius: 50%;
  display: inline-block;
  opacity: 1;
}

.Application-menu-item.active .dot {
  background-color: #EA6F23;
}

.Application-menu-item .text {
  opacity: 0.5;
  visibility: visible;
  transition: none;
  color: #8C8C8E;
}

.Application-menu-item a {
  text-decoration: none;
  color: inherit;
}

.Application-menu-item:hover .text,
.Application-menu-item.active .text {
  opacity: 1;
}

.Application-menu-item.active .text {
  color: #f57c00;
  opacity: 1;
}

/* Product menu positioning (4 items) */
.menu-product .Application-menu-item:nth-child(1) {
  top: 26.5%;
  left: 4%;
}

.menu-product .Application-menu-item:nth-child(2) {
  top: 42%;
  left: 0%;
}

.menu-product .Application-menu-item:nth-child(3) {
  top: 59%;
  left: 3%;
}

.menu-product .Application-menu-item:nth-child(4) {
  top: 76%;
  left: 9%;
}

/* Team menu positioning (3 items) */
.menu-team .Application-menu-item:nth-child(1) {
  top: 36% !important;
  left: 2% !important;
}

.menu-team .Application-menu-item:nth-child(2) {
  top: 50% !important;
  left: 5% !important;
}

.menu-team .Application-menu-item:nth-child(3) {
  top: 65% !important;
  left: 5% !important;
}

/* Platform menu positioning (1 item) */
.menu-platform .Application-menu-item:nth-child(1) {
  /* Add your platform positioning here */
  top: 50%;
  left: -2%;
}

/* Application menu positioning (2 items) */
.menu-application .Application-menu-item:nth-child(1) {
  top: 42%;
  left: 3%;
}

.menu-application .Application-menu-item:nth-child(2) {
  top: 58%;
  left: 2%;
}

.half-ApplicationCircle-image.fade-in {
  opacity: 1;
}

.half-ApplicationCircle-image.fade-out {
  opacity: 0;
}

/* mobile menu styles */
.mobile-header,
.mobile-menu,
.mobLogo {
  display: none;
}

.hamburger-icon {
  display: none;
}

.fixed-logo,
.left-circle-menu,
.half-ApplicationCircle-image {
  display: block;
}

body.no-scroll {
  overflow: hidden;
}

/* Responsive */
/* ========== MOBILE MENU (SIDE PANEL STYLE) ========== */
.mobile-header {
  display: none;
}
.mobile-section-dropdown {
  display: none;
}
@media (max-width: 768px) {
  .fixed-logo,
  .left-circle-menu {
    display: none !important;
  }
    .fp-slidesNav {
        bottom: 180px !important;
        z-index: 1001 !important;
    } 
    .fp-slidesNav ul li a span {
        width: 10px !important;
        height: 10px !important;
        background: rgba(0, 0, 0, 0.5) !important;
    }
    .fp-slidesNav ul li a.active span {
        background: #f57c00 !important;
        transform: scale(1.4) !important;
    }/* Show arrows with matching orange color */
    .fp-controlArrow {
        display: block !important;
        width: 30px !important;
        height: 30px !important;
        border: none !important;
        background: transparent !important;
        z-index: 1001 !important;
    }
    .fp-controlArrow.fp-prev {
        left: 10px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    .fp-controlArrow.fp-next {
        right: 10px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    .fp-controlArrow:before {
        font-family: Arial !important;
        font-size: 24px !important;
        color: #f57c00 !important; 
        font-weight: bold !important;
    }
    .fp-controlArrow.fp-prev:before {
        content: "‹" !important;
    }
    .fp-controlArrow.fp-next:before {
        content: "›" !important;
    }
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: transparent;
    padding: 0 20px;
    z-index: 2000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .header-logo-container .mobLogo {
    height: 35px;
    width: auto;
  }

  .hamburger-icon {
    display: block !important;
    font-size: 24px;
    color: #000;
    cursor: pointer;
  }

  .mobile-menu {
    position: fixed;
    top: 50px;
    right: -270px;
    width: 250px;
    height: calc(100% - 20px);
    background: #fff;
    padding: 20px;
    z-index: 1999;
    transition: right 0.35s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  .mobile-menu.active {
    right: 0;
    /* slide in */
  }

  .mobile-menu .menu-item {
    margin: 10px 0;
  }

  .mobile-menu .menu-item>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 0;
  }

  .mobile-menu .submenu {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    margin-left: 15px;
    transition: max-height 0.3s ease;
  }

  .mobile-menu .submenu a {
    display: block;
    padding: 8px 0;
    color: #666;
    text-decoration: none;
  }

  /* When menu-item is active */
  .mobile-menu .menu-item.active .submenu {
    max-height: 500px;
  }

  .mobile-menu .menu-item.active .submenu-icon {
    transform: rotate(180deg);
    transition: transform 0.3s;
  }
  #section3 .Platform-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    padding-top: 80px !important;
    padding-bottom: 220px !important;
    margin: 0 auto !important;
    width: 90% !important;
    box-sizing: border-box !important;
    text-align: left !important;
    max-height: none !important;
    height: auto !important;
  }
.half-ApplicationCircle-image {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0) !important;
  width: 100%;
  height: auto;
  z-index: 1000;
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease !important;
  pointer-events: auto;
}
.half-ApplicationCircle-image.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) !important;
}
  .half-ApplicationCircle-image img {
    position: absolute;
    bottom: 0 !important;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 300px;
    object-fit: contain;
  }

  .half-ApplicationCircle-image .Application-menu-item {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
    /* MOBILE-ONLY: DOT NEXT TO TEXT */
  .half-ApplicationCircle-image .Application-menu-item a {
    display: flex !important;
    align-items: center !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 4px !important;
    pointer-events: auto;
  }

  .half-ApplicationCircle-image .text {
    font-size: 10px !important;
    white-space: nowrap !important;
  }

  .half-ApplicationCircle-image .dot {
    width: 6px !important;
    height: 6px !important;
    background: #000 !important;
    border-radius: 50% !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
  }
  /* MOBILE POSITIONING */
  .menu-product .Application-menu-item:nth-child(1) { top: 76.5%; left: 21%; }
  .menu-product .Application-menu-item:nth-child(2) { top: 47%; left: 33%; }
  .menu-product .Application-menu-item:nth-child(3) { top: 44%; left: 64%; }
  .menu-product .Application-menu-item:nth-child(4) { top: 76%; left: 79%; }
  .menu-team .Application-menu-item:nth-child(1) { top: 65% !important; left: 23% !important; }
  .menu-team .Application-menu-item:nth-child(2) { top: 38% !important; left: 46% !important; }
  .menu-team .Application-menu-item:nth-child(3) { top: 65% !important; left: 76% !important; }
  .menu-platform .Application-menu-item:nth-child(1) { top: 50%; left: 31%; }
  .menu-application .Application-menu-item:nth-child(1) { top: 55%; left: 28%; }
  .menu-application .Application-menu-item:nth-child(2) { top: 58%; left: 73%; }
.mobile-section-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    z-index: 2001;
    font-family: var(--font-primary);
  }

  .mobile-section-button {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: #f57c00;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
  }

  .mobile-section-button .dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
  }

  .mobile-section-button.open .dropdown-icon {
    transform: rotate(180deg);
  }

.mobile-section-menu {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%); 
    background: #fff;
    border-top: 1px solid #ddd;
    width: 100vw;
    max-width: 100vw; 
    display: none;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2002;
  }

  .mobile-section-menu.active {
    display: flex;
  }

  .mobile-section-menu .menu-item {
    padding: 8px 12px;
    color: #333;
    font-size: 13px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
  }

  .mobile-section-menu .menu-item:last-child {
    border-bottom: none;
  }

  .mobile-section-menu .menu-item.active {
    background: #f57c00;
    color: #fff;
  }
.half-ApplicationCircle-image,
.half-ApplicationCircle-image img {
  pointer-events: none !important;
}
.half-ApplicationCircle-image .Application-menu-item a {
  pointer-events: auto !important;
  position: relative; 
  z-index: 1010 !important;
}
.mobile-section-dropdown,
.mobile-section-button,
.mobile-section-menu {
  pointer-events: auto !important;
  z-index: 2020 !important; 
  position: fixed !important;
}

}


@media (max-width: 480px) {
  .half-ApplicationCircle-image img {
    max-width: 300px;
    height: 300px;
    bottom: -150px !important;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .half-ApplicationCircle-image img {
    bottom: -140px !important;
  }
   .menu-product .Application-menu-item:nth-child(1) { top: 72.5%; left: 37%; }
  .menu-product .Application-menu-item:nth-child(2) { top: 56%; left: 43%; }
  .menu-product .Application-menu-item:nth-child(3) { top: 60%; left: 60%; }
  .menu-product .Application-menu-item:nth-child(4) { top: 72%; left: 63%; }
  .menu-team .Application-menu-item:nth-child(1) { top: 62% !important; left: 40% !important; }
  .menu-team .Application-menu-item:nth-child(2) { top: 50% !important; left: 50% !important; }
  .menu-team .Application-menu-item:nth-child(3) { top: 61% !important; left: 60% !important; }
  .menu-platform .Application-menu-item:nth-child(1) { top: 50%; left: 50%; }
  .menu-application .Application-menu-item:nth-child(1) { top: 57%; left: 43%; }
  .menu-application .Application-menu-item:nth-child(2) { top: 59%; left: 59%; }
}
