.main-hero-block{
    height: 100vh;
    width: 100%;
    position: relative;
}
.background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 7;
    position: relative;
  }
  
  .hero-content {
    position: absolute;
    z-index: 10;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0,0,0,.54);
    top: 0;
    left: 0;
  }
  .hero-text{
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
  }
  .header-logo{
    height: 150px;
    width: auto;
  }
  .hero-text-large{
    font-size: 90px;
    font-weight: bold;
    font-family: "DM Sans", Sans-serif;
    margin-bottom: 0;
    text-transform: uppercase;
    padding: 10px 0;
  }
  .hero-text-normal{
    font-size: 40px;
    padding-top: 30px;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 63px;
    font-family: "DM Sans", Sans-serif;
  }
  .text-right{
    text-align: right;
  }
  .outlined-bold {
    letter-spacing: 3px;
    color: white; /* Text color */
    text-shadow: 
      -1px -1px 0 black,  
       1px -1px 0 black,
      -1px  1px 0 black,
       1px  1px 0 black; /* Outline effect */
  }

  .scroll-container {
      position: relative;
      width: 100vw;
      height: 100px;
      overflow: hidden;
      display: flex;
      align-items: center;
    }

    .scroll-text {
        display: inline-block;
        white-space: nowrap;
        font-size: 75px;
        animation: scroll 30s linear infinite;
        padding-left: 100%;
      }
  
      .scroll-text span {
        margin-right: 4rem; /* Add space between words */
      }
      .scroll-container-2 {
        position: relative;
        width: 100vw;
        height: 100px;
        overflow: hidden;
        display: flex;
        align-items: center;
        margin-top: 25px;
      }
  
      .scroll-text-2 {
          display: inline-block;
          white-space: nowrap;
          font-size: 75px;
          animation: scroll 45s linear infinite;
          padding-left: 100%;
        }
    
        .scroll-text-2 span {
          margin-right: 4rem; /* Add space between words */
        }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-100%);
      }
    }
    .about-content{
        font-size: 18px;
    }
    .vlsi-bg-image{
        position: relative;
        width: 100%;
        height: 500px;
    }
    .service-content{
        background-color: rgba(0,0,0,.54);
        height: 100%;
        width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding-top: 50%;
        text-align: center;
        margin: auto;
        color: white;
    }
    .service-content h3{
        padding-bottom: 15px;
    }
    .service-content:hover{
        background-color: rgba(255,255,255,.74);
    }
    .service-content:hover h3{
        color: #273f93!important;
    }
    .call-to-action img {
        position: fixed;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }
    /*service detaials*/
    .card-content{
      text-align: center;
      background-color: white;
      padding: 35px 25px;
      border-radius: 5px;
      box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
      height: 100%;
    }
    .card-title{
      font-size: 24px;
      padding-bottom: 15px;
      color: #00305f;
      font-weight: 500;
    }
    .card-desc{
      font-size: 18px;
      line-height: 25px;
    }
    .card-icon{
      font-size: 40px;
      color: #00305f;
    }
    .initial-content p{
      font-size: 18px;
      line-height: 30px;
    }
    .read-more-button{
      background-color: #00305f;
      color: white;
      padding: 10px 15px;
      border-radius: 5px;
      font-size: 16px;
    }
    .read-more-button:hover{
      color: white;
    }
    .careers .read-more-button{
      float: right;
      margin-bottom: 20px;
    }
    .careers .card-title{
      padding-bottom: 5px;
    }
    .careers .card-desc{
      padding-bottom: 5px;
    }
    .careers .card-content{
      position: relative;
    }
    .careers .contact{
      padding: 0;
      box-shadow: none;
    }
    .careers .position-count{
      position: absolute;
      top: 0;
      right: 0;
      font-size: 120px;
      font-weight: bold;
      opacity: .35;
      line-height: 100px;
      color: #00305f;
    }
    @media (min-width: 768px) and (max-width:1000px) {
      .medium-display-none{
        display: none;
      }
      .about-content .content{
        display: none;
      }
      .services .container .col-lg-4{
        margin-top: 30px!important;
      }
      .header-mobile-menu{
        margin: 0!important;
      }
    }
    #header {
      position: fixed;
      top: 0;
      width: 100%;
      padding: 20px;
      transition: background 0.3s ease, box-shadow 0.3s ease;
      background: transparent;
      z-index: 1000;
      color: white;
    }
    
    /* Header style when scrolled (gradient background) */
    .header-scrolled {
      background: linear-gradient(to right, #001625, #004670, #001828) !important;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1)!important; /* Optional shadow for effect */
    }
    @media (max-width:700px) {
      .hero-text-normal{
        font-size: 28px;
        line-height: 40px;
        padding-top: 0;
      }
      .header-mobile-menu{
        margin: 0!important;
      }
      .about-content img{
        width: 100%!important;
      }
      .services .container .col-lg-4{
        margin-top: 30px!important;
      }
    }
    @media (min-width: 1400px){
      .about-content .content{
        height: 550px;
      }
      .hero-text-normal{
        font-size: 48px;
        line-height: 70px;
      }
    }
    @media (min-width:1600px) and (max-width:1750px){
      .hero-text-normal{
        font-size: 58px;
        line-height: 80px;
      }
    }
    @media (min-width:1751px){
      .hero-text-normal{
        font-size: 62px;
        line-height: 95px;
      }
    }
    @media (min-width:1000px) and (max-width:1200px){
      .about-content .content img{
        width: 100%!important;
      }
    }
    .footer-bg-image{
      background-position: center;
      background-repeat: none;
      background-size: cover;
    }