
/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes logoGlow {
  0% {
    text-shadow: 0 0 10px #8500fd, 0 0 20px #3fbbfe, 0 0 40px #3fbbfe;
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 20px #8500fd, 0 0 40px #3fbbfe, 0 0 60px #8500fd;
    transform: scale(1.05);
  }
  100% {
    text-shadow: 0 0 10px #8500fd, 0 0 20px #3fbbfe, 0 0 40px #3fbbfe;
    transform: scale(1);
  }
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

#navbar__logo:hover {
  transform: scale(1.1);
  cursor: pointer;
}



.navbar__links:hover {
  transform: scale(1.1);
  text-shadow: 0 0 5px #8500fd, 0 0 10px #3fbbfe;
  color: #ffffff;
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes navbarGlow {
  0% {
    box-shadow: 0 0 5px #8500fd, 0 0 10px #3fbbfe;
  }
  50% {
    box-shadow: 0 0 15px #8500fd, 0 0 25px #3fbbfe;
  }
  100% {
    box-shadow: 0 0 5px #8500fd, 0 0 10px #3fbbfe;
  }
}


@keyframes glow {
  0% {
    box-shadow: 0 0 5px #8500fd;
  }
  50% {
    box-shadow: 0 0 20px #8500fd;
  }
  100% {
    box-shadow: 0 0 5px #8500fd;
  }
}

/* ========== ANIMATION APPLICATIONS ========== */

/* Navbar Logo Slide In */
#navbar__logo {
 transition: transform 0.3s ease, text-shadow 0.3s ease;
  
}

/* Main Content Entrance */
.main__content h1 {
  animation: fadeInUp 1.2s ease-out;
}

.main__content h2 {
  animation: fadeInUp 1.4s ease-out;
}

.main__content p {
  animation: fadeInUp 1.6s ease-out;
}

/* Main Image Slide In */
#main__img {
  animation: slideInFromRight 1.5s ease-out;
}

/* Button Animations */
.button1, .main__btn a {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button1:hover, .main__btn:hover {
  animation: pulse 1.5s;
  box-shadow: 0 0 15px #8500fd;
}

/* Glow on Services Buttons */
.services__card a:hover {
  
  animation: glow 1s infinite;
  
}

/* Service Cards Fade In */
.services__card {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

/* Delay each card for staggered effect */
.services__card:nth-child(2) {
  animation-delay: 0.5s;
}
.services__card:nth-child(3) {
  animation-delay: 0.7s;
}
.services__card:nth-child(4) {
  animation-delay: 0.9s;
}
.services__card:nth-child(5) {
  animation-delay: 1.1s;
}
.services__card:nth-child(6) {
  animation-delay: 1.3s;
}

/* Footer Links Fade In */
.footer__link--items h2, 
.footer__link--items a, 
.footer__link--items p {
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1s;
  opacity: 0;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;

}




body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  background-color: #e9e9e9;
}

.navbar{
  background: #141619;
  height:80px ;
  display:flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  position: sticky;
  top: 0;
  z-index: 999;
  animation: navbarGlow 2s infinite ease-in-out;
  ;
  
}





/* Add some content at the bottom of the video/page */
.content {
position: fixed;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
color: #eb7aff;
width: 100%;
padding: 20px;
}

.navbar__container{
  display: flex;
  justify-content:space-between;
  height: 40px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px
}

#navbar__logo{
  background: #ff8177;
  background-image:linear-gradient(to left, #3fbbfe 0%, #8500fd) ;
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  display: flex;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
  top: 101px;
  justify-content: left;
  align-items: left;

  
}

.fa_gem{
  margin-right: 0.5rem;
}

.navbar__menu{
  display: flex;
  align-items: center;
  list-style: none;
  text-align: center;
  font-weight: 400;
  font-style: normal;
}

.navbar__item {
  height: 80px;
  justify-content: left
  align-items: center;
}

.navbar__links {
  color:#e9e9e9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 1rem;
  height: 100%;
  font-size: 1.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar__btn{
  display: flex;
  justify-content: center;
  align-items:center ;
  padding: 0 1rem;
  width: 100%;
  font-weight: 700;
  font-style: normal;
}





.button1{
  display: flex;
  justify-content: center;
  text-decoration: none;
  padding: 10px 20px;
  height:100%;
  width: 100%;
  border: none;
  outline: none;
  border-radius: 10px;
  background-image:linear-gradient(to left, #3fbbfe 0%, #8500fd) ;
  color: #e9e9e9
}

.button:hover{
  background-image:linear-gradient(to left, #3fbbfe 0%, #8500fd) ;
  transition: all 1s ease;
}

.navbar__links:hover {
  color: #e9e9e9;
  transition: all 0.3s ease;

}

@media screen and (max-width: 960px) {
.navbar__container {
  display: flex;
  justify-content: space-between;
  height: 80px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  padding: 0;
}

.navbar__menu {
  display: grid;
  grid-template-columns: auto;
  margin: 0;
  width: 100%;
  position: absolute;
  top: -1000px;
  opacity: 1;
  transition: all 0.5s ease;
  height: 70vh;
  z-index: -1;
}

.navbar__menu.active {
  background: #141619;
  top: 100%;
  opacity: 1;
  transition: all 0.5s ease;
  z-index: 99;
  height: 80vh;
  font-size: 1.6rem;
}

#navbar__logo {
  padding-left: 25px;
  font-size: 3rem;
}

.navbar__toggle .bar {
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background: #ffffff;
}

.navbar__item {
  width: 100%;
}

.navbar__links {
  text-align: center;
  padding: 2rem;
  width: 100%;
  display: table;
}

.navbar__btn {
  padding-bottom: 2rem;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 80px;
  margin: 0;
}

#mobile-menu {
  position: absolute;
  top: 20%;
  right: 5%;
  transform: translate(5%, 20%);
}

.navbar__toggle .bar {
  display: block;
  cursor: pointer;
}

#mobile-menu.is-active .bar:nth-child(2) {
  opacity: 0;
}

#mobile-menu.is-active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

#mobile-menu.is-active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
}

/* Main Content CSS */
.main {
background-color: #141619;
}

.main__container {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
justify-self: center;
margin: 0 auto;
height: 90vh;
background-color: #141619;
z-index: 1;
width: 100%;
max-width: 1300px;
padding-right: 50px;
padding-left: 50px;
}

.main__content {
color: #e9e9e9;
width: 100%;
}

.main__content h1 {
font-size: 4rem;
background-color: #7776fe;
background-image:linear-gradient(to top, #3fbbfe 0%, #8500fd) ;

font-weight: 900;
font-style: normal;

background-size: 100%;
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-text-fill-color: transparent;
}



.main__content h2 {
font-size: 4rem;
margin-top: 10px;

background-color: #ff8177;
background-image:linear-gradient(to left, #3fbbfe 0%, #8500fd) ;
background-size: 100%;

font-weight: 700;
font-style: normal;

-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-text-fill-color: transparent;
}

.main__content p {
margin-top: 1rem;
font-size: 2rem;
font-weight: 500;
}



.main__btn a {
position: relative;
z-index: 2;
color: #e9e9e9;
text-decoration: none;
}

.main__btn:after {
position: absolute;
content: '';
top: 0;
left: 0;
width: 0;
height: 100%;
background: #8500fd;
transition: all 0.35s;
border-radius: 7px;
}

.main__btn:hover {
color: #e9e9e9;
}

.main__btn:hover:after {
width: 100%;
}

.main__img--container {
text-align: center;
}

#main__img {
height: 80%;
width: 80%;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
.main__container {
  display: grid;
  grid-template-columns: auto;
  align-items: center;
  justify-self: center;
  width: 100%;
  margin: 0 auto;
  height: 90vh;
}

.main__content {
  text-align: center;
  margin-bottom: 4rem;
}

.main__content h1 {
  font-size: 4rem;
  margin-top: 2rem;
}

.main__content h2 {
  font-size: 2rem;
}

.main__content p {
  margin-top: 1rem;
  font-size: 1.5rem;
}
}

@media screen and (max-width: 480px) {
.main__content h1 {
  font-size: 2rem;
  margin-top: 3rem;
}

.main__content h2 {
  font-size: 2rem;
}

.main__content p {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.main__btn {
  padding: 12px 36px;
  margin: 2.5rem 0;
}
}

/* Services */

.services {
background: #e9e9e9;
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
}

.services h1{
background-color: #e9e9e9;
background-image: linear-gradient(
  to right,
  #db77ff 0%,
  #eb7aff 0%,
  #ff7ffd 21%,
  #f985e9 52%,
  #cf556c 78%,
  #b12a5b 100%
);

background-size: 100%;
margin-bottom: 5rem;
font-size: 3rem;
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-text-fill-color: transparent;
}

.VideoServices h1{
background-color: #e9e9e9;
background-image: linear-gradient(
  to right,
  #db77ff 0%,
  #eb7aff 0%,
  #ff7ffd 21%,
  #f985e9 52%,
  #cf556c 78%,
  #b12a5b 100%
);

background-size: 100%;
margin-bottom: 5rem;
font-size: 3rem;
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-text-fill-color: transparent;
}


.services__container{
display: flex;
justify-content: center;
flex-wrap: wrap;
align-items: center;
}


.Videoservices__container{
display: flex;
justify-content: center;
flex-wrap: wrap;
align-items: center;
}

.services__card{
margin: 1rem;
height: 400px;
width: 800px;
border-radius: 10px;
background-image: linear-gradient(
  to bottom,
  rgba(0, 0, 0, 0) 0%,
  rgba(17, 17, 17, 0.6) 100%
),
url('/Images/Joel.png');
background-size: cover;
position: relative;
color: #e9e9e9;
font-size: 1.5rem;
box-shadow: 0 0 10px #000000;
}


.services__card:nth-child(2){

  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(17, 17, 17, 0.6) 100%
    
  ),
  url('/Images/justice.png');
  background-size: cover;
  position: relative;
  color: #e9e9e9;

  
  
  }
  
  .services__card:nth-child(3){

    background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(17, 17, 17, 0.6) 100%
      
    ),
    url('/Images/DD.png');
    background-size: cover;
    position: relative;
    color: #e9e9e9;
  
    
    
    }

    .services__card:nth-child(4){

      background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(17, 17, 17, 0.6) 100%
        
      ),
      url('/Images/Lewis.png');
      background-size: cover;
      position: relative;
      color: #e9e9e9;
    
      
      
      }

          .services__card:nth-child(5){

      background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(17, 17, 17, 0.6) 100%
        
      ),
      url('/Images/Esports.png');
      background-size: cover;
      position: relative;
      color: #e9e9e9;
    
      
      
      }

          .services__card:nth-child(6){

      background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(17, 17, 17, 0.6) 100%
        
      ),
      url('/Images/SS4.png');
      background-size: cover;
      position: relative;
      color: #e9e9e9;
    
      
      
      }

      .services__card:nth-child(7){

      background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(17, 17, 17, 0.6) 100%
        
      ),
      url('/Images/SS4.png');
      background-size: cover;
      position: relative;
      color: #161212;
      padding:top ;

        margin-top: 40rem;
      
      }

            .services__card:nth-child(8){

      background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(17, 17, 17, 0.6) 100%
        
      ),
      url('/Images/SS4.png');
      background-size: cover;
      position: relative;
      color: #161212;
      padding:top ;

        margin-top: 40rem;
      
      }

.services__extra-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; /* this ensures everything inside is centered */
}


.services h2 {
position: absolute;
top: 20px;
left: 30px;

}



.services__card p{
position: absolute;
top: 75px;
left: 30px;
}

.services__card a{
color: #f2f3ff;
padding: 10px 20px;
border: none;
outline: none;
border-radius: 10px;
position: absolute;
text-decoration: none;
top: 115px;
left: 30px;
font-size: 1rem;
cursor: pointer;
background-image:linear-gradient(to left, #3fbbfe 0%, #8500fd) ;
background-color: #4837ff;
font-weight: 500;
font-style: normal;

}

@media screen and (max-width:960px) {
.services {
  height: 90%;
  width: 120%;
}
.services h1{
  font-size: 2.7rem;
  margin-top: 12rem;
}
}

@media screen and (max-width: 480px) {
.services{
  height: 1400px;
  
}
.services h1{
  font-size: 1.2 rem;
}



.services__card {
  width: 90%;
  height: 300px;
}
}

section.vid{
width: 100%;
height: 100%;
object-fit: cover;
height: 500vh;
}

section.vid div.holder{
position: sticky;
top: 0;
}




.previd{
width: 100%;
height: 100%;
object-fit: cover;
}


.previdtxt{
top: 950px;
}

.vidholder{
height: 3000px;
}

.kenny__img-container{

background-size: 1%;
color: #141619;
position: absolute;
top: 950px;
left: 0px;
font-size: 0.5rem;
margin: 10px;
font-size: 1rem;
}

.cast {
background: #0011c7;
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
}


@media screen and (max-width: 480px) {
.footer__link--items {
  margin: 0;
  padding: 10px;
  width: 100%;
}
}

.containermain{
  width:40px;
  height: 10%;
}

.section.vid{

  object-fit: cover;
  width:400px;
  height: 10%;
}

.kenny__img{

background-size: 100%;
color: #141619;
position: absolute;
font-size: 0.4rem;
align-items: center;
background-size: 100%;
font-size: 1rem;
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: #141619;
-moz-text-fill-color: #141619;
}

.kenny__img-container {
background: #00085b;
}

.container{
padding: 0;
margin: 0;


}

vid

.container1 {
width: 100%;
height: 0vh;
align-items: center;
justify-content: center;
max-height: fit-content;
color: #e9e9e9;

}

.abtcontent h1 {
position: absolute;
top: 0.1;
width: 600px;
height: 0px;
border: none;
align-items: center;
justify-content: center;
font-size: 6rem;
color: #141619;
background-image:linear-gradient(to left, #8500fd 0%, #3fbbfe) ;



.about

}

.abtcontent{
background-color: wheat;
display: flex;
justify-content: center;
align-items: center;
background-image: linear-gradient(
  to right,
  #db77ff 0%,
  #eb7aff 0%,
  #ff7ffd 21%,
  #f985e9 52%,
  #cf556c 78%,
  #b12a5b 100%
);


}

.abttext{
background-color: wheat;
display: flex;
justify-content: center;
align-items: center;
background-color: linear-gradient(
  to right,
  #db77ff 0%,
  #eb7aff 0%,
  #ff7ffd 21%,
  #f985e9 52%,
  #cf556c 78%,
  #b12a5b 100%
);
}



.abttext h1 {
  position: absolute;
  display: flex;
  width: 500px;
  height: 550px;
  bottom: 1px;
  border: none;
  font-size: 2.5rem;
  color: #141619;
}





@media screen and (max-width: 960px) {
  .abtcontent {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
    background: #e9e9e9;
  }

  .abttext h1 {
    position: absolute;
    display: flex;
    width: 500px;
    height: 550px;
    bottom: 1px;
    border: none;
    font-size: 2.5rem;
    color: #141619;
    background: #e9e9e9;
  }
  .abtcontent h1 {
    position: absolute;
    top: 0.1;
    width: 600px;
    height: 0px;
    border: none;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: #141619;
    background-image:linear-gradient(to left #3fbbfe 0%, #8500fd) ;
    background: #e9e9e9;

  }
}



.services__extra-text a {
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 3rem;
  color: #141619;
  width: 100%;
  text-align: center;
  max-width: 800px;
  font-weight: 700;
  margin: 0 auto 2rem;
  background: #ff8177;
  background-image:linear-gradient(to left, #3fbbfe 0%, #8500fd) ;
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  
  
}


.services__extra-text p {
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #141619;
  width: 100%;
  text-align: center;
  max-width: 800px;
}

.NewVids-text {
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 3rem;
  color: #141619;
  width: 100%;
  text-align: center;
  align-items: center;
  max-width: 800px;
  font-weight: 600;
}


/* Footer CSS */
.footer__container {
  background-color: #141619;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: left;
  position:relative;
  left: 0;
  bottom: 0;
  width: 100%;
  }
  
  
  
  
  
  #footer__logo {
  color: #e9e9e9;
  display: flex;
  align-items: left;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
  font-size: 2rem;
  font-weight: 800;
  
  }
  
  .footer__links {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: left;
  font-size: 1rem;
  font-weight: 500;
  margin-left: 1rem;
  }
  
  .social__media{
  
    color: #141619;
  }
  
  .footer__link--wrapper {
  display: flex;
  }
  
  .footer__link--items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  
  text-align: left;
  width: 160px;
  box-sizing: border-box;
  }
  
  .footer__link--items h2 {
  margin-bottom: 16px;
  margin-left: 0rem;
  }
  
  .footer__link--items > h2 {
  color: #e9e9e9;
  font-size: 3rem;
  margin-left: 0rem;
  }
  
  .footer__link--items a {
  color: #e9e9e9;
  text-decoration: none;
  margin-bottom: 0.5rem;
  margin-left: 1rem;
  }
  

  .footer__link--items p {
    color: #e9e9e9;
    text-decoration: none;
    margin-bottom: 0.5rem;
    margin-left: 1rem;
    font-size: 1rem;
    width:635px;
     float:left; 
     overflow:hidden;

  
    }

  .footer__link--items a:hover {
  color: #e9e9e9;
  transition: 0.3s ease-out;
  margin-left: 0.5rem;
  }
  
  
  
  .website__right {
  background-color: #141619;
  color: #e9e9e9;
  font-size: 0.5rem;
  }
  
  @media screen and (max-width: 820px) {
  .footer__links {
    padding-top: 2rem;
    margin-left: 10rem;
    font-size: 1rem;
    
  }
  
  #footer__logo {
    margin-bottom: 2rem;
  }
  
  .website__rights {
    margin-bottom: 2rem;
  }
  
  .footer__link--wrapper {
    flex-direction: column;
  }
  
  .social__media--wrap {
    flex-direction: column;
  }

  .footer__link--items > h2 {
    color: #e9e9e9;
    font-size: 3rem;
    margin-left: 8rem;
  }



  @media screen and (max-width: 480px) {
  .footer__link--items {
    margin: 0;
    padding: 10px;
    width: 100%;
  }
  }
  }

  @media screen and (max-width: 480px) {
    .services__card {
      width: 100%;  /* Take up the full width on very small screens */
      height: 250px;  /* Further reduce height */
    }
  }

  @media screen and (max-width: 960px) {
    .services__card a {
      padding: 8px 16px;  /* Reduce padding */
      font-size: 0.9rem;  /* Reduce font size */
      top: 100px;  /* Adjust positioning if necessary */
    }
  }
  
  @media screen and (max-width: 320px) {
    .services__card a {
      padding: 4px 8px;  /* Much smaller padding */
      font-size: 0.7rem;  /* Even smaller font size */
      top: 70px;  /* Adjust positioning even more */
    }
  }
@media screen and (max-width: 600px) {
  #navbar__logo{
    background: #ff8177;
    background-image:linear-gradient(to left, #3fbbfe 0%, #8500fd) ;
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
    top: 101px;
    justify-content: left;
    align-items: left;
  }
}
@media screen and (max-width: 600px) {
.services__card{
margin: 1rem;
height: 300px;
width: 400px;
border-radius: 4px;
background-image: linear-gradient(
  to bottom,
  rgba(0, 0, 0, 0) 0%,
  rgba(17, 17, 17, 0.6) 100%
),
url('/Images/op1.png');
background-size: cover;
position: relative;

right: 50px;
color: #e9e9e9;
font-size: 1rem;
  }
}

@media screen and (max-width: 600px) {
.services__card a{
color: #f2f3ff;
padding: 10px 20px;
border: none;
outline: none;
border-radius: 4px;
position: absolute;
text-decoration: none;
top: 115px;
left: 30px;
font-size: 1rem;
cursor: pointer;
background-image:linear-gradient(to left, #3fbbfe 0%, #8500fd) ;
background-color: #4837ff;
font-weight: 500;
font-style: normal;
height: 30px;
width: 300px;
  }
}

  @media screen and (max-width: 960px) {
    section.vid {
      height: 800vh;  /* Reduce height for medium screens */
      object-fit: contain;  /* Ensure video maintains aspect ratio */
    }
  }
  
  /* Media Query for screens smaller than 480px */
  @media screen and (max-width: 480px) {
    section.vid {
      height: 500vh;  /* Further reduce height for smaller screens */
      object-fit: contain;  /* Adjust to contain the video in the viewport */
    }
  }
  
  /* Media Query for very small screens (320px and below) */
  @media screen and (max-width: 320px) {
    section.vid {
      height: 300vh;  /* Significantly reduce height for very small screens */
      object-fit: contain;  /* Maintain the aspect ratio and fit the video */
    }
  }
  
