:root {
            --bg: #000000;
            --text-main: #ffffff;
            --text-muted: #d0d3da;
            --border-soft: rgba(255, 255, 255, 0.08);
            --radius-pill: 999px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "Inter", sans-serif;
            color: var(--text-main);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background: #000;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            z-index: -1;

            background:
                linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75));

            pointer-events: none;
        }



        header {
            width: 100%;
            background: transparent;
            backdrop-filter: blur(4px);
            height:12vh;
            position: fixed;
            z-index: 1000;
        }

        .nav {
            width: 100%;
            padding: 18px 6% 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }

            .brand img {
                height: 48px;
                display: block;
            }

        .brand-name {
            font-size: 1.15rem;
            font-weight: 600;
            letter-spacing: 0.04em;
        }

        .nav-actions {
            display: inline-flex;
            align-items: center;
            width: max-content;
            width: 26vh;
        }

        main {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 70px 6% 80px;
            margin-top: 12vh;
        }

        .hero{
            height: 70vh;
        }

        .hero-title {
            font-size: clamp(2.4rem, 4vw, 4rem);
            font-weight: 500;
            letter-spacing: 0.02em;
            margin-bottom: 2vh;
        }

        .hero-tagline{
            color: rgba(255, 255, 255, 1);
            font-size: 100 !important;
        }

        .type-cursor {
            display: inline-block;
            margin-left: 4px;
            font-weight: 400;
            animation: blink 1s infinite;
        }


        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        .hero-tagline {
            margin-top: 6px;
            font-size: 0.95rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 1);
            max-width: 60%;
            font-weight: 100;
        }

        .hero-coming-soon {
            margin-top: 18px;
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }

        .logo-shell {
            max-width: 220px;
            width: 100%;
            margin-top: 40px;
        }

        .hero-logo {
            width: 100%;
            height: auto;
            display: block;
        }



        @media (max-width: 768px) {
            main {
                padding: 50px 6% 60px;
            }

            .hero-title {
                font-size: 2.1rem;
            }

            .logo-shell {
                margin-top: 28px;
            }
        }

        @media (max-width: 480px) {
            .nav {
                padding-inline: 16px;
            }

            main {
                padding-inline: 16px;
            }
        }

.btn-primary{
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 13px;
    color: #CACACA;
    z-index:900;
    border-radius: 30px;
    border: 2px solid transparent;
    background:
        linear-gradient(270deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.42)) padding-box,
        linear-gradient(
            270deg,
            rgba(255, 255, 255, 0.20) 0%,
            rgba(255, 255, 255, 0.17) 25%,
            rgba(255, 255, 255, 0.10) 50%
        ) border-box;

    box-shadow:
        inset 0 0 40px rgba(255, 255, 255, 0.03);
}

.btn-primary:hover{
    cursor: pointer;
    border: 1px solid #CC9939;
    color: #CC9939;
    transition: 300ms;
}

.menu-btn {
  width: 50px;
  height: 50px;
  background:
    linear-gradient(#0F0F0F, #0F0F0F) padding-box,
    linear-gradient(90deg, rgba(255,255,255,0.25), rgba(255,255,255,0)) border-box;

  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;

  clip-path: circle(50%);
  border-radius: 50%;

  transition:
    clip-path 0.45s ease,
    transform 0.6s cubic-bezier(.68,-0.55,.27,1.55);

  will-change: clip-path, transform;
}

.menu-btn:hover {
    clip-path: polygon(
    50% 0%,
    93.3% 25%,
    93.3% 75%,
    50% 100%,
    6.7% 75%,
    6.7% 25%
    );
    border: 2px solid #CC9939;
    color: #CC9939;
    cursor: crosshair;
    animation: spin 2s linear infinite;
    box-shadow:
    0 0 12px #CC9939,
    inset 0 0 8px rgba(255,255,255,0.08);
}

.menu-btn.is-spinning {
    animation: spin 2s linear forwards;
    clip-path: polygon(
    50% 0%,
    93.3% 25%,
    93.3% 75%,
    50% 100%,
    6.7% 75%,
    6.7% 25%
    );
    border: 2px solid #CC9939;
    color: #CC9939;
}


@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


.button-container{
    border: 1px solid rgba(102, 102, 102, 1);
    border-radius: 100px;
    height: 50px;
    padding: 5px;
    width: 40%;
    margin-top: 2vh;
    margin-bottom: 4vh;
    background-color: rgba(0, 0, 0, 1);
}

.button-left{
    border-radius: 100px;
    background-color: transparent;
    color : rgba(202, 202, 202, 1);
    border: 1px solid rgba(0, 0, 0, 1);
    font-size: 13px;
    z-index: 100;
}

.button-left:hover{
    background-color: black;
    color: #CC9939;
}

.button-right{
    border-radius: 100px;
    background-color: black;
    color : rgba(202, 202, 202, 1);
    border: 1px solid rgba(0, 0, 0, 1);
    font-size: 13px;
    z-index: 100;
}

.button-right:hover{
    background-color: black;
    color: #3280B2;
}

.footer-section-header{
    font-weight: 600;
    font-style: SemiBold;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 15px;
}

.footer-column-container{
    text-align: left;
}

.footer-column-container p{
    font-weight: 100;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0%;
}

footer {
    padding: 14px 20px 20px;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    background: rgba(0, 0, 0, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 10;
}

.footer-paragraph{
    width: 100%;
    margin-top: 20px;
}

.footer-top-container {
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 50px;
    padding-bottom: 50px;

}

.footer-bottom-container{
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 30px;
    height: 10vh;
}

.footer-logo{
    width: 25vh;
    height: auto;
    padding-bottom: 2vh;
}


.services-container {
    padding: 100px;
}

.service-left-container {
    border-radius: 50px;
    padding: 40px;
    margin-bottom: 15vh;
    border: 2px solid transparent;
    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.35) 0%,
            rgba(255, 255, 255, 0.15) 30%,
            rgba(255, 255, 255, 0.05) 45%,
            rgba(0, 0, 0, 1) 55%
        ) border-box;

    box-shadow:
        inset 0 0 40px rgba(255, 255, 255, 0.03);
}

.service-right-container {
    border-radius: 50px;
    padding: 40px;
    margin-bottom: 15vh;
    border: 2px solid transparent;
    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(
            270deg,
            rgba(255, 255, 255, 0.35) 0%,
            rgba(255, 255, 255, 0.15) 30%,
            rgba(255, 255, 255, 0.05) 45%,
            rgba(0, 0, 0, 0) 55%
        ) border-box;

    box-shadow:
        inset 0 0 40px rgba(255, 255, 255, 0.03);
}

.section-header{
    padding-top: 15px;
    padding-bottom: 15px;
}

.paragraph-primary{
    font-weight: 100;
    color: rgba(255, 255, 255, 1);
    font-size: 1.2rem;
}

.paragraph-secondary{
    font-weight: 100;
    color: rgba(255, 255, 255, 1);
    font-size: 0.9rem;
}

.get-in-touch-container{
    border-top: 1px solid rgb(87, 87, 87);
    padding: 130px;
}

.service-left-container,
.service-right-container {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.service-left-container {
    transform: translateX(-120px);
}

.service-right-container {
    transform: translateX(120px);
}

.service-visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.get-in-touch-secondary-container button{
    margin-top: 4vh;
    margin-bottom: 4vh;
}

.particles-background {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.spinning-logo {
  display: inline-block;
}

.spinning-logo img {
  width: 60px;              
  height: auto;
  animation: slow-spin 10s linear infinite;
  transform-origin: center;
  margin-top: 20px;
}

@keyframes slow-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#typewriter {
  background: linear-gradient(120deg, #3280B2, #CC9939, #B63832);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 200;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.fullscreen-menu {
  position: fixed;
  inset: 0;
  height: 100vh;

  background:
    url("/images/background-globe.png") left 70% center / cover no-repeat,
    radial-gradient(circle at 70% 30%, #000 0%, #000 100%);

  display: flex;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.05);
  overflow-y: auto;


  transition:
    opacity 0.45s ease,
    transform 0.6s cubic-bezier(.16,1,.3,1);

  z-index: 999;
}




.fullscreen-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.menu-content {
  position: fixed;
  left: 0;
  top: 0;
  text-align: right;
  width: 25%;
  height: 100vh;
  border-right: 1px solid rgba(107, 107, 107, 0.4);
  padding-left: 20vh;
  display: flex;
  align-items: center;
}


.menu-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.menu-links a {
  font-size: 1.1rem;
  font-weight: 200;
  text-decoration: none;

  background: rgba(73, 73, 73, 1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
    margin-bottom: 20px;
}

.menu-links a:hover{
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    background-color: rgba(255, 255, 255, 1) !important;
    cursor: pointer;
}

.selected{
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    background-color: rgba(255, 255, 255, 1) !important;

}

.fullscreen-menu.active .menu-links a {
  opacity: 1;
  transform: translateY(0);
}

.fullscreen-menu.active .menu-links a:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-menu.active .menu-links a:nth-child(2) { transition-delay: 0.18s; }
.fullscreen-menu.active .menu-links a:nth-child(3) { transition-delay: 0.26s; }
.fullscreen-menu.active .menu-links a:nth-child(4) { transition-delay: 0.34s; }
.fullscreen-menu.active .menu-links a:nth-child(5) { transition-delay: 0.42s; }
.fullscreen-menu.active .menu-links a:nth-child(6) { transition-delay: 0.50s; }

.about-us-container{
    padding: 150px;
}
.body-header{
    font-size: 2.5rem;
    font-weight: 100 !important;
}

.menu-line-container{
    margin-top: 30px;
    margin-bottom: 30px;
    height: 1vh;
}

.selected-menu-line{
    width: 16.6%;
    height: 0.5vh;
    background: linear-gradient(90deg, #3280B2, #CC9939, #B63832);
    border-radius: 100px;
}

.unselected-menu-line{
    width: 100%;
    height: 0.1vh;
    background: rgba(107, 107, 107, 0.4);
    
}

.elements-main-container {
    margin-bottom: 50px;
}

.element-secondary-container {   
    margin-top: 40px;
}

.element-secondary-container svg{
    margin-bottom: 30px;
    height: 7vh;
    width: 7vh;

}

.element-secondary-container h3{
    font-size: 1rem;
}

.eye-icon-container{
    height: 50vh;
    gap: 60px;
}

.vision-container{
    padding: 150px;

}

.content-section {
  margin-left: 25%;  
  width: 75%;
  height: 100vh;

  overflow-y: auto;
  overflow-x: hidden;

  padding: 150px 150px 200px;

  scroll-behavior: smooth;
}

.content-section[hidden] {
    opacity: 0;
    pointer-events: none;
}

.mission-container{
    padding: 150px;

}

.mission-second-header{
    margin-top: 7vh;
    margin-bottom: 7vh;
    font-size: 1.2rem;
    font-weight: 100;
}

.mission-list-row  div{
    width: 33%;
    gap: 2vh;
}

.mission-list-row{
    margin-bottom: 7vh;
}

.core-values-image-container {
    margin-top: 10vh;
}

.core-values-image-container img{
    height: 60vh;
}

.products-carousel {
  position: relative;
  width: 80%;
  margin-top: 7vh;
  display: flex;
  align-items: center;
  gap: 20px;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 50px;
  border: 2px solid transparent;
    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(
            320deg,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0.15) 40%,
            rgba(255, 255, 255, 0.05) 55%,
            rgba(0, 0, 0, 0) 55%
        ) border-box;

    box-shadow:
        inset 0 0 40px rgba(255, 255, 255, 0.03);
}

.products-image-container {
  display: flex;
  transition: transform 1s cubic-bezier(.16,1,.3,1);
}

.products-image-container img {
  width: 70%;
  flex: 0 0 100%;
  object-fit: cover;
  border-radius: 50px;
}

.carousel-btn {
  background-color: #171717C2;
  color: #000000;
  font-size: 2rem;
  width: 70px;
  height: 55px;
  border-radius: 150px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  border: 1px solid #000000;
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.1);
}

.image-container{
  width: 100%;
  flex: 0 0 100%;
  object-fit: cover;
  border-radius: 50px;
  padding: 5vh;
}

.image-container svg{
    margin-top: 12vh;
}

.image-mag {
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url("/images/keyboard-with-magnifier 2.png") left 70% center / cover no-repeat;
}

.image-analytics {
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url("/images/digital-marketing-commerce-online-sale-concept-online-sale-digital-marketing-strategies-promot 4.png") left 70% center / cover no-repeat;
}

.image-waves {
    background:
        linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
        url("/images/digital-dynamic-wave-particles-abstract-blue-futuristic-background-big-data-visualization-3d-rendering 2.png") left 70% center / cover no-repeat;
}


.image-container h3 {
    font-weight: 500;
    font-size: 1.3rem;
    margin-top: 2vh;
    margin-bottom: 2vh;
}

.image-container p {
    font-weight: 100;
    font-size: 0.8rem;
}

.application-buttons-container div{
   gap: 4vh;
   height: 60vh;
}

.application-buttons-container button{
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1rem;
    color: #CACACA;
    z-index:900;
    border-radius: 30px;
    border: 2px solid transparent;
    background:
        linear-gradient(270deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.42)) padding-box,
        linear-gradient(
            270deg,
            rgba(255, 255, 255, 0.20) 0%,
            rgba(255, 255, 255, 0.17) 25%,
            rgba(255, 255, 255, 0.10) 50%
        ) border-box;

    box-shadow:
        inset 0 0 40px rgba(255, 255, 255, 0.03);

    width: 100%;
}


.resource-table {
    max-width: 1100px;
    margin: 0 auto;
    background-color: transparent;
    color: #e5e5e5;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.row {
    display: grid;
    grid-template-columns: 30% 70%;
    border-bottom: 1px solid #2a2a2a;
}

.cell {
    padding: 28px 32px;
}

.cell.left {
    font-weight: 600;
    color: #ffffff;
    border-right: 1px solid #2a2a2a;
    text-align: center;
}

.cell.right {
    color: #cfcfcf;
    line-height: 1.6;
}


.cell.right p {
    margin: 0 0 14px 0;
    max-width: 100%;
}

.cell.right ul {
    margin: 0;
    padding-left: 18px;
}

.cell.right li {
    margin-bottom: 8px;
}

.standalone-via-api-container,
.standalone-via-mobile-container,
.integrated-solutions-via-mobile-container {
    scroll-margin-top: 15vh;
}


.scroll-to-top-btn {
  position: fixed;
  bottom: 7vh;
  right: 7vh;
  z-index: 1000;

  background-color: #171717C2;
  color: grey;
  font-size: 2rem;
  width: 45px;
  height: 45px;
  border-radius: 150px;
  cursor: pointer;
  border: 1px solid grey;

  display: flex;
  align-items: center;
  justify-content: center;

  animation: floatUpDown 2s ease-in-out infinite;
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.scroll-to-top-btn:hover {
  transform: scale(1.1);
  border: 1px solid #CC9939;
  color: #CC9939;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}




