.hero {
  position: relative;
  overflow: hidden;
  height: 100vh; /* full screen height */
    display: block !important;
  align-items: center;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* make video cover entire section */
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* dark overlay for better text contrast */
  z-index: 1;
}

.hero_content {
  position: relative;
  z-index: 2; /* bring content above video */
  color: #fff; /* ensure text is visible */
}


/* Glitch Text Effect */
.glitch {
  font-size: 2.8rem;
  font-weight: 800;
  color: #39ff14; /* neon green */
  position: relative;

  letter-spacing: 2px;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 #ff00ff; /* magenta ghost */
  animation: glitch 2s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: -2px 0 #00ffff; /* cyan ghost */
  animation: glitch 1.5s infinite linear alternate-reverse;
}

/* Glitch Animation */
@keyframes glitch {
  0% { clip: rect(10px, 9999px, 50px, 0); }
  10% { clip: rect(80px, 9999px, 140px, 0); }
  20% { clip: rect(30px, 9999px, 60px, 0); }
  30% { clip: rect(120px, 9999px, 170px, 0); }
  40% { clip: rect(40px, 9999px, 90px, 0); }
  50% { clip: rect(70px, 9999px, 130px, 0); }
  60% { clip: rect(20px, 9999px, 80px, 0); }
  70% { clip: rect(100px, 9999px, 160px, 0); }
  80% { clip: rect(50px, 9999px, 110px, 0); }
  90% { clip: rect(10px, 9999px, 40px, 0); }
  100% { clip: rect(80px, 9999px, 140px, 0); }
}
.fs-55
{
  font-size: 44px !important;
}

.hero_content
{
/* display: block !important; */


display: flex;
align-items: center;
}

.bg-prime
{
      background: #f7f5f3;
}

.tag-custom
{
    color: var(--black);
    font-size: 13px;
    font-weight: 600;
    /* display: flex
; */
    /* justify-self: center; */
    justify-content: left;
    padding: 4px 12px;
    border-radius: 16px;
    margin-bottom: 20px;
    background: var(--contrast-color);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.10);
    width: max-content;
}
ul li
{
          font-family: var(--heading-font);


}
.f-1
{
  font-family: var(--heading-span);
}



.video_exp {
    position: fixed;
    padding: 10px;
    width: 159px;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    display: grid
;
    align-content: space-between;
    justify-items: center;
    transition: width 0.4s ease-in-out;
    right: 13px;
    bottom: 62px;
    z-index: 1000000;
}

.video_exp video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video_exp .close {
  position: relative;
  z-index: 1;
  display: flex;
  width: 24px;
  height: 24px;
  padding: 6px;
  background: var(--contrast-color);
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-self: end;
  transition: all 0.3s ease-in-out;
}

.video_exp .close:hover {
  transform: scale(1.03);
}

.video_exp .play {
  position: relative;
  font-size: 24px;
  color: var(--contrast-color);
  background: #ffffff30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 99px;
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

.video_exp .play:hover {
  transform: scale(1.03);
}

.video_exp:hover .play {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
}

.video_exp .btn-hello,
.video_exp .btn-hello:focus {
  position: relative;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  height: 48px;
  width: 100%;
  padding: 16px 20px;
  border-radius: 50px;
  background: var(--black);
  color: var(--contrast-color);
  box-shadow: 0px 4px 0px 0px rgb(0 0 0 / 25%);
}

.video_exp .btn-hello:hover {
  color: var(--black);
  background: var(--accent-color);
}



@media (max-width: 950px) {
  .hide-mobile{

display: none !important;
  }


.hero_content {
    padding: 15px;


  }

  .glitch {
 

    line-height: 51px !important;
}


}
@media (max-width: 700px) {

.hero_content {
        & .accreditations {
            & img {
                          height: auto !important;
                width: auto !important;
                object-fit: cover;
                max-width: 101px;
            }
        }
    }

}
    


@media (max-width: 1040px) {
.hero_content {
    & .accreditations {
        & img {
            height: 64px ;
            width: 100%;
            object-fit: cover;
        }
    }
}

}

