:root {
  --primary-color: #667aff;
  --secondary-color: #4756b3;
  --text-color: #ffffff;
  --subtext-color: #bfbdbd;
  --background-color: #110909;
  --subbackground-color: #222225;
  --border-radius: 12px;
  scroll-behavior: smooth;
  font-size: 12px;
  
}

body{
  background-color: var(--background-color); 
  
}

header{
  z-index: 2;
}



#cursor {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--primary-color);
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  transition:
  background-color 0.6s ease,
  width 0.6s ease,
  height 0.6s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* NAVBAR */
#navbar {
  position: fixed;
  top: 20px;
  /* left: 31vw; */
  width: fit-content;
  height: 60px;
  background: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 20px;
  color: white;
  z-index: 9998;
  border-radius: var(--border-radius);
  border-style: solid;
  backdrop-filter: blur(10px);
  /* font-weight: bold; */
}
#title-opts{
  display: flex;
    width: 25vw;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 50px;

}
#title-opts .click{
  width: 150px;
  margin: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}


#nav-cont{
  display: flex;
  flex-direction: column;
  align-items: center;
}

#navbar a{
  transition: color 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-color);
  text-decoration: none;
  margin: 10px;
  
}

#navbar a:hover {
  color: var(--primary-color);
}

#navbar img {
  width: 90px;
  height: 90px;
}

#navbar .click {
  font-size: 1rem;
  width: 115px;
  height: 31px;
  padding: 0;
  margin: 0;
  font-weight: 100;
  background-color: var(--primary-color);
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;

  border-style: none;
  opacity: 100%;
  color: var(--text-color);
  font-weight: 300;
}

.click.hov {
  color: black;
  background-color: var(--primary-color);
  border-style: none;
  min-width: 50px;
}



#Brand {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
}

#logo {
  padding-top: 2vw;
  height: 10vw;
  width: 10vw;
  object-fit: cover;
}

#brand-name {
  font-size: 1.5rem;
  font-weight: bold;
  color:var(--text-color);
}


/* BACKGROUND SECTION */
.background {
  position: absolute;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh; 
  background-color: var(--background-color);
  overflow: hidden;
  z-index: 1;

}

/* TITLE SECTION */
#front-page{
  position: relative;
  margin-top: 175px;
  width: 100vw;
  height: fit-content; 
  background: none;
  display: flex;
  flex-direction: column;
  z-index: 998;
  text-align: center;
  align-items: center;
  /* justify-content: center; */
  /* justify-content: start; */
  /* align-items: center; */
}

#title-box{
  display: flex;
  flex-direction: column;
  width: 70%;
  justify-content: space-around;
  align-items: center;

}

#pre-title{
  display: flex;
  flex-direction: row;
}

#team {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
}

#team img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -10px; /* overlap amount */
  /* border: 3px solid white; optional border for clean overlap */
  transition: all 0.3s ease, z-index 0.3s ease;
  position: relative;
  z-index: 1;


}

#team img:hover {
  transform: translateY(-7px) scale(1.2);

  cursor: pointer;
}

#title{
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1{
  color: white;
  font-size: 4rem;
}

#sub-title{
  margin-top: 4vw;
  width: 50%;
}


#stars{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  
}

#stars img{
  padding-right: 2px;
  
}

p{
  color: white;
  /* margin-top: 2.5rem; */
  font-size: 1rem;
  line-height: 1.5rem;
}
.click{
  margin-top: 4rem;
  width: 16rem;
  height: 3.5rem;
  border-radius: var(--border-radius);
  border-style: solid;
  background-color: var(--background-color);
  color: white;
  border-color: white;
  transition: all 400ms cubic-bezier(.23, 1, 0.32, 1);
  font-weight: bold;
  font-size: 1.25rem;
  z-index: 2;

  /* cursor: pointer; */

  /* letter-spacing: .25rem; */
  /* opacity: 80%; */
  /* position: relative; */
  /* left: 1vw; */
}
.click:hover{
  /* color:  #110911; */
  background-color: var(--primary-color);
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
  border-style: none;
  opacity: 100%;
  color: black;
}

.click a {
  width: 16rem;
  height: 3.5rem;
  border-radius: var(--border-radius);
  color: white;
  text-decoration: none;
}



/* ABOUT US */
#about-us{
  display: flex;
  flex-direction: column;
  /* margin-top: 1000px; */
  background-color:  var(--background-color);

  align-items: center;
  padding-top: 2vh;
  z-index: 1;
  justify-content: center;
}


#about-us h1 {
  z-index: 2;
}


#glow-ball {
  position: absolute;
    top: 145vh;
    left: 72%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    background-image: radial-gradient(circle, var(--primary-color) 0%, var(--primary-color) 30%,  var(--primary-color) 70%, transparent 100%);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    z-index: 0;
    animation: float-glow 3s ease-in-out infinite alternate;
}
@keyframes float-glow {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  100% { transform: translate(-50%, -52%) scale(1.1); opacity: 0.7; }
}

#about-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  padding-top: 3vh;
  font-size: 1.5rem;
  
}

#about-right{
  padding-top: 10vh;
  width: 60vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.mini-box h3{
  font-weight: 100;
  padding: 10px;
}

#mini-right{
  /* width:45vh; */
  flex: 4;
  margin-top: 2vh;
  font-size: 1.5rem;
}
.mini-emph h3{
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  border-style: solid;
  border-radius: var(--border-radius);
  box-shadow: 0 0 100px var(--primary-color);
}
#mini-left{
  display: flex;
  flex-direction: column;
  margin-right: 2vh;
  flex: 10;
}

#mini-top{
  width: 60vw;

  margin-top: 2vh;
}


#outer-headings{
  flex: 3;
  /* height: 100vh; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;   
  margin-top: 4vh;
  text-align: center;

}
#inner-headings{
  
  height: 100px;
  padding: 0;
  line-height: 90px;
  /* font-size: 45px; */
  text-transform: uppercase;
  overflow: hidden;
  width: max-content;

}

#mini-grid{
  display: flex;
  flex-direction: row;
}

.mini-box{
  /* border-style: solid; */
  border-color: var(--subtext-color);
  border-radius: var(--border-radius);
  /* margin: 2vh; */
  padding: 0px;
  font-size: 1.5rem;
}




#mini-left .mini-box{
  
  margin-top: 2vh;
}

.glow{

  position: relative;
  color: var(--text-color);
  animation: animation 20s ease infinite;
  font-size: 3.5rem;
  
  /* animation: animation 10 ease infinite;
  position: relative;
  text-align: center; */
  
}

/* FAQ */
.faq-section {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.faq-title {
  text-align: center;
  /* font-size: 2rem; */
  margin-bottom: 4vh;
  margin-top: 10vh;
  z-index: 2;
}

.faq-item {

  z-index: 2;
  margin-bottom: 12px;

  overflow: hidden;
  width: 40vw;
  transition: all 0.3s ease;
}

.faq-question {
  cursor: pointer;
  background: none;
  /* border-style: none; */
  border-color: transparent;
  font-size: 1.2rem;
  padding: 10px 0;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px;
  background-color: #2b2b2b;
  color: var(--subtext-color);
  transition:  all 0.3s ease;
  border-radius: var(--border-radius);
}

.faq-question:hover {
  border-style: solid;
  border-color: var(--primary-color);
  border-radius: var(--border-radius);
}

.faq-question span {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question span {
  transform: rotate(180deg);

}


.faq-item.active .faq-answer {
  max-height: 200px; /* enough space for most answers */
  padding-bottom: 1rem;
  border-radius: var(--border-radius);
  
}

.faq-answer p {

  line-height: 1.6;
  padding: 10px;
  color: var(--subtext-color);
  border-radius: var(--border-radius);
}

.faq-answer.open {
  opacity: 1;
  background-color: #2b2b2b;
  border-radius: 0px 0px 10px 10px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

form{
  z-index: 2;
    color: white;
    position: relative;
}

#thank-you{
  position: relative;
  z-index: 2;
  color: white;
}

@keyframes animation {

    0%, 100% { top: 0; }
    
    13% { top: 0; }
    16% { top: -100px; }
  
    30% { top: -100px; }
    33% { top: -200px; }
  
    47% { top: -200px; }
    50% { top: -300px; }
  
    63% { top: -300px; }
    66% { top: -400px; }
  
    80% { top: -400px; }
    83% { top: -500px; }
  
    97% { top: -500px; }
  }
  

.highlight{
  color: var(--primary-color);
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: bold;
  margin-left: 3px;
  margin-right: 3px;
}
h2{
  
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--subtext-color);
}
header {
  margin-top: 10vh;
  width: 11rem;
  height: 2.5rem;
  color: var(--text-color);
  border-color: var(--primary-color);
  border-radius: var(--border-radius);
  /* border-style: solid; */
  font-size: 1rem;
  display: flex;
  align-items: center;    
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 0 100px var(--primary-color);
}
/* TESTIMONIALS
#testimonials {
  z-index: 2;
  background: var(--background-color);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  margin-top: 15vh;
  margin-bottom: 10vh;
}





#test-box{
  width: 100vw;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  padding-top: 4vw;
  padding-bottom: 4vw;
}

.test{
  border-radius: var(--border-radius);
  border-color: var(--text-color);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color:  var(--background-color);
  width: 25vw;
  align-items: center;
}

.test p {
  margin: 15px;
  font-size: 1rem;
  font-weight: 100;
}

.test-attr{
  display: flex;
  flex-direction: row;
  margin-top: 2vw;
  margin-bottom: 2vw;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  padding-left: 20px;
}

.test-attr img{
  width: 5vw;
  height: 5vw;
  padding-right: 10px;
}

.test-person{
  display: flex;
  flex-direction: column;
} */

h3{
  color:var(--text-color);
  /* width: 30vw; */
}

h4{
  color:var(--subtext-color);
  margin-top: 2px;
  font-weight: 200;
  /* width: 30vw; */
}


/* Customers */

#customers{
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  position: relative;

}

#customers h3 {

  color: var(--subtext-color);
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 50px;

}

#customers div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 90vw;
  justify-content: center;
  align-items: center;
}



#customers div img {
  /* width: 12vw; */
  height: 8vw;
  width: 8vw;
  margin: 2vw;
  border-radius: var(--border-radius);
}

@media screen and (max-width: 800px){
  #customers div img {
   height: 20vw;
   width: 20vw;
  }
  
}


/* Short form */

.services {
  background: var(--background-color);
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  
}

#short-form{
  /* margin-top: 600px; */

} 

.scroll-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 10px; */
  width: 100%;
  z-index: 1;;
  touch-action: none;
}

#serv-box{
  display: flex;
  flex-direction: row;
  width: 80vw;
  overflow-x: hidden;;
  gap: 25px;

  padding-left: 20px;
  padding-right: 20px;
  margin-left: -20px;
  margin-right: -20px;




}

.shorts {
  flex: 0 0 calc((100% - 50px) / 3);
  margin-top: 4vw;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  padding: 10px;
  border: 2px solid transparent;
  scroll-snap-align: start;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  align-items: center;


}


.shorts:hover{
  border: 2px solid var(--primary-color);

}

.shorts-content {
  display: flex;
  flex-direction: row;

}

.serv-desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;

}

.serv-desc p {
  width: 80%;
  color: var(--subtext-color);
}

.shorts h3{
  font-size: 2.4rem;
  margin-bottom: 30px;
  width: max-content;
}

.serv-ex {
  display: flex;
  align-items: center;
  flex: 1;
}

.serv-ex video {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.scroll-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  margin-right: 20px;
  margin-left: 20px;

  width: 50px;
  height: 50px;
  z-index: 3;
}

.scroll-btn:hover {
  background: var(--secondary-color);
}



/* LONG FORM SECTION */
#long-form h1 {
  padding-top: 10vh;
  width: 50%;
  text-align: center;
  z-index: 2;
}
#grid{
  grid-template-columns: repeat(2, 1fr); /* Creates 2 columns, each taking equal space */
  grid-template-rows: repeat(2, 1fr); /* Creates 2 rows, each taking equal space */
  gap: 10vh 0;
  display: grid;
  margin-top: 75px;
  /* margin-bottom: 50px; */
}


.longs {
  visibility: visible;
  position: inherit;
  width: 50vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  margin: 10px;
}

.horizontal video{
  width: 40vw;
  height: 25vw;
  transition: all 0.3s ease-in-out; 
  gap: 10px, 10px;
  filter: grayscale(100%);
  border-radius: var(--border-radius);
  object-fit: cover;
}

.horizontal video:hover{
  /* width: 42vw;
  height: 27vw; */
  transform: scale(1.1);
  filter: grayscale(0%);

}

.serv-desc * {
  padding-bottom: 3vh;
}

/* COMPARE SECTION */
#compare {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  z-index: 2;
  
}

#compare header {
  margin-top: 50px;
}

#compare h1 {
  margin-top: 4vh;
  z-index: 2;
}

#compare-box{

  display: flex;
  flex-direction: row;
  gap: 5vw;
  /* margin-top: 5vh; */
  margin-bottom: 50px;
  z-index: 2;
  

}

#compare-left {
  display: flex;
  flex-direction: column;
  flex: 1;
  

}

#compare-left h2 {
  line-height: 18vh;
  font-size: 2rem;
  text-align: center;
}

#compare-left p{
  color: var(--subtext-color);
}

#compare-right {
  display: flex;
  flex-direction: column;
  flex:1;
  min-width: 0;
  
}

#compare-right .item-box{
  box-shadow: 0 0 50px var(--primary-color);
  animation: glow-pulse 6s ease-in-out infinite;

}
@keyframes glow-pulse {
  0% {
    box-shadow: 0 0 100px 10px var(--primary-color);
  }
  50% {
    box-shadow: 0 0 50px 2px var(--primary-color);
  }
  100% {
    box-shadow: 0 0 100px 10px var(--primary-color);
  }
}

#comp-img {
  height: 18vh;
}
.comp-item{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.comp-item img{
 width: 5vh;
 height: 5vh;
}

.comp-item * {
  padding: 5px;
}
.item-box{
  border-radius: var(--border-radius);
  border-style: solid;
  border-color: var(--subtext-color);
  padding: 20px;
  height: max-content;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--background-color);
  
}

/* JOIN SECTION */
#join-us {

    margin-top: 10vh;
    background: var(--primary-color);
    text-align: center;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    position: relative;
    /* height: 80vh; */
}

#join-us h2 {
  font-size: 2rem;
  margin-bottom: 4vh;
  font-weight: bold;
  color: white;
}

#join-us p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.9;
  width: 50%;
}

.join-btn {
  background: var(--text-color);
  color: var(--primary-color);

  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.join-btn:hover {
  background: transparent;
  color: white;
  border: 2px solid white;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

input, textarea {
  border-radius: var(--border-radius);
  border-style: solid;
  border-color: var(--text-color);
  background-color: var(--background-color);
  color: var(--text-color);
  padding: 10px;
}
label{
  margin-top: 20px;
  margin-bottom: 5px;

}
input {
  width: 200px;
}

textarea {
  width: 400px;
  height: 100px;
}

#consent{
  width: 30px;
}
/* Contact Us */
#contact{ 

  padding-top: 10vh;
  background-color: var(--background-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

#contact-box{
  border-radius: var(--border-radius);
  border-style: solid;
  border-color: var(--text-color);
  width: 80vw;
  height: 165px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#contact-company-info{
  display: flex;
  flex-direction: column;
  padding-bottom: 1vh;
  /* justify-content: space-evenly; */
}

#long-logo{
  height: 10vh;
}

#email{
  color: var(--text-color);
  text-decoration: none;
  position: relative;
  left: 2vh;
  font-size: 1rem;
}

#mail-add {
  font-size: 1rem;
  color: var(--text-color);
  text-decoration: none;
  position: relative;
  left: 2vh;
}

#mail-add:hover{
  color: var(--text-color);
  text-decoration: underline;
}

#contact-links{

  display: flex;
  flex-direction: column;
  padding-right: 1vw;
  padding-top: 2vh;

}

#contact-links a{
  color: var(--text-color);
  text-decoration: none;
}

#contact-links a:hover{
  color: var(--subtext-color);
  text-decoration: underline;
}

hr {
  width:90%; 
  margin-top: 5vh;
  height:1px; 
  border-color: var(--subtext-color);
}

#contact h5{
  color: var(--subtext-color);
  padding-bottom: 2vh;
}
/* BALLS ANIMATION */
@keyframes move {
  100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
  }
}

.ball {
  position: absolute;
  width: 10vmin;
  height: 10vmin;
  border-radius: 50%;
  backface-visibility: hidden;
  animation: move linear infinite;
  z-index: 1;
}

/* .ball:nth-child(odd) {
  background: rad-gradient(#c9bfff 0deg, #139ce5 180deg, #9381ff 360deg);
    filter: blur(15px);
}

.ball:nth-child(even) {
  background: conic-gradient(#c9bfff 0deg, #139ce5 180deg, #9381ff 360deg);
  filter: blur(15px);
  
} */
 .ball{
  /* background:radial-gradient(#c9bfff 0%, #139ce5 70%, #9381ff 75%); */
    /* background: linear-gradient(#c9bfff , #139ce5 , #9381ff ); */
    background: conic-gradient(#c9bfff 0deg, #139ce5 120deg, #9381ff 360deg);
    filter: blur(15px);
 }

/* Individual Ball Configurations */
.ball:nth-child(1) {
  top: 77%;
  left: 88%;
  animation-duration: 18s;
  animation-delay: -3s;
  transform-origin: 16vw -2vh;
  /* box-shadow: 40vmin 0 5.703076368487546vmin currentColor; */
}
.ball:nth-child(2) {
  top: 42%;
  left: 2%;
  animation-duration: 16s;
  animation-delay: -29s;
  transform-origin: -12vw 18vh;
  /* box-shadow: -40vmin 0 5.17594621519026vmin currentColor; */
}
.ball:nth-child(3) {
  top: 28%;
  left: 18%;
  animation-duration: 28s;
  animation-delay: -2s;
  transform-origin: -15vw 3vh;
  /* box-shadow: 40vmin 0 5.248179047256236vmin currentColor; */
}
.ball:nth-child(4) {
  top: 50%;
  left: 79%;
  animation-duration: 42s;
  animation-delay: -7s;
  transform-origin: -13vw -6vh;
  /* box-shadow: 40vmin 0 5.279749632220298vmin currentColor; */
}
.ball:nth-child(5) {
  top: 46%;
  left: 15%;
  animation-duration: 48s;
  animation-delay: -20s;
  transform-origin: 4vw 0vh;
  /* box-shadow: -40vmin 0 5.964309466052033vmin currentColor; */
}
.ball:nth-child(6) {
  top: 77%;
  left: 16%;
  animation-duration: 32s;
  animation-delay: -5s;
  transform-origin: 18vw 4vh;
  /* box-shadow: 40vmin 0 5.178483653434181vmin currentColor; */
}
.ball:nth-child(7) {
  top: 22%;
  left: 17%;
  animation-duration: 45s;
  animation-delay: -3s;
  transform-origin: 1vw -20vh;
  /* box-shadow: -40vmin 0 5.703026794398318vmin currentColor; */
}
.ball:nth-child(8) {
  top: 41%;
  left: 47%;
  animation-duration: 50s;
  animation-delay: -15s;
  transform-origin: 20vw -3vh;
  /* box-shadow: 40vmin 0 5.196265905749415vmin currentColor; */
}
@media screen and (max-width: 1230px) {

#short-form {
  /* margin-top: 800px; */
}
/* short form */
.scroll-wrapper {
  width: 100%;
}
#serv-box {
  /* display: flex; */

}
.shorts {
  /* width: 100%;
  height: 100%;;               
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  transform: scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
  pointer-events: none;      */
  flex: 0 0 calc((100% - 25px)/2);
  
}

#title-opts{
  flex-direction: column;
  align-items: center;
}

#short-form{
  /* margin-top: 750px; */
}



/* The one that should show */
.shorts.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
  pointer-events: auto;
  display: flex;
  align-items: stretch;
      
}

/* Make video size adapt cleanly inside the stacked slide */
.vert video {
  width: 30vw;
  height: 50vw;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.serv-desc {
  width: 100%;
  text-align: center;
  display: none;
  
}

.shorts h3{
  font-size: 2rem;
  height: 3rem;
  
}

.scroll-btn {
  /* display: none; */
  padding: 5px;
  margin: 5px;
  
}
}
/* ---------- MOBILE RESPONSIVE (under 800px) ---------- */
@media screen and (max-width: 800px) {

  body {
    overflow-x: hidden;
  }

  

  /* FRONT PAGE */
  #front-page {
    height: auto;
    /* padding-top: 30vh;
    padding-bottom: 10vh; */
    margin-top: 175px;
    text-align: center;
  }

  #team img {
    height: 30px;
    width: 30px;
  }

  #title-box {
    width: 90%;
  }

  #title{
    padding: 1vh;
  }
  h1 {
    font-size: 2rem;
    line-height: 2.3rem;
  }

  #sub-title {
    width: 90%;
    font-size: 0.95rem;
  }

  #pre-img{
    width: 70%;
  }
  #pre-img h4 {
    text-align: left;
  }

  #pre-title{
    /* position: relative;
    left: 30px; */
    justify-content: center;
  }

  #title-opts {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1rem;
  }

  #title-opts button{
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1rem;
    margin: 0;
  }

  .click {
    width: 150px;
    height: 3rem;
    font-size: 1rem;
  }

  #short-form{
    /* margin-top: 600px; */
  }
  
  .vert video {
    height: 500px;
    width: 300px;
  }

  #serv-box{
    /* padding-left: 40px;
    padding-right: 40px;
    margin-left: -40px;
    margin-right: -40px; */
    width: 500px;
    
  }

  .shorts {

    flex: 0 0 calc(100%);
  }

  /* ABOUT SECTION */
  #about-us {
    /* margin-top: 600px; */
    /* padding: 10vh 5vw; */
  }

  #about-right,
  #outer-headings {
    width: 95%;
    text-align: center;
  }

  #about-us h1 {
    margin-top: 20px;
  }

  #outer-headings h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #mini-grid {
    flex-direction: column;
    align-items: center;
  }

  .mini-box,
  #mini-top,
  #mini-right {
    width: 100%;
    margin: 2vh 0;
    text-align: center;
  }

  .mini-emph h3 {
    font-size: 1.8rem;

  }

  #long-form{
    gap: 10vh;
  }

  #grid {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 30vw 10vh;
    height: auto;

  }

  .longs {
    height: 100px;
    /* margin: 70px; */
  }

#long-form h1 {
  padding: 0;
  font-size: 2.5rem;
}

.horizontal video {
  width: 70vw;
  height: 40vw;
}


.horizontal video.in-view {
  transform: scale(1.1);
  filter: grayscale(0%);
}

  

  /* FAQ */
  .faq-item {
    width: 90%;
  }

  /* JOIN US + CONTACT */
  #join-us {
    padding: 10vh 5vw;
    text-align: center;
  }

  input, textarea {
    width: 90%;       /* scale to almost full width of screen */
    max-width: 400px; /* prevent huge textarea on larger mobile screens */
  }

  textarea {
    height: 120px;    /* slightly taller for easier typing on mobile */
  }

  label {
    padding: 5px;     /* reduce padding for small screens */
  }

  #contact-box {
    flex-direction: row;
    align-items: center;
    text-align: center;
    height: fit-content;
    /* padding-bottom: 20px; */
    /* padding-right: 5px; */
    padding: 15px;
    width: 95%;
  }

  #email {
    left: 0;
  }

  #contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;

  }

  #contact-links a {
    font-size: 0.95rem;
  }

  /* GENERAL TEXT */
  h2, h3, h4, p {
    width: 100%;
    font-size: 1rem;
    text-align: center;
  }

  header {
    font-size: 0.9rem;
    width: 9rem;
    height: 2rem;
  }

  

}


@media screen and (max-width: 600px) {

  /* NAVBAR */
  #navbar {
    flex-direction: row;
    height: auto;
    gap: 10px;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }

  #navbar img {
    width: 60px;
    height: 60px;
  }

  #navbar a,
  #navbar .click {
    font-size: 0.9rem;
  }

.horizontal video {
  width: 80vw;
  height: 45vw;
}

/* .shorts {
  flex: 0 0 calc(100%);
} */

#serv-box {

  /* gap: 20px; */
  width: 90vw;

}
.scroll-wrapper {
  /* width: 90vw; */
}

.vert video {
  width: 50vw;
  height: 90vw;
}

.shorts {
  /* margin: 0; */
}


}


@media screen and (max-width: 350px) {
  .vert video{
    width: 70vw;
    height: 130vw;
  }

  .shorts{
    position: relative;
    left: -14px;
  }
}
