@font-face {
  font-family: 'JaapokkiEnchance';
  src: url('https://showmevirtual.com/fonts/Jaapokkienchance-Regular.otf') format('opentype');
}
@font-face {
  font-family: 'Roboto-Black';
  src: url('https://showmevirtual.com/fonts/Roboto-Black.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto-Bold';
  src: url('https://showmevirtual.com/fonts/Roboto-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto-Medium';
  src: url('https://showmevirtual.com/fonts/Roboto-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto-Thin';
  src: url('https://showmevirtual.com/fonts/Roboto-Thin.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto-Regular';
  src: url('https://showmevirtual.com/fonts/Roboto-Regular.ttf') format('truetype');
}

.gs {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}

/* Loading screen styles */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 3s ease, visibility 3s ease;/* Smooth fade-out */
}

.loading-gif {
    width: 25%; /* Adjust size as needed */
    height: 25%;
    max-width: 250px;
    object-fit: contain;
    scale: 1.5;
    transition: transform 4s ease;
}

/* Hidden state for the loading screen */
#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-gif.anim {
    transform: scale(2) translate(0, -50%); 
}


body {
    font-family: Arial, sans-serif;
    background-color: #000000;
    width: 100%;
}

body, ul {
    margin: 0;
    padding: 0;
}

button {
    margin: 0 auto;
}

h1 {
  font-family: 'Roboto-Bold', sans-serif;
  color: #ffffff;
  font-size: 4.35vw;
  line-height: 1.1;
  margin: 0 auto;
}

h2 {
  font-family: 'Roboto-Black', sans-serif;
  color: #ffffff;
  font-size: min(calc(1vw + .7em));
  margin: 0 auto;
  
}

.h2span {
  font-family: 'Roboto-Bold', sans-serif;
  color: #ffffff;
  font-size: min(calc(1vw + .6em));
  text-align: center;
  margin: 0 auto;
  margin-top: 5px;
}

h3 {
  font-family: 'Roboto-Thin', sans-serif;
  color: #ffffff;
  font-size: min(calc(2vw + .275em), 18.5px);
  text-align: center;
  margin: 0 auto;
  margin-top: 5px;
  white-space: nowrap;
  max-width: 100%;
}

.h3span {
  font-family: 'Roboto-Bold', sans-serif;

}

p {
  margin: 0 auto;
  color: #ffffff;
    font-size: min(calc(2vw + .2em), 18px);
}

.link {
  color: white;
  border-bottom: 2px solid blue;
}

/* NAV */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 2%;
    background-color: #000000;
    font-family: 'Roboto-Black', sans-serif;
    position: relative;
    z-index: 1000; 
    font-size: min(calc(.9vw + .5em), 20px);
}

.nav-gif {
    position: absolute;
    bottom: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    transition: opacity 0.5s;
}

/* Topnav */
.topnav {
    background-color: #000000;
    width: 100%;
    z-index: 998;
    display: flex;
    padding: 5px 0px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid white;
    position: fixed;
    top: 0;
    left: 0;
    height: 30px;
}

.topnav img.logo {
    height: 27px;
    margin-top: 1px;
    padding-left: 10px;
    cursor: pointer;
}



/* Sidenav */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    overflow-x: hidden; /* Prevent horizontal overflow */
    transition: 0.5s;
    padding-top: 40px;
    box-shadow: 0 0 10px white, 0 0 15px white, 0 0 20px white;
    background-image: url('https://showmevirtual.com/images/ui/SMV-Black-Fancy.jpg'); background-attachment: fixed; background-position: center; background-size: cover;
    background-attachment: fixed; 
    background-position: center; 
    background-size: cover;
}

.sidenav .nav-links {
    border-top: 2px solid white;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column; /* Stack links vertically */
}

.sidenav .nav-links li {
    margin: 0px 0;
}

.sidenav .nav-links a {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: white;
    padding: 16px 20px;
    display: block;
    transition: 0.3s;
}

.sidenav .nav-links a:hover {
    background-color: white;
    color: black;
}

.closebtn {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 36px;
    cursor: pointer;
  color: white;
    background-color: rgba(0,0,0,0);
    border: 0px;
    margin-top: -4px;
}

.closebtn:hover {
  color: #ffcc00;

}

.logo {
    height: 8vw;
    padding: 4px; 
    margin-right: 7%;
    align-self: flex-start;
    align-self: center;
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
}

.nav-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1.5vw;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #ffffff;
    padding: 0px 5px;
    transition: color 3s;
}

.nav-links a.active {
    border-bottom: 2px solid #ffcc00;
    color: #9f9f9f;
}

.nav-links a:hover {
    background-color: #555555;
}

.left-nav, .right-nav {
    display: flex;
    align-items: center;
}

.right-nav {
    gap: 10px;
    margin-right: 1%;
}

/* Additional styles for the new animated underline and brand logo section */
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background-color: #ffcc00;
    transition: width 0.75s ease-in-out;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hamburger Menu for Small Screens */
.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ffcc00;
    scale: 150% 100%;
}

.hamburger:hover {
    color: white;
}

@media (max-width: 600px) {
    nav {
        font-size: calc(1.55vw + .5em);
    }
    .nav-links {
        display: none; /* Hide links by default */
        flex-direction: column;
        position: absolute;
        left: 0;
        width: 100%;
        padding: 10px 0px;
        gap: 0;
    }
    
    .nav-links a {
        padding: 2% 0px;
        text-align: center;
        display: block;
        transform: translateX(-50%);
        left: 50%;
    }
    
    .nav-links.show {
        display: flex; /* Show when toggled */
    }
  
    .nav-links a.active {
        border-bottom: 2px solid #ffcc00;
        color: #9f9f9f;
    }

    .nav-links a:hover {
        background-color: #555555;
    }

    .hamburger {
        display: block; /* Display hamburger icon */
    }
}





/* HERO VIDEO DIV */
.hero {
    position: relative;
    overflow: hidden;
    height: 50vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#heroVideo {
    position: absolute;
    top: 20%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;    /* Make it occupy the full width of its container */
    height: 75vh;   /* Set height to 50% of the viewport height */
    display: block; /* Remove any default spacing */
    object-fit: cover; /* This ensures the video covers the entire area */
    object-position: center; /* Center the video content */
    z-index: -1;
    transform: translate(-50%, -20%);
}

.hero-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.5) !important;
    padding: 5px 10px 10px 10px;
    width: auto;  /* Reduced width */
    max-width: 600px;
    border: 2px solid white; 
    border-radius: 7px;
    box-shadow: 0 0 25px white, 0 0 25px white;
}

.hero-text p {
    font-size: min(calc(1vw + .6em));
}

.hero-buttons {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    z-index: 1;  /* To keep buttons above video */
}

.hero-buttons button {
    border: none;
    padding: 4px 10px 4px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 20px;  /* Added rounded corners */
    border: 2px solid white; 
    border-radius: 33px; 
    box-shadow: 0 0 25px white, 0 0 25px white;
    font-family: 'Roboto-Black', sans-serif;
    font-size: min(calc(1vw + .6em), 18px);
}

.hero-b1 {
    background-color: rgba(255, 140, 0, .7);
}

.hero-b1:hover {
    background-color: rgba(0, 255, 255, .7);
}

.hero-b2 {
    background-color: rgba(255, 225, 0, .7);
}

.hero-b2:hover {
    background-color: rgba(25, 205, 55, .7);

}






/* case studies */
.video-cover {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: auto;
    max-height: 500px;
    max-width: 960px;
    margin: 0px auto;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 2px solid white; 
    border-radius: 6vw;
    box-shadow: 0 0 25px white, 0 0 25px white;
}

.cover-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/* General Styling */
.case-studies {
  width: 90%;
  max-width: 960px;
  /* overflow: hidden; */
  margin: 0 auto;
  margin-top: 15px;
  margin-bottom: 35px;
}

.content-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
  color: #333;
}

/* Individual Case Study */
.case-study {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 200px;
  width: 100%;
  overflow: hidden;
  margin: 10px 0;
  background-color: transparent;
  border-radius: 40px;
}

.case-study:hover {
  box-shadow: 0 0px 15px white, 0 0px 30px white;
}

.case-study:hover .case-study-background {
    background-color: rgba(255,255,255, .33);
    background-blend-mode: lighten;
  overflow: hidden;
      

}

.case-study-background.odd {
  position: absolute;
  top: 0;
  left: 0;
  width: 133%; /* Wider to allow parallax movement */
  height: 100%;
  background-size: cover;
  background-position: center;
}

.case-study-background.even {
  position: absolute;
  top: 0;
  right: 0;
  width: 133%; /* Wider to allow parallax movement */
  height: 100%;
  background-size: cover;
  background-position: center;
}

.case-study-content-container {
  position: relative;
  z-index: 2; /* Ensures text and logo appear above background */
  display: flex;
  width: 90%; /* Adjust width if needed */
}

.text-container,
.logo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

  /* Text Container */
.text-container {
  padding: 1.5% 1.5%;
  color: #fff; /* White text for readability */
  z-index: 1; /* Above the overlay */
  position: relative;
}

.text-container-inner {
  color: #fff; /* White text for readability */
  z-index: 1; /* Above the overlay */
  position: relative;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
  border-radius: 15px;
  white-space: nowrap;
  width: 100%;
}

.text-container h2 {
  margin: 0;
  font-size: min(calc(2vw + 0.8em), 32px);
  line-height: 1.2;
}

.text-container p {
  margin: 0;
  font-size: min(calc(1.5vw + 0.4em), 20px);
  line-height: 1.4;
}

.logo-container {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.8);
  height: 125px;
  width: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); /* Optional: Subtle shadow */
}

/* Overlay for better readability */
.case-study::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.logo-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.case-study h2, .case-study p {
    padding: 0 10px;
}

.case-study.odd .case-study-content-container {
  align-items: center;
  justify-content: start;
}

.case-study.even .case-study-content-container {
  align-items: center;
  justify-content: end;
}

.case-study.odd .text-container {
  text-align: left;
}

.case-study.even .text-container {
  text-align: right;
}



/* Case Studies Grid */
.case-studies-grid {
    display: grid;
    gap: 1vw;
    grid-template-columns: 1fr 1fr; /* Responsive columns */
    width: 90%;
    max-width: 960px;
    margin: 20px auto;
}

.grid-item {
    padding: 5px;
    color: #ffffff;
    text-align: center;
    scale: 1;
}

.grid-item img {
    width: 100%;
    border-radius: 4%; /* rounded corners */
}

.grid-item:hover {
    background-color: #ffcc00;
      border-radius: 4%; /* rounded corners */
    scale: 1.05;
}

/* Breakpoint for screens 1200px and above (3 columns) */
@media (min-width: 650px) {
    .case-studies-grid {
        grid-template-columns: 1fr 1fr 1fr; /* 3 columns */
    }
}


#pwrflx {
  margin-top: 0px;
  margin-left: 5%;
}

.powerlogo {
    transition: transform 0.2s ease-in-out;
}
.plscale {
    transition: transform 0.2s ease-in-out;
}

.powerlogo:hover {
    animation: cycleBackground 5s infinite; /* For cycling background color */
    transform: scale(1.02); /* Slightly scale the wrapper */
}
.plscale:hover {
    transform: scale(1.15); /* Slightly scale the wrapper */
}

@keyframes cycleBackground {
    0% {
        background-color: rgba(255, 204, 0, .25); /* Bright yellow */
        box-shadow: 0 0px 20px rgba(255, 204, 0, 1), 0 0px 40px rgba(255, 204, 0, 1);
    }
    20% {
        background-color: rgba(255, 204, 0, .25); /* Bright yellow */
        box-shadow: 0 0px 20px rgba(255, 204, 0, 1), 0 0px 40px rgba(255, 204, 0, 1);
    }
    40% {
        background-color: rgba(255, 140, 0, .25); /* Orange */
        box-shadow: 0 0px 20px rgba(255, 140, 0, 1), 0 0px 40px rgba(255, 140, 0, 1);
    }
    60% {
        background-color: rgba(50, 50, 230, .25); 
        box-shadow: 0 0px 20px rgba(50, 50, 230, 1), 0 0px 40px rgba(50, 50, 230, 1);
    }
    80% {
        background-color: rgba(255, 69, 0, .25); /* Red-orange */
        box-shadow: 0 0px 20px rgba(255, 69, 0, 1), 0 0px 40px rgba(255, 69, 0, 1);
    }
    100% {
        background-color: rgba(255, 204, 0, .25); /* Back to bright yellow */
        box-shadow: 0 0px 20px rgba(255, 204, 0, 1), 0 0px 40px rgba(255, 204, 0, 1);
    }
}

/* CARD */
.card-container {
    display: flex;
    gap: 2rem;  /* spacing between cards */
    justify-content: center;
    flex-wrap: wrap; /* allows the cards to wrap to next row on smaller screens */
    padding: 0rem 1rem;
    perspective: 1000px;
}

.card {
    text-decoration: none;
    color: inherit; /* Prevents the link from applying default blue color and underline */
    border: 2px solid #e0e0e0;
    border-radius: 8px; /* rounded corners */
    overflow: hidden; /* Makes sure the child img with border-radius doesn't spill out */
    transition: transform 0.3s; /* Smoothens the hover effect */
    display: inline-block;
    width: 45%; /* Makes each card roughly a quarter of the container's width minus the gap */
    max-width: 180px;
    min-width: 100px;
    pointer-events: auto;
    transform-style: preserve-3d;
    height: 300px;
}

.card:hover {
    transform: scale(1.03); /* Slight upward motion on hover */
    box-shadow: 0 0px 25px rgba(255, 204, 0, 1), 0 0px 50px rgba(255, 204, 0, 1);
    background-color: rgba(255, 204, 0, .11);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 1s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
}

.card-back {
    padding: 5px;
    transform: rotateY(180deg);
}

.card.flipped .card-front {
    transform: rotateY(180deg);
}

.card.flipped .card-back {
    transform: rotateY(0);
}

.card img {
    width: 80%;
    padding: 10% 0 5% 0;
}

.card h3 > .h3span {
    margin-bottom: 100px;
}

.card button {
    width: 50%;
    font-size: min(calc(1vw + .2em), 12px);
    font-weight: bold;
    pointer-events: auto;
    margin-top: 12px;
    margin-bottom: 8px;
    padding: 5px 5px;
    background-color: rgba(255, 204, 0, .75);
    border: none;
    cursor: pointer;
    color: #000;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.card button:hover {
    background-color: #ffcc00;
    box-shadow: 0 0px 20px white, 0 0px 40px white;
}

.card-content {
 text-align: center;
  color: #ffffff;
  font-size: 2vw;
  line-height: 1;
  margin: 0 auto;
}

.card-content p {
 padding: 0px 5px;
}

.aboutustxt {
  text-align: left;
  max-width: 960px;
}




/* MEDIA QUERY */
/*@media screen and (max-width: 768px) {
  .right-nav {
      gap: 10px;
      } 
    .nav-links a {
      font-size: 0.8rem;
      padding: 5px 5px;
      }
}


@media screen and (max-width: 435px) {
  .right-nav {
      gap: 2px;
      } 
  .nav-links a {
      font-size: 0.6rem;
      padding: 5px 5px;
      }
    .card {
      width: calc(50% - 1rem);
  }
}

@media screen and (max-width: 350px) {
  .nav-links a {
      font-size: 0.6rem;
  }
  .nav-links {
      gap: 0px;
  }
  .card {
      width: 100%;  /* 1 card in a row */
/*  }
} */


/* Brand logo/icon */
.brand-logo {
    position: relative;
    z-index: 3; /* Above the overlay */
    width: 100%;
    height: auto;
}

.brand-icon-wrapper {
    position: relative; /* Establish stacking context */
    display: inline-block;
    margin-top: -20px;
    height: auto;
    pointer-events: auto; /* Allow interaction */
}

.brand-overlay {
    background-image: url('https://showmevirtual.com/images/home/ShowMeVirtual-Lightbulb-On.png');
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
    background-size: cover;
    background-position: top;
    z-index: -1; /* Ensure it's behind the icon */
    pointer-events: none; /* Prevent blocking interaction */
    transition: transform 0.3s ease, opacity 0.01s linear;
    opacity: 0;
}

.brand-icon {
    position: absolute;
    z-index: 2; /* Ensure it's above the overlay */
    width: 48%;
    margin: 32% 26% 25% 26%;
    display: block;
    transition: transform 0.3s ease; /* Optional hover effect */
    opacity: 1;
}



.brand-icon-wrapper:hover .brand-overlay {
    transform: scale(1.2);
    opacity: .65;
}

.brand-icon-wrapper:hover .brand-bulb {
    transform: scale(1.3); /* Optional zoom effect */
    opacity: 1;
}

.brand-icon-wrapper:hover .brand-icon {
    transform: scale(1.4); /* Optional zoom effect */
}



.brand-bulb {
    opacity: .33;
    z-index: 20;
    transition: transform 0.3s ease;
}


.ctabtn {
  scale: 1.2;
   width: 500px;
}

/* Brands section with animated logos */
.brands {
    text-align: center;
    color: #ffffff;
    width: 100%;
    pointer-events: none;
}

.logo-slider {
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.logo-track {
    display: flex;
    gap: calc(100% / 24); /* Equal gap based on document size */
    animation: slide 10s linear infinite;
    pointer-events: none;
    margin: 20px 0px;
}

.logo-track img {
    height: calc(12vw + 3em);
    pointer-events: auto;
}

/* Reverse animation for the bottom row */
.logo-slider.reverse .logo-track {
      display: flex;
    gap: calc(100% / 24); /* Equal gap based on document size */
    pointer-events: none;
    margin: 20px 0px;
    animation: slide-reverse 10s linear infinite reverse;
  padding-bottom: 10px;
}

/* Keyframes for continuous scrolling */
@keyframes slide {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(25%); } /* Moves across the width of both sets */
}

@keyframes slide-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(25%); }
}


.#smv-main-logo {
  scale: 1;
}

#smv-main-logo:hover {
    transform: scale(1.15);
}

.#smvlogo {
  scale: 1;
}

#smvlogo:hover {
    transform: scale(1.15);
}

/* Case Studies and Footer with Full Width Background */
.footer {
    background-image: url('https://showmevirtual.com/images/ui/SMV-Sherpa-CCSA.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: max(calc(15vw + 2em), 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 25% 40% 28%;; /* Three columns */
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black background */
    border-radius: 15px; /* Rounded corners */
    padding: 10px 0;
    width: 90%;
    max-width: 960px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Optional shadow */
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.footer-row img {
    max-width: 35px;
    width: calc(4vw + .2em);
}

.footer-left img {
    max-width: 150px;
    width: min(calc(10vw + 2em), 200px);
}

.footer-center {
  scale: 1;
}

.footer-center:hover {
  transform: scale(1.11);
}

.footer-center p {
    font-family: 'Roboto-Regular', sans-serif;
    font-size: min(calc(1vw + .4em), 20px);
}

.footer-right p {
    font-family: 'Roboto-Regular', sans-serif;
    font-size: min(calc(1vw + .4em), 20px);
}

.footer-center img {
    max-width: 225px;
    width: min(calc(15vw + 3em), 300px);
}

.footer-right a img {
   scale: 1;
    margin: .5vw;
    transition: transform 0.2s ease-in-out;
}

.socials-row {
  position: absolute;
  margin-top: -1%;
}

.footer-right a img:hover {
    transform: scale(1.25); /* Enlarge icons on hover */
    border: 2px solid #ffcc00;
    border-radius: 50%;
    box-shadow: 0 0px 20px #ffcc00;
}





.content-shrinker {
    width: 90%;  /* Full width */
    height: auto;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    align-items: start;
    justify-content: center;
    padding: 5% 5%;
}
.content-shrinker-container {
    background-color: rgba(0, 0, 0, 0.69);
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
}



.casestudies {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 400px;
    height: calc(15vw + .3em);
    padding: 20px;
}




/* PRO SPORTS PARTNER */
.prosportspartner {
    background-image: url('https://showmevirtual.com/images/home/SMV-smile-bg.jpg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 25% center;
    display: flex;
    justify-content: flex-end;
    align-items: start;
    min-height: calc(30vw + 5em);
    height: auto;
    padding: 40px 3% 20px 20px;overflow: hidden;
    min-width: 300px;
}

.prosports-container {
    max-width: 1200px;
    width: 100%;
    text-align: right;
    color: white;
}

.sports-logo {
    flex: 1 1 0;
    max-width: calc(6vw + 1em);
    height: auto;
    cursor: pointer;
}

.sports-logos-container {
    display: flex;
    flex-wrap: nowrap;
    gap: calc(2vw + .5em);
    justify-content: space-between;
    align-items: center;
    flex: 1; /* Take equal space */
}

.exits-acquisitions {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: calc(60% + 4em);
    flex: 1; /* Take equal space */
    margin-left: 13%;
}

.flex-wrapper-sports {
    display: flex;
    justify-content: center;
  align-items: end; flex-direction: column;
      gap: 0px;
}

.interactive-container {
    display: flex;
    align-items: end;
    justify-content: end;
    position: relative;
    width: 70%;
    min-width: 300px;
}

#lightbulb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45%;
    margin-right: 0;
    z-index: 9;
    margin-top: calc(-3vw - .5em);
}

#lightbulb img {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease-in-out;
}

#machine {
    position: relative;
    width: 25%;
    z-index: 10;
      margin-bottom: -3px;
    margin-right: -10%;
}

#machine img {
    width: 100%;
    height: auto;
}

#explode-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11;
    pointer-events: none;
}
















/* Slider container */
.slider-container {
    display: flex;
    flex-direction: row;
    max-width: 960px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  margin: 0 auto;
  padding-bottom: 20px;
}

.slider-wrapper {
    flex: .6;
    width: 60%;
    flex-direction: row;
    display: flex;
    margin-right: 5%;
}

.slider {
    width: 80%;
    padding: 10%;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}


.outline-image {
    position: absolute;
    pointer-events:none;
    top: 0;
    left: 0;
    scale: 1.25;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.outline-image .active {
    opacity: 1;
    transform: scale(1.2);
}
.image-button {
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.image-button:hover {
    transform: scale(1.1);
}

.image-button:hover + .outline-image {
    opacity: 1;
    transform: scale(1.2);
}



.ar-slider-option img, .vr-slider-option img, .tso-slider-option img {
    width: 90%;
    margin-left: 5%;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-height: 150px;
    object-fit: cover;
}

.ar-slider-option.selected img, .vr-slider-option.selected img, .tso-slider-option.selected img {
    transform: scale(1.2); /* Scale when selected */
    opacity: 1; /* Full opacity when selected */
}






.slider-text {
  text-align: center;
  font-size: min(calc(1.5vw + .2em), 14px);
    font-family: 'Roboto-Bold';
}


/* Stats container */
.stats-container {
    display: flex;
    flex-direction: column;
    flex: .4;
    padding-left: 10px;
    width: 40%;
}

.stats-container label {
  color: white;
  font-weight:bold;
  z-index: 3;
  text-align: right;
  position: relative;
  font-size: min(calc(2vw + .25em), 14px);
}

.stat-bar {
    height: 12.5px;
    position: relative;
    margin-bottom: .25%;
    border-radius: 5px;
    z-index: 2;
    height: min(calc(1vw + .1em), 12px);
}

.stat-bar div {
    height: 100%;
    transition: width 0.5s ease; 
}.image-button {
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* Scale and opacity on hover or click */
    .image-button:hover,
    .image-button.selected {
        transform: scale(1.2);
        opacity: 1;
    }

    /* Option button styles */
    .selected {
        transform: scale(1.2);
        opacity: 1;
    }


#ar-stat-bar1, #vr-stat-bar1, #tso-stat-bar1 {
    background: #4caf50;
    width: 0%;
    border-radius: 5px;
    box-shadow:0 25px 33px #4caf50, 0 25px 33px #4caf50;
}

#ar-stat-bar2, #vr-stat-bar2, #tso-stat-bar2 {
    background: #2196f3;
    width: 0%;
    border-radius: 5px;
    box-shadow: 0 20px 33px #2196f3, 0 20px 33px #2196f3;
}

#ar-stat-bar3, #vr-stat-bar3, #tso-stat-bar3 {
    background: #ff9800;
    width: 0%;
    border-radius: 5px;
    box-shadow: 0 15px 33px #ff9800, 0 15px 33px #ff9800;
}












/* CONTENT PAGES */
.content-title {
    margin: 0px 5%;
}

.contenttitle-underline {
    border-bottom: 2px solid #ffcc00;
}

.virtualtour {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 20px 5%;
    position: relative;
}

.videosection {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    max-width: 600px;
    width: 90%;
    position: relative;
    aspect-ratio: 16 / 9; /* Maintains the 16:9 aspect ratio */
}

.videoIframe {
    width: 100%;
    height: 100%;
}



.fullscreen-toggle {
    position: absolute;
    right: 2px; /* Adjust based on padding needs */
    bottom: 2px; /* Adjust based on padding needs */
    background-color: rgba(0, 0, 0, .25);
    border: 1px solid rgba(0, 0, 0, .25);
    color: white;
    font-size: 14px; /* Adjust size as needed */
    line-height: 14px; /* Height to match content size */
    padding: 0px;
    width: 24px; /* Square dimensions */
    height: 23px; /* Square dimensions */
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0; /* Square edges */
}
.fullscreen-toggle span {
    transform: rotate(45deg);
}
.fullscreen-toggle:hover {
    color: #ffcc00;
    border: 1px solid #ffcc00;
}

.content-section {
    margin: 0px 5%;
    width: 90%;
    color: white;
}

.content-fullwidthtext {
    margin: 0px 5%;
    width: 90%;
    color: white;
}


/* Main layout for left and right columns */
.image-content-section {
    display: flex;
    flex-wrap: wrap; /* Enables columns to wrap onto new lines on smaller screens */
    width: 90%;
    margin: 22px 5%;
}

.swiper-left-column {
    flex: 1 1 50%; /* 60% width by default */
    max-width: 50%; /* Limit to 60% width on larger screens */
}

.swiper-right-column {
    flex: 1 1 calc(50% - 20px); /* 40% width by default */
    max-width: calc(50% - 20px); /* Limit to 40% width on larger screens */
    padding: 0px 0px 0px 20px;
    display: flex;
    justify-content: center; /* Centers content horizontally */
    flex-direction: column; /* Centers content vertically within column */
}

.image-content-section-locked {
    display: flex;
    flex-wrap: wrap; /* Enables columns to wrap onto new lines on smaller screens */
    width: 90%;
    margin: 0px 5%;
    flex-direction: row;
        align-items: center;

}
.swiper-left-column-swapped-locked {
    flex: 1 1 60%; /* 60% width by default */
    max-width: 650px; /* Limit to 60% width on larger screens */ 
}
.swiper-right-column-swapped-locked {
    flex: 1 1  37%; /* 40% width by default */
    max-width: 250px; /* Limit to 40% width on larger screens */
    padding: 6px 0px 0px 20px;
    display: block;
    margin: 0 auto;
    align-items: end;
    text-align: right;
    justify-content: center; /* Centers content horizontally */
    flex-direction: column; /* Centers content vertically within column */
}


/* Full width for columns on smaller screens */
@media (max-width: 768px) {
    .image-content-section {
        flex-direction: column;
        align-items: flex-start;
    }
    .swiper-left-column {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 0px 0px 0px 0px;
    }
    .swiper-right-column {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 20px 0px 0px 0px;
    }
}

/* Swiper container styling for 16:9 aspect ratio */
.swiper-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Ensure the slides fill the container and are centered vertically */
.swiper-wrapper {
    display: flex;
    align-items: center; /* Center slide content vertically */
    height: 100%; /* Full height for slides */
}

.swiper-slide {
    width: 100%;
    height: 100%; /* Ensures the slide takes full container height */
    display: flex;
    justify-content: center;
    align-items: center; /* Centers the image vertically */
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Optional styling for Swiper controls */
.swiper-pagination {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    z-index: 1;
}

/* Style for pagination bullets */
.swiper-pagination-bullet {
    background-color: #ffffff !important; /* Set bullet color */
    opacity: .25 !important; /* Set bullet opacity */
}
.swiper-pagination-bullet:hover {
    background-color: #ffcc00!important; /* Set bullet color */
    opacity: 1 !important; /* Set bullet opacity */
}

/* Style for active pagination bullet */
.swiper-pagination-bullet-active {
    background-color: #ffffff !important; /* Color for active bullet */
    opacity: 1 !important;
}
.swiper-pagination-bullet-active:hover {
    background-color: #ffcc00 !important; /* Color for active bullet */
    opacity: 1 !important;
}


/* Center Swiper navigation arrows vertically */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff !important;
    position: absolute;
    top: 0%; /* Move to the middle of the container */
    transform: translateY(-50%); /* Center vertically */
    z-index: 1;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #ffcc00 !important; /* Optional: Change color on hover */
    opacity: 1; /* Add a subtle opacity effect on hover */
}





/* PRO SPORTS PARTNER */
.manufacturingpartner {
    background-image: url('https://showmevirtual.com/images/home/SMV-Aerofil-AR-Experience.jpg');
    background-color: rgba(0, 0, 0, 0.45);
    background-blend-mode: darken;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.manufacturing-container {
    max-width: 1200px;
    width: 90%;
    text-align: left;
    color: white;
}

.section-title {
    font-family: 'Roboto-Black', sans-serif;
    font-size: calc(2vw + 1em);
    margin-bottom: 50px;
    color: #ffffff;
}

.flex-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between the two containers */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    flex-direction: row;
}

.logos-container {
    display: flex;
    flex-wrap: nowrap;
    gap: calc(4vw + .3em);
    justify-content: space-between;
    align-items: center;
    flex: 1; /* Take equal space */
}

.industrial-logo {
    flex: 1 1 calc(33% - 15px); /* Adjust width for 4 logos per row with gaps */
    max-width: calc(6vw + 1em); /* Logos will resize responsively */
    height: auto;
}

.video-container {
    flex: 1; /* Take equal space */
    display: flex;
    align-items: center; /* Center video vertically */
    justify-content: center; /* Center video horizontally */
    margin-left: 100px;
}

.industrial-video {
    width: 100%;
    height: auto;
    max-width: 500px; /* Limit max width of the video */
    border: 2px solid white;
    border-radius: 8px;
    box-shadow: 0 0px 20px white;
    object-fit: cover;
}






.explode {
  .absolute-center(500px, 500px);
}

.pixellate-lock {
  img {
    visibility: visible !important;
  }
  .pixellate-pixel {
    transform: none !important;
    opacity: 1 !important;
  }
}

.absolute-center(@w; @h) {
  position: absolute;
  top: 20; bottom: 0;
  left: 0; right: 0;
  width: @w; height: @h;
  margin: auto;
}






.ar-section {
    background-size: cover;
    background-position: 40%;
    background-attachment: fixed;  /* Ensure parallax effect works */
    padding: 1% 5% 2% 5%;
    color: white;
}

.ar-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 960px;
    margin: 0 auto;
}

.ar-text {
    font-size: calc(3vw + .3em);
}

.vr-section {
    background-size: cover;
    background-position: right;
    background-attachment: fixed;  /* Ensure parallax effect works */
    padding: 1% 5% 2% 5%;
    color: white;
}

.vr-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 960px;
    margin: 0 auto;
}

.vr-text {
    margin-left: 5%;
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 42px 0px 12px 0px;
    box-shadow: 0 0 20px white, 0 0 20px white;
}

.service-video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 42px 0px 12px 0px;
    box-shadow: 0 0 20px white, 0 0 20px white;
}

.fixed-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 50px 0;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}


.centered-list {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  font-size: min(calc(1.2vw + .3em), 14px);
}

.centered-list ul {
    list-style: none;
}





.parallax-section {
    background-size: cover;
    height: auto;
    background-repeat: no-repeat;
    background-position: '20% 0px'; /* Start position */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: -5px;
    overflow: hidden;
}

.parallax-content {
    position: relative;
    z-index: 10;
    color: white;
    text-align: left;
    padding: 15px 0px 15px 0px;
    border-radius: 10px;
}


#final-image {
    display: none;
    position: absolute; /* Ensures correct positioning */
    z-index: 5;
    box-shadow: 0 4px 20px white;
    border-radius: 15px;
}




input[name="_honey"] {
    display: none;
}


.form-container {
            width: 100%;
            max-width: 600px;
            margin: auto;
            background-color: rgba(255,255,255,.75);
            padding: 10px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .form-container label {
            display: block;
            color: black;
        }

        .form-container input,
        .form-container textarea {
            width: 95%;
            padding: 3px;
            margin-bottom: 5px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        .form-container button {
            background: #007bff;
            color: #fff;
            border: none;
            padding: 6px 10px;
            cursor: pointer;
            border-radius: 4px;
        }

        .form-container button:hover {
            background: #0056b3;
        }

.text-and-image-container {
    flex: 50%; 
    position: relative; 
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for contrast */
    padding: 4px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);

}

.text-and-image-container:hover {
    box-shadow: 0 0 15px 5px white, 0 0 15px 5px white; /* Adds white shadow */
}



/* Overlay Text Styling */
.overlay-text {
    width: 100%;
    max-width: 400px;
    color: white;
    text-align: left;
    pointer-events: none;
    position: relative;
    z-index: 2;
    margin-top: 0px;
}

.overlay-text-inner {
    margin-bottom: 62.5px; 
}

.overlay-text h2 {
    margin: 10px 0;
    font-size: 1.8em;
}

.overlay-text p {
    margin: 10px 0;
    font-size: 1em;
}

.itlc {
    display: block;
    font-size: 1.2em;
    color: #ffffff;
    font-style: italic;
    margin: 10px 0;
    text-align: center;
    margin-bottom: 80px;
}

.itlc2 {
    color: #ffcc00;
  text-align: center;
}

/* Styling for the image */
.content-image {
    position: absolute;
    width: 80%;
    max-width: 300px;
    border-radius: 8px;
    opacity: .6;
    align-self: center;
    scale: 1;
    left: 11%;
    top: 32%;
    z-index:1;
  }

.content-image:hover {
    transform: scale(1.25);
    opacity: 1;
    top: 25%;
}

.contact-ar-text {
    margin-right: 5%;
}

  .reorderslider .stats-container {
    padding-right: 7.5%;
  }

.nonreorder {
  margin-right: 5%;
}



#vidsec {
    isplay: flex;
    align-content: center;
    justify-content: center;
}
.vidsec-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;

}

.vidsec-grid .twotwo {
    width: calc(50% - 10px);
    height: 200px; /* Adjust height as needed */
}

.vidsec-grid .one {
    width: calc(70% - 10px);
    height: 325px; /* Adjust height as needed */
    margin: 0 auto;
}

.vidsec-grid .onetwo {
    width: 100%;
    height: 205px; /* Adjust height as needed */
    margin: 0 auto;
}









/* Responsive Styling */
@media (max-width: 768px) {
    .manufacturing-container {
    text-align: center;
    }
    .flex-wrapper {
        flex-direction: column; /* Stack logos and video vertically */
    }
    
    .logos-container,
    .video-container {
        max-width: 100%;
         margin-left: 0px;
    }
    
    .industrial-logo {
        flex: 1 1 0; /* 3 logos per row for smaller screens */
    }
  
    .sports-logo {
        flex: 1 1 0;
    }
  
    .prosportspartner {
        padding-bottom:50px;
       background-size: 175%;
    }
  
    .manufacturingpartner {
       background-size: 220%;
    }
     .flex-wrapper-sports {
         gap: 0px;
    }
  .interactive-container {
    width: 100%;
    margin-right: -7%;
  }
  
  #lightbulb {
    margin-top: calc(-2.5vw - .6em - 1%);
  }
  
  .exits-acquisitions {
    margin-left: 6.5%;
  }
  
  
   .ar-content-wrapper, .vr-content-wrapper {
        flex-direction: column;
        text-align: center;
    }
  
  .text-and-image-container {
      
        margin-left: -2.5%;
  margin-right: -2.5%;
  margin-top: 15px;
    
  }
  .overlay-text-inner {
    margin-bottom: 20px;
  }
  
  .content-image {
    width: 45%;
    max-width: 300px;
    left: 25%;
    top: 27%;
    z-index:1;
  }

.content-image:hover {
    transform: scale(1.25);
    opacity: 1;
    top: 18%;
  }
  
  .itlc {
    margin-bottom: 25px;
  }
  
.service-image {
    width: 65%;
    margin-left: 10%;
    margin: 20px 0px 20px 0px;
  }
  
.service-video {
    width: 65%;
    margin-left: 10%;
    margin: 20px 0px 20px 0px;
  }
  
   .reorderserviceimage {
    order: 1; /* Ensure it is below the title */
  }

  .vr-content-wrapper h3 {
    order: 0;
  }
  
  .slider-wrapper {
    margin-right: 0;
  }
  
  .reorderslider .stats-container {
    order: 1;
    padding-right: 0%;
    padding-left: 10px;
  }
  
  .reorderslider .slider-wrapper {
    order: 0;
  }
  
  .ar-section, .vr-section {
  padding: 2.5% 5%;
   } 
  
  .nonreorder {
  margin-right: 0%;
  }
  
  .vr-text {
    margin-left: 0%;
  }
  
  
#ar-stat-bar1, #vr-stat-bar1, #tso-stat-bar1 {
    box-shadow:0 12px 18px #4caf50, 0 12px 18px #4caf50;
}

#ar-stat-bar2, #vr-stat-bar2, #tso-stat-bar2 {
    box-shadow: 0 10px 18px #2196f3, 0 10px 18px #2196f3;
}

#ar-stat-bar3, #vr-stat-bar3, #tso-stat-bar1 {
    box-shadow: 0 8px 18px #ff9800, 0 8px 18px #ff9800;
  
}
  .card-container {
    gap: 1rem; 
  }

.aboutustxt {
  text-align: center;
}
  #pwrflx {
    margin-top: 15px;
    margin-left: 0%;
  }
  
  .swiper-right-column-swapped-locked {
    padding: 0px;
  }
  
  .case-study {
  height: 125px;
   border-radius: 20px;
  }
  .logo-container {
  height: 100px;
  width: 100px;
  min-width: 100px;
  }
  
  .ctabtn {
  scale: 1;
  width: 90%;
}
  
}


.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  right: -10px !important;
  bottom: -5px !important;
  scale: .5;
}

.grecaptcha-badge:hover {
  width: 300px !important;
  right: -100px !important;
}