:root {
    --brand: #01b5fb;
    --sub: #6ac754;
    --body: #516171;
    --border: rgba(0,0,0,0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}
/* .video-container {
   
    
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    
}

.custom-video {
  
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
} */

.video-container {
    width: 100%;
    overflow: hidden;
}

.custom-video {
    width: 100%;
    height: auto;
    display: block;
}





/* .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    font-size: 3rem;
    color: var(--brand);
    cursor: pointer;
} */
 .contact-head1{
   color: #000000;
 }
.phone-number {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically if needed */
    gap: 3px;
    font-size: 43px;
    text-align: center;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif /* Changed font family */
  }
  
  .phone-number span {
    color: #13a527;
    animation: zoom 2s ease-in-out infinite;
    display: inline-block;
  }

  .phone-number {
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 4px;
}

.phone-number .space {
  display: inline-block;
  width: 12px; /* space between groups */
}
  
  /* Animation keyframes */
  @keyframes zoom {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
  }
  
  /* Delay for each digit */
  .phone-number span:nth-child(1) { animation-delay: 0s; }
  .phone-number span:nth-child(2) { animation-delay: 0.2s; }
  .phone-number span:nth-child(3) { animation-delay: 0.4s; }
  .phone-number span:nth-child(4) { animation-delay: 0.6s; }
  .phone-number span:nth-child(5) { animation-delay: 0.8s; }
  .phone-number span:nth-child(6) { animation-delay: 1s; }
  .phone-number span:nth-child(7) { animation-delay: 1.2s; }
  .phone-number span:nth-child(8) { animation-delay: 1.4s; }
  .phone-number span:nth-child(9) { animation-delay: 1.6s; }
  .phone-number span:nth-child(10){ animation-delay: 1.8s; }
  
/* .number {
    font-size: 40px;
    font-weight: bold;
    opacity: 0;
    transform: translateX(-100px) scale(0.5);
    animation: slideZoom 1.5s forwards;
    text-align: center;
  }

  @keyframes slideZoom {
    to {
      opacity: 1;
      transform: translateX(0) scale(1);
    }
  } */

  .whatsapp-button-wrapper {
    text-align: center;
    margin: 20px 0; /* adjust spacing as needed */
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    color: white;
    background-color: #1ebe5d;
}
.about-img-5 video {
    position: relative;
    z-index: 2;
    margin-top: 8px;
    margin-left: 7px;
  }
.about-img-5::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--brand);
    transform: skew(20deg);
    z-index: 1;
  }