.cs_video_bg_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
  }
  
  .cs_video_bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
  }
  
  .cs_video_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Adjust overlay darkness as needed */
    z-index: 1;
  }
  
  /* Ensure content stays above video */
  .cs_hero_text {
    position: relative;
    z-index: 2;
  }
  
  /* Original background fallback */
  .cs_hero.cs_style_1.cs_center.cs_bg_filed {
    position: relative;
    background-size: cover;
    background-position: center;
  }

.cs_hero_subtitle{
    color: white;
}

/* Typing animation styles */
.cs_cta_subtitle {
    color: #333; /* Default text color */
  }
  
  .cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background-color: #fbc64e; /* Your specified color */
    vertical-align: middle;
    margin-left: 2px;
    animation: blink 0.7s infinite;
  }
  
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  /* For the typewriter effect */
  .typewriter-effect {
    border-right: 3px solid #fbc64e; /* Your color as cursor */
    animation: blink-caret 0.75s step-end infinite;
  }
  
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #fbc64e; }
  }


  

