.our_company_header {
    position: relative;
    width: 100%;
    height: 60vh; /* Responsive height */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 128px;
  }

  .our_company_header video {
    position: absolute;
    top: -28px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  /* Dark overlay for better text visibility */
/*  .our_company_header .overlay {
    position: absolute;
    top: -28px;
    left: 10px;
    margin-left: 50px;
    margin-right: 28px;
    /*width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
  }*/

  .company-title {
    position: relative;
    z-index: 3;
    color: #ffffff;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    padding: 0 15px;

    /* Animation */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s ease-out forwards;
    top: -28px;
  }

  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Text */
  @media (max-width: 768px) {
    .our_company_header {
      height: 40vh;
      min-height: 250px;
    }
    .company-title {
      font-size: 2rem;
    }
  }

  @media (max-width: 480px) {
    .company-title {
      font-size: 1.6rem;
    }
  }