.var-highlight{
  color: #ffbe3d;
}

.label-highlight{
  color: #008000;
}

.string-highlight{
  color: rgba(255, 0, 0, 1);
}

#typewriter{
  font-size: 1.0em;
  margin-left: -220px;
  font-family: "Courier New";

  &:after{
    content: "|";
    animation: blink 500ms linear infinite alternate;
  }
}

@-webkit-keyframes blink{
  0%{opacity: 0;}
  100%{opacity: 1;}
}

@-moz-keyframes blink{
  0%{opacity: 0;}
  100%{opacity: 1;}
}

@keyframes blink{
  0%{opacity: 0;}
  100%{opacity: 1;}
}

.testimonials-height{
  min-height: 315px !important;
}

.members-height{
  min-height: 370px !important;
}

.line-before {
    position: relative;
    padding-left: 15px;
    margin: 20px 0;
}

.line-before::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background-color: #007bff; /* Change color as needed */
	border-radius: 2px;
}

@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
 
.fade-in {
   opacity:0;  /* make things invisible upon start */
   animation:fadeIn ease-in 1;
   animation-fill-mode:forwards;
   animation-duration:2.4s;
  }
 
.fade-in-delayed {
  animation-delay: 1.4s;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100%);
    animation: slideInLeft 1.4s ease-out forwards;
}

 @keyframes slideInLeft {
    to {
    opacity: 1;
    transform: translateX(0);
    }
}

.wrap {
  * {

    -webkit-transition: all .3s ease-in-out;
    transition: all 0.8s ease-in-out;
  }

  overflow: hidden !important;
  border-radius: 10px;

  img {
    position: relative !important;

  }

  &:hover {
    img {
      transform: scale(1.1);

    }
  }
}

.fade-animation-wrapper {
  display: inline-block;
  position: relative;
  width: max-content;
  height: 2.5rem;
  vertical-align: top;
}

.fade-word {
  position: absolute;
  opacity: 0;
  animation: fade-text 6s infinite;
  /*color: #CD921E;*/
}

.fade-word:nth-child(1) {
  animation-delay: 0s;
}
.fade-word:nth-child(2) {
  animation-delay: 2s;
}
.fade-word:nth-child(3) {
  animation-delay: 4s;
}

@keyframes fade-text {
  0% { opacity: 0; }
  10% { opacity: 1; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

/* Fullscreen Background Video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* 🔹 Semi-transparent overlay for better text readability */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.5); /* Adjust opacity and color */
  z-index: 1;
}

/* Make sure hero content is above the video */
.it-company-hero-area .container {
  position: relative;
  z-index: 2;
}

.why-choose-phonate-area{
  width: 100%;
  background-image: url('../img/why-choose-us.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.img-container {
  position: relative !important;
  top: 0;
  left: 0;
  aspect-ratio: 1/1;
  object-fit: cover;
  overflow: hidden !important;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* fill the container (can use contain instead) */
  transition: transform 0.8s ease-in-out;
  display: block;
}

.image-container-scale:hover img {
  transform: scale(1.1);     /* scale up on hover */
}

.it-company-service-color {
  background-color: #1e2222;
}