: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;
        }


        .video-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            object-fit: cover;
            z-index: -1;
            filter: brightness(1.15) saturate(1.05);
            will-change: filter;
            transition: filter 300ms ease;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            z-index: 0;
            background:
                linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
            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: auto;
            gap: 12px;
            justify-content: flex-end;
        }

        /* Header-specific smaller buttons */
        .nav-actions .header-top-btn{
            padding: 8px 14px;
            font-size: 13px;
            border-radius: 28px;
            background: transparent;
            color: rgba(202,202,202,1);
            border: 1px solid rgba(255,255,255,0.06);
            height: 40px;
        }

        .nav-actions .header-top-btn.button-right{
            background: rgba(0,0,0,0.6);
        }

/* Switch-style toggle (header) */
.switch-toggle { display: inline-flex; align-items: center; }
.switch-toggle input[type="checkbox"] { display: none; }
.switch-track {
    display: inline-flex;
    align-items: center;
    position: relative;
    height: 40px; /* match header-top-btn height */
    min-width: 150px;
    padding: 4px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.06);
    background: transparent;
    cursor: pointer;
}
.switch-option {
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: rgba(202,202,202,1);
    z-index: 2;
    user-select: none;
    pointer-events: none;
}
.switch-knob {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 8px);
    height: calc(100% - 8px);
    border-radius: 24px;
    background: rgba(255,255,255,0.03);
    transition: left 220ms ease, background 220ms ease;
    box-shadow: inset 0 0 30px rgba(255,255,255,0.02);
}
.switch-toggle input[type="checkbox"]:checked + .switch-track .switch-knob {
    left: calc(50% + 4px);
    background: linear-gradient(90deg,#3280B2,#CC9939,#B63832);
}
.switch-toggle input[type="checkbox"]:checked + .switch-track .switch-left {
    color: rgba(202,202,202,0.7);
}
.switch-toggle input[type="checkbox"]:not(:checked) + .switch-track .switch-right {
    color: rgba(202,202,202,0.7);
}
.switch-toggle:focus-within .switch-track { box-shadow: 0 0 0 3px rgba(204,153,57,0.08); }

        main {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 70px 6% 80px;
            margin-top: 12vh;
        }

        .hero{
            height: 90vh;
        }

        .hero div{
            width: 50%;
        }

        .hero-title {
            font-size: 16rem;
            font-weight: 500;
            letter-spacing: 0.02em;
            margin-bottom: 0;
        }

        .hero-tagline{
            color: rgba(255, 255, 255, 1);
            font-size: 1rem !important;
        }

        .type-cursor {
            display: inline-block;
            margin-left: 4px;
            font-weight: 400;
            animation: blink 1s infinite;
        }

        /* Customizing the Bootstrap Carousel appearance */
        #heroCarousel {
            min-height: 100px;
            margin-bottom: 0;
            width: 100%!important;
        }

        #heroCarousel .carousel-item {
            /* Fixed: Overriding the parent huge font size */
            font-size: clamp(1rem, 2vw, 2rem); 
            font-weight: 300;
            color: #ffffff;
            backface-visibility: hidden; /* Smoother transitions */
        }

        .highlighted-word {
            background: linear-gradient(90deg, #3280B2, #CC9939, #B63832);
            background-size: 200% 200%;
            animation: gradientShift 6s ease infinite;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        

        @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;
}

.btn-pulse {
    --rainbow-duration: 7s;
    --rainbow-ease: linear;
}

.btn-pulse {
    position: relative;
    padding: 10px 25px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 30px;
    border: none;
    z-index: 1;
    overflow: hidden;

    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%;
    transition: 1000ms;
}

.btn-pulse::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 30px;

    background: linear-gradient(
        150deg,
        #3280B2,
        #CC9939,
        #B63832,
        #3280B2
    );
    background-size: 400% 400%;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0;

    animation: borderRainbow var(--rainbow-duration) var(--rainbow-ease) infinite;
    animation-play-state: paused;

    z-index: -1;
}

.btn-pulse:hover::before {
    opacity: 1;
    animation-play-state: running;
}

.btn-pulse:hover span {
    color: transparent;
    -webkit-text-fill-color: transparent;
    animation-play-state: running;
}


.btn-pulse span {
    position: relative;
    z-index: 2;
    color: #fff;

    background: linear-gradient(
        150deg,
        #3280B2,
        #CC9939,
        #B63832,
        #3280B2
    );
    background-size: 400% 400%;

    background-clip: text;
    -webkit-background-clip: text;

    animation: borderRainbow var(--rainbow-duration) var(--rainbow-ease) infinite;
    animation-play-state: paused;
}


@keyframes borderRainbow {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce) {
    .btn-pulse:hover span,
    .btn-pulse::before {
        animation: none;
    }
}


.menu-btn {
  width: 50px;
  height: 50px;
  position: relative;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Spinning border overlay */
.menu-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  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;
  clip-path: circle(50%);
  border-radius: 50%;
  transition:
    clip-path 0.45s ease,
    border 0.3s ease,
    box-shadow 0.3s ease;
  will-change: clip-path, transform;
  z-index: 0;
}

/* Icons stay above the spinning border */
.menu-btn .three-dots-icon,
.menu-btn .home-icon {
  position: relative;
  z-index: 1;
}

.menu-btn:hover {
  cursor: crosshair;
  color: #CC9939;
}

.menu-btn:hover::before {
  clip-path: polygon(
    50% 0%,
    93.3% 25%,
    93.3% 75%,
    50% 100%,
    6.7% 75%,
    6.7% 25%
  );
  border: 2px solid #CC9939;
  box-shadow:
    0 0 12px #CC9939,
    inset 0 0 8px rgba(255,255,255,0.08);
  animation: spin 2s linear infinite;
}

.menu-btn.is-spinning::before {
  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;
}

.menu-btn.is-spinning {
  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-column-container a{
    margin-bottom: 1.5vh;
    font-weight: 100;
    font-size: 13px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: none;
    color:#d0d3da;
}

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;
    flex-direction: row;
}

.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-bottom-container a{
    text-decoration: none;
    color: #fff;
}

.footer-logo{
    width: 25vh;
    height: auto;
    padding-bottom: 2vh;
}


.services-container {
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 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, #4A90E2, #CC9939, #B63832);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    filter: brightness(1.1) drop-shadow(0 0 2px #fff4);
}

@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;
}

.vision-image-container img{
    height: 60vh;
}

.paragraph-vision{
    font-weight: 100;
}

.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;
}

.tablet-mobile-content {
    display: none;
}

.product-btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 60px;
}

.application-buttons-container .product-btn-content {
    gap: 0;
    height: auto;
}

.product-btn-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 1000;
    text-shadow: 0px 0px 1px #ffff, 0px 0px 1px #ffff, 0px 0px 1px #ffff;
    font-size: 2rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin: 0;
}

.product-btn-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}
    margin: 0 auto;
}

.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);
}

.back-to-products-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.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: 120px;
    min-width: 28vw;
    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%;
}

.application-buttons-container button::before {
    border-radius: 120px;
}


.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: 82px 25% 1fr;
    border-bottom: 1px solid #2a2a2a;
}

.cell {
    padding: 28px 32px;
}

.cell.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
}

.cell.left {
    font-weight: 600;
    color: #ffffff;
    border-right: 1px solid #2a2a2a;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: 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;
}

.product-table .row {
    grid-template-columns: 60px 200px 1fr;
}

.product-detail-container {
    width: 100%;
    margin-top: 4vh;
    scroll-margin-top: 15vh;
}

.product-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-detail-title-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-detail-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 1000;
    font-size: 2rem;
    letter-spacing: 0.05em;
    text-shadow: 0px 0px 1px #ffff, 0px 0px 1px #ffff, 0px 0px 1px #ffff;
    color: #fff;
    line-height: 1.2;
}

.product-detail-subtitle {
    color: #CACACA;
    font-size: 0.9rem;
    font-weight: 300;
    margin: 0;
}

.product-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin: 2vh 0;
}

.product-detail-content p {
    color: #CACACA;
    font-size: 0.85rem;
    font-weight: 300;
    margin-bottom: 1.5vh;
}



.service-left-container .paragraph-secondary {
    width: 50%;
    margin-bottom: 6vh;

}

.service-right-container .paragraph-secondary {
    width: 50%;
    margin-bottom: 6vh;
}

    .service-right-container svg{
        margin-top: 6vh;
    }

    .service-left-container svg{
        margin-top: 6vh;
    }


/*Info page*/
.info-page{
    width: 50%;
}

.info-page h1{
    font-size: 3rem;
    margin-top: 3vh;
}

.info-page h2{
    font-size: 1.5rem;
    margin-top: 5vh;
}

.info-page p{
    font-size: 0.9rem;
    font-weight: 100;
}

/*Contact Us Popup*/
/* Hidden by default */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;

  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari */
}



/* Visible state */
.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.btn-send-message{
    margin-bottom: 2vh;
    padding-top: 2vh;
    padding-bottom: 2vh;
}

/* Popup Container */
.popup {
  width: 43%;
  padding: 48px 56px;
  border-radius: 28px;
  background: radial-gradient(
      120% 120% at 50% 0%,
      rgba(255, 255, 255, 0.08),
      rgba(0, 0, 0, 0.9)
    ),
    #050505;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 40px 120px rgba(0, 0, 0, 0.9);
  color: #fff;
  position: relative;
}

/* Headings */
.popup h1 {
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 12px;
}

.popup h1 span {
  background: linear-gradient(90deg, #ff7a18, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 14px;
  color: rgba(62, 62, 62, 1);
  margin-bottom: 28px;
}

/* Toggle Buttons */
.toggle-buttons {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 32px;
}

.toggle-buttons button {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
}

.toggle-buttons .active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Form Layout */
.form-row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.field.full {
  margin-bottom: 32px;
}

label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

label span {
  color: #ff7a18;
}

.email-error{
    color: red;
    margin-bottom: 2vh;
}

#contact-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 0;
    width: 100%;
}

.contact-success-title {
    font-size: 40px;
    font-weight: 600;
    margin: 0 0 24px;
}

.contact-success-title span {
    background: linear-gradient(
        90deg,
        #CC9939,
        #B63832,
        #3280B2,
        #CC9939
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbowMove 6s ease infinite;
}

.contact-success-body {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Inputs */
input,
textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 14px 18px;
  color: #fff;
  font-size: 14px;
  outline: none;
}

textarea {
  border-radius: 22px;
  min-height: 120px;
  resize: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* Terms */
.terms {
  display: block;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.popup h1 span {
  background: linear-gradient(
    90deg,
    #CC9939,
    #B63832,
    #3280B2,
    #CC9939
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbowMove 6s ease infinite;
}

@keyframes rainbowMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


@media (min-width: 541px) and (max-width: 1024px) {
    .tablet-mobile-content {
        display: block;
        width: 100%;
    }

    .vision-image-container,
    .core-values-image-container {
        display: none !important;
    }

    .tablet-mobile-content .mission-list-row > div {
        gap: 12px;
        margin-bottom: 5vh;
    }

    .menu-content {
        padding-left: 20px;
    }

    .content-section {
        padding: 80px 40px 100px;
    }

    body > .content-section {
        margin-left: 0;
        width: 100%;
        margin-top: 18vh;
        padding: 40px 40px 100px;
        height: 100%;
        overflow-y: hidden;
        overflow-x: hidden;
    }

    .body-header {
        margin-top: 8vh;
    }

    .product-btn-content {
        padding: 4px 20px;
    }

    .row {
        grid-template-columns: 60px 30% 1fr;
    }

    .product-table .row {
        grid-template-columns: 50px 160px 1fr;
    }

    /* Contact Us popup */
    .popup {
        width: 80%;
        padding: 36px 40px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .form-row {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }

    /* Footer — stack like mobile */
    .footer-top-container {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
        align-items: center;
    }

    .footer-column-container {
        width: 100% !important;
        text-align: left;
    }

    .footer-column-container.w-25 {
        width: 100% !important;
    }

    .footer-logo {
        width: 180px;
    }

    .footer-bottom-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        height: auto;
        gap: 10px;
    }
}

@media (max-width: 540px) {
    .main-container {
        padding: 5vh;
    }

    header {
        padding: 10px 15px;
    }

    .nav {
        width: 100%;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: row;
    }

    .brand img {
        width: 140px;
        height: auto;
    }

    .brand {
        flex: 1;
    }

    .nav-actions {
        width: auto;
        flex-shrink: 0;
        justify-content: end;
        margin-top: 10px;
    }

    .nav-actions .btn-primary{
        display: none;
    }

    .btn-primary {
        padding: 8px 14px;
        font-size: 1.3rem;
    }

    .menu-btn svg {
        width: 20px;
        height: 20px;
    }

.menu-mobile-links{
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.menu-mobile-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-mobile-links a:hover{
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    background-color: rgba(255, 255, 255, 1) !important;
    cursor: pointer;
}

.menu-content{
    padding-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.selected{
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    background-color: rgba(255, 255, 255, 1) !important;

}

.fullscreen-menu.active .menu-mobile-links a {
  opacity: 1;
  transform: translateY(0);
}

.fullscreen-menu.active .menu-mobile-links a:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-menu.active .menu-mobile-links a:nth-child(2) { transition-delay: 0.18s; }
.fullscreen-menu.active .menu-mobile-links a:nth-child(3) { transition-delay: 0.26s; }
.fullscreen-menu.active .menu-mobile-links a:nth-child(4) { transition-delay: 0.34s; }
.fullscreen-menu.active .menu-mobile-links a:nth-child(5) { transition-delay: 0.42s; }
.fullscreen-menu.active .menu-mobile-links a:nth-child(6) { transition-delay: 0.50s; }


    /*Hero section*/

    .hero {
        padding: 40px 10px;
    }

    .hero div{
        width: 100%;
    }

    .hero-title{
        font-size: 2.8rem;
    }

    .hero-tagline{
        font-size: 1.1rem;
    }

    .button-container button{
        font-size: 1.2rem;
    }

    .services-container {
        padding-left: 0px;
        padding-right: 0px;
        padding-bottom: 100px;
    }

    .service-left-container .paragraph-secondary {
        font-size: 1.3rem;
        width: 100%;
    }

    .service-right-container .paragraph-secondary {
        font-size: 1.3rem;
        width: 100%;
    }

    .paragraph-primary {
        font-size: 1.4rem;
    }

    .paragraph-secondary{
        font-size: 1.3rem;
    }

    .section-header{
        font-size: 1.6rem;
    }

    .get-in-touch-container{
        padding-left: 0;
        padding-right: 0;
        padding-top: 7vh;
    }

    .get-in-touch-secondary-container  h3{
        font-size: 1.5rem;
        text-align: center;
    }

    .get-in-touch-secondary-container .paragraph-secondary{
        font-size: 1.3rem;
    }

    .content-section{
        margin-left: 0;
        padding: 4vh;
        margin-top: 15vh;
        overflow-y: hidden;
        overflow-x: hidden;
        height: 100%;
    }

    /*footer*/
    .footer-top-container {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
        align-items: center;
    }

    .footer-column-container {
        width: 100% !important;
        text-align: left;
    }

    .footer-column-container.w-25 {
        width: 100% !important;
    }

    .footer-paragraph {
        width: 100%;
        margin-top: 10px;
    }

    .footer-logo {
        width: 180px;
    }

    .footer-bottom-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        height: auto;
        gap: 10px;
    }

    .footer-column-container p {
        font-size: 14px;
        line-height: 1.4;
    }

    .footer-column-container a{
        font-size: 14px;
        line-height: 1.4;
    }

    .footer-section-header {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .mission-list-container .mission-list-row{
        gap:10vh
    }

    .image-analytics p, .image-mag p, .image-waves p{
        font-size: 1.2rem;
    }

    .application-buttons-container-mobile div{
        gap: 4vh;
        height: 60vh;
    }

    .application-buttons-container-mobile 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%;
    }
    
    .hero-tagline{
        max-width: 100%;
    }

    .row {
        grid-template-columns: 60px 35% 1fr;
    }

    .cell.icon svg {
        width: 48px;
        height: 48px;
    }

    .header-secondary{
        font-size: 1.3rem;
    }

    .logo-circle {
        position: relative;
        height: 8vh;
        width: 8vh !important;
        border-radius: 50px;
        background: #000;
    }

    .integrity-logo {
        box-shadow: 0px 0px 113.3px -11px rgba(193, 140, 53, 1);
    }

    .integrity-logo::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 1px;
        border-radius: 50px;
        background: linear-gradient(156.05deg, #000000 41.64%, #C18C35 94.21%);
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

    .innovation-logo {
        box-shadow: 0px 0px 113.3px -11px rgba(179, 54, 48, 1);
    }

    .innovation-logo::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 1px;
        border-radius: 50px;
        background: linear-gradient(227.89deg, #000000 27.6%, #B33630 101.14%);
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

    .adaptability-logo {
        box-shadow: 0px 0px 113.3px -11px rgba(214, 84, 68, 1);
    }

    .adaptability-logo::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 1px;
        border-radius: 50px;
        background: linear-gradient(19.98deg, #000000 63.33%, #F36E56 105%);
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

    .global-logo {
        box-shadow: 0px 0px 113.3px -11px rgba(55, 138, 188, 1);
    }

    .global-logo::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 1px;
        border-radius: 50px;
        background: linear-gradient(291.34deg, #000000 27.27%, #378ABC 85.96%);
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

    .paragraph-values-secondary {
        font-size: 1.1rem;
        font-weight: 100;
    }

    .info-page{
        width: 90%;
    }

    /*Contact Us popup*/
    .popup {
        width: 90%;
        padding: 4vh;
        margin: 2vh;
    }

    .form-row {
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-bottom: 24px;
    }

}


